Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having an error in the following lines if code. This error is being generated when I run the app on ipad its working fine on the simulator.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];

    // Override point for customization after application launch.
    self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];

    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];
    return YES;
}

Please elaborate the reasons why this error is being generated thank you and PEACE OUT :-)

share|improve this question
5  
Whats your target, why dont you use ARC? – Anoop Vaidya Dec 24 '12 at 18:39
1  
Thanks Anoop I got the solution. I was not setting the development target right. Thank you so much for your reply. – Nauman Dec 27 '12 at 14:35
So should I post that as an answer? – Anoop Vaidya Dec 27 '12 at 14:39
Yes you can please go a head and thanks for your support... – Nauman Dec 28 '12 at 16:11

1 Answer

up vote 0 down vote accepted

Kindly check the Target... if you have set or not, and also the proper one.

And one suggestion, try to adopt ARC. That will make you feel ReeeelaaaaXXXX!!!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.