I'm new to iPhone programming and stumbled upon an answer to a question, but I was hoping someone could tell me why.
I'm using Facebook Connect in the app. Since my app requires a login, I was calling the login dialog programmatically rather than with a button. I am using the SDK example approved code:
FBLoginDialog* dialog = [[[FBLoginDialog alloc] init] autorelease];
[dialog show];
I'm working with a View-Based App template in Xcode.
Initially I had this placed inside a custom routine I called fbLogin. But when I put:
[self fbLogin];
inside viewDidLoad, nothing would happen. The routine would get called (I slapped an alert in there just to make sure) but the login dialog never appeared. Instead, if I put this inside viewDidLoad:
[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(fbLogin) userInfo:nil repeats:NO];
Then it worked perfectly. Anyone know why viewDidLoad is too early to initiate the FBLogin dialog? I'm fine with the slight delay, but I'm curious.
Thanks.
So there's the solution