Tag Archives: objective-c
Copying to iPhone clipboard with Objective-C
Maybe this will help other Cocoa Touch noobs like me. If you’re using the iPhone 3.0 SDK, use this to place a string into the clipboard. UIPasteboard* pasteBoard = [UIPasteboard generalPasteboard]; [pasteBoard setString:@"Any NSString can go here"]; I assume you … Continue reading