An error occurred uploading to the iTunes Store

If you are unable to upload Apps to Apple and installed the JavaOSX update (April 3, 2012) this may help you regain your ability to upload Apps: You can work around this issue by re-creating the old Java 1.5 symlinks: cd /System/Library/Frameworks/JavaVM.framework/Versions sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5 sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0 Edit Oct 5, … Read more

Adding Framework in Xcode 4 [duplicate]

In the project navigator, select your project Select your target Select the ‘Build Phases’ tab Open ‘Link Binaries With Libraries’ expander Click the ‘+’ button Select your framework (optional) Drag and drop the added framework to the ‘Frameworks’ group from How to “add existing frameworks” in Xcode 4?

Xcode 4: Creating a UIView xib, not properly connecting

I got into a similar state just today. It was very odd: I could attach any XIB (new or existing) to any already-existing ViewController class in the project, but I could not create a new ViewController and have it attach properly to any XIB. The “assistant” functionality didn’t work, nor did the IB-to-headerfile-connection functionality. Closing … Read more

Xcode: failed to get the task for process

I am betting that your release mode includes compiling with your distribution certificate, which disallows this behavior (you wouldn’t want some random fool hooking into your app after downloading it from the app store). Compile with the development certificate instead. You can change this in the building settings under code signing.

Xcode 4 .xib Create iPad Version

This worked for me: Make a copy of the .xib in the Finder. Open the copied file in a text editor. Change “com.apple.InterfaceBuilder3.CocoaTouch.XIB” to “com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB”. Change all instances of “IBCocoaTouchFramework” to “IBIPadFramework”. Search for sizes like {480, 320} and edit them. Or just reopen the file in Xcode and use the GUI to resize items … Read more