Tag Archives: iPhone
Call to action – Apple needs to treat iPhone developers better
I would encourage everyone to leave Apple feedback regarding the poor treatment of developers and the ridiculous policy that app developers have to pay Apple the full value of any application refunds. Leave feedback here: http://www.apple.com/feedback/iphone.html Here’s what I had … Continue reading
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