So basically Xcode 6.1 is crashing whenever it\'s trying to get team list. From the general tab in the main screen, when trying to submit the app to iTunes, trying to valida
Same problem here, however it's possible to compile and generate a .ipa file by the command line interface:
xcodebuild archive -project $projectname.xcodeproj -scheme $schemename -archivePath projectname.xcarchive
xcodebuild -exportArchive -archivePath $projectname.xcarchive -exportPath $projectname -exportFormat ipa -exportProvisioningProfile “Provisioning Profile Name”
Hope this could help.