0

我正在查看用户的 Facebook 会话是否有效,然后将其重定向到某个视图控制器。

 if ([facebook isSessionValid]) {
   NSLog(@"session is valid");

 }

我也试过:

if ([facebook isSessionValid]) {

[self performSegueWithIdentifier:@"SessionIsValid" sender:self];

}

并将带有标识符“SessionIsValid”的故事板segue拖到我想要重定向到的viewControllerFacebook isSessionValid

我想知道我将如何去做这件事。我在启用 ARC 的应用程序中使用 Storyboard。

谢谢你的帮助

4

1 回答 1

1

In your storyboard create a segue from your current viewcontroller to wherever you want the user to go if the session is valid. Then, in your code above add something like:

[self performSegueWithIdentifier:@"SessionIsValid" sender:self];

You set the identifier by clicking on the segue that was created in the storyboard.

于 2012-04-20T13:41:16.193 回答