I am trying to complete the tutorial for the iOS SDK 3.0 from Facebook and I have an error in my main.m file.
The error says "Thread 1: Signal SIGABRT" on the "return" statement. This error pops up when I click the "login" button of my app when it initiates the Facebook Login Flow.
#import <UIKit/UIKit.h>
#import "MMAppDelegate.h"
int main(int argc, char *argv[]) {
@autoreleasepool
{ return UIApplicationMain(argc, argv, nil, NSStringFromClass([MMAppDelegate class])); } }
For reference here is the link to the Facebook tutorial that I am following: http://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/
Thanks so much - this error is a total drag.