Ibtool failed with exit code 255 in Xcode 6-Beta

I keep getting this error message while I try to run the application on a device or simulator.

Error:

Command /Applications/Xcode6-Beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ibtool failed with exit code 255 

I cleaned up the project, rebooted again, deleted the derived data, but still I get an error message over.

Any suggestions or tips would be highly appreciated.

Thanks.

+6
source share
3 answers

Same issue with xcode 7b4. Removing translatesAutoresizingMaskIntoConstraints="NO" from xib helped in my case

+1
source

In Deployment Details, select iPhone instead of Universal.

+3
source

Just clear the checkbox for using AutoLayout and create a project.

If you want to continue working with AutoLayout, then check the use of the autoLayout option again.

+2
source

Source: https://habr.com/ru/post/971405/


All Articles