I get the following error when I work with facebook Login
Yes, this is the main error, "unrecognized selector sent to instance." But I did not understand where the error is
[UIStatusBar orientation]: unrecognized selector sent to instance 0xa9a9c00 2012-11-23 11:15:46.854 Tattoo Later[1265:1cd03] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIStatusBar orientation]: unrecognized selector sent to instance 0xa9a9c00'
In this method
- (void)loginToFacebook:(id) loginDelegate { fbServiceRequestingobj = loginDelegate; NSArray* permissions = [[NSArray alloc] initWithObjects: @"publish_stream",@"user_birthday",@"read_stream",@"user_about_me",@"offline_access",@"email",@"read_mailbox",@"user_about_me",nil]; [facebook authorize:permissions delegate:self]; }
Application Failure on this line [facebook authorize:permissions delegate:self];
In my project, I integrated "GPUImage". I am working on ios6
Thanks in advance
source share