Tag Archives: objective-c

Copying to iPhone clipboard with Objective-C

Tweet 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 … Continue reading

Posted in Coding, News | Tagged , | 3 Comments