How to create ipa in xcode 6 without Apple Developer account?

Finally found a way for creating .ipa build with xcodebuild command. Right click on Archive on Organizer. Click Show in Finder. You can see .xcarchive file in Finder. Open Terminal and cd to .xcarchive path. Using following command to generate .ipa file. This will save .ipa on Desktop. xcodebuild -exportArchive -exportFormat ipa -archivePath <FILE_NAME>.xcarchive -exportPath … Read more