我正在尝试煽动 UIbarbuttonItem 登录/注销 Facebook。我可以正常登录但无法注销,UIBarbuttonItem 标题没有更改或发起注销程序。
这是一些代码:
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(sessionStateChanged:)
name:FBSessionStateChangedNotification
object:nil];
NSLog(@"Session changed");
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate openSessionWithAllowLoginUI:NO];
[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(sessionStateChanged:) userInfo:nil repeats:NO];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willBeginBannerViewActionNotification:) name:BannerViewActionWillBegin object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didFinishBannerViewActionNotification:) name:BannerViewActionDidFinish object:nil];
}
- (IBAction)authButtonAction:(id)sender {
NSLog(@"session open");
AppDelegate *appDelegate = (AppDelegate*)
[[UIApplication sharedApplication] delegate];
// If the user is authenticated, log out when the button is clicked.
// If the user is not authenticated, log in when the button is clicked.
if (FBSession.activeSession.isOpen) {
[appDelegate closeSession];
} else {
// The user has initiated a login, so call the openSession method
// and show the login UX if necessary.
[appDelegate openSessionWithAllowLoginUI:YES];
}
}
- (void)sessionStateChanged:(NSNotification*)notification {
NSLog(@"Login Activated");
self.navigationItem.leftBarButtonItem = authButton;
if (FBSession.activeSession.isOpen) {
self.authButton =[[UIBarButtonItem alloc] initWithTitle:@"Login" style:UIBarButtonItemStyleBordered target:self action:@selector(sessionStateChanged:)];
}else{
self.authButton =[[UIBarButtonItem alloc] initWithTitle:@"Logout" style:UIBarButtonItemStyleBordered target:self action:@selector(sessionStateChanged:)];
}
}
日志报告:
2013-03-18 23:05:58.739 prompT[4056:907] Session changed
2013-03-18 23:05:58.760 prompT[4056:907]
fb sdk error = (null)
2013-03-18 23:05:58.763 prompT[4056:907] User session found
2013-03-18 23:05:58.765 prompT[4056:907] Login Activated
2013-03-18 23:05:59.268 prompT[4056:907] Login Activated
2013-03-18 23:06:00.872 prompT[4056:907] AdAbanner failed
2013-03-18 23:06:01.664 prompT[4056:907] Login Activated
我也在使用故事板。有什么想法和帮助吗?