I have recently started using Xcode 4 since the iOS5 upgrade and since then I appear to be unable to run anything in the simulator.
Tonight I have created a simple app with 3 text fields and two buttons and corresponding IBOutlets for the text fields and IBActions for the buttons and linked them all together. That is ALL I have done.
When I run the App in the simulator it builds fine but never loads as it pauses in the debugger thingy before it gets chance to load and I get the error saying "Thread 1: Program received signal:"SIGABRT" " on the following code
What can I possibly have done to have caused this and how could I rectify it? What confuses is me is that I have other Apps which run fine in Xcode 3 but when I run in Xcode 4 the simulator gives this same error. I am very confused.
Tonight I have created a simple app with 3 text fields and two buttons and corresponding IBOutlets for the text fields and IBActions for the buttons and linked them all together. That is ALL I have done.
When I run the App in the simulator it builds fine but never loads as it pauses in the debugger thingy before it gets chance to load and I get the error saying "Thread 1: Program received signal:"SIGABRT" " on the following code
Code:
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); <-----error here
}
}
What can I possibly have done to have caused this and how could I rectify it? What confuses is me is that I have other Apps which run fine in Xcode 3 but when I run in Xcode 4 the simulator gives this same error. I am very confused.
Last edited by a moderator: