I just finished the iPhone app, which until today has worked perfectly on the iPhone simulator and real devices.
I tried changing the xib that was loaded in the applicationDidFinishLaunching method in the application delegation class - all I did was change the line in initWithNibName.
When I run the application on the simulator, the Default.png image is displayed, and then the application crashes with an uncaught exception. When working on the device, the Default.png image is displayed for about 10 seconds, the user interface never loads, and I get "GDB: Programmatically received signal:" SIGABRT ". In the Xcode status bar. Debugging shows that applicationDidFinishLaunching is never reached before how the application crashes.
Setting the initial xib back to the original solves the problem, but now I made the changes and saved it in Interface Builder, and the application shows the same problems as above - I did not make any code changes at all.
Is this a memory issue or a known common error problem?
NOTE. I did not make any code changes, and the only changes I made to xib are cosmetic, IBOutlets are not damaged.
source
share