i m developing an iPhone application. In my app there is a part to post a news link on user’s facebook wall. There is no problem when i set to Application does not run in background property to NO on app plist file. But i dont want to run in background.
Is there anyone has met with this situation before or can give me any suggestions?
Are you using this? If you do what you can do (a little bit of a hack) is go in
Facebook.mfile and search for a line that says[self authorizeWithFBAppAuth:YES safariAuth:YES];and change that to[self authorizeWithFBAppAuth:NO safariAuth:NO];. That will tell the SDK not to use different application to authorize your Facebook App so your app will never quit.