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 added [self fbButtonClick:nil]; , but it does't call login screen. Why?

- (void)viewDidLoad {
  _facebook = [[Facebook alloc] initWithAppId:kAppId];
  [self.label setText:@"Please log in"];
  _getUserInfoButton.hidden = YES;
  _getPublicInfoButton.hidden = YES;
  _publishButton.hidden = YES;
  _uploadPhotoButton.hidden = YES;
  _fbButton.isLoggedIn = NO;
  [_fbButton updateImage];

   [self fbButtonClick:nil];
}
share|improve this question

2 Answers

You're suppose to call the authorize method on the _facebook object to login. That will call the login screen

share|improve this answer
[self fbButtonClick:nil]; calls authorize method , but login screen doesn't appear. What is wrong ? – Voloda2 Dec 22 '10 at 8:45

i solved this problem with timer

NSTimer *timer = [[NSTimer timerWithTimeInterval:0.001
                                          target:self
                                        selector:@selector(timerFired:)
                                        userInfo:nil
                                         repeats:NO] retain];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];

- (void)timerFired:(NSTimer *)timer
{   
  [timer invalidate];
  [timer release];
  timer = nil;

  [self fbButtonClick:nil];
}
share|improve this answer
1  
Did you try putting the code you have in the timer in either the viewWillAppear or viewDidAppear delegate methods? Using a timer "smells" wrong. – Stephen Darlington Dec 22 '10 at 9:53
Why does that solve the problem ? – VdesmedT Dec 22 '10 at 9:55
In fact calling fbButtonClick manually smells wrong as wel! – VdesmedT Dec 22 '10 at 9:56
I put NSTimer in the viewDidLoad method . It smells wrong , but it solves the problem. Can you suggest more elegant decisions? – Voloda2 Dec 22 '10 at 10:02

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.