Click here to Skip to main content
15,890,374 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am developing an iPhone app in which I have to call a REST serice from iPhone.I did it successfully and got the respons successfully.But later I have changed the xib file so that I want
to display the output on a label.Then after changing the xib file when I run the application I m
getting exception :
"Program received signal SIGABRT"
in the following code?Since Im a beginner to
iPhone developmet I dont know how to fix this error..
C++
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary    
  *)launchOptions
 {
// Override point for customization after application launch.

self.window.rootViewController = self.viewController;    ///error at this line///
[self.window makeKeyAndVisible];
return YES;
}

How to fix this error?

Thanks...
Posted
Updated 25-Aug-12 20:52pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900