• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - Facebook 登录后更改 View Controller

[复制链接]
菜鸟教程小白 发表于 2022-12-12 11:33:34 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

enter image description here 我在下面列出了处理 Facebook 登录的 View Controller 。就像现在一样,应用程序运行并加载具有 Facebook 登录按钮的 View 。登录后,该按钮会将文本更改为“注销”。我想要发生的是,一旦用户登录,它就会转到另一个 View Controller 。

我在 Storyboard中添加了一个新的 View Controller 并在两者之间进行了“segue”,但我觉得我错过了一些东西。如果有帮助的话,我制作的新 View Controller 被命名为“homeViewController”。谢谢

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    self.loginView.readPermissions = @[@"public_profile", @"email", @"user_friends"];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)loginViewFetchedUserInfoFBLoginView *)loginView userid<FBGraphUser>)user
{
    NSLog(@"%@", user.name);
}

- (void)loginViewShowingLoggedInUserFBLoginView *)loginView
{
    NSLog(@"You are logged in!  ");
}

- (void)loginViewShowingLoggedOutUserFBLoginView *)loginView
{
    NSLog(@"You are logged out!  ");
}

- (void)loginViewFBLoginView *)loginView handleErrorNSError *)error
{
    NSString *alertMessage, *alertTitle;

    if ([FBErrorUtility shouldNotifyUserForError:error])
    {
        alertTitle = @"Facebook error";
        alertMessage = [FBErrorUtility userMessageForError:error];

    }
    else if ([FBErrorUtility errorCategoryForError:error] == FBErrorCategoryAuthenticationReopenSession)
    {
        alertTitle = @"Session Error";
        alertMessage = @"Your current session is no longer valid. Please log in again.";

    }
    else if ([FBErrorUtility errorCategoryForError:error] == FBErrorCategoryUserCancelled)
    {
        NSLog(@"user cancelled login");

    }
    else
    {
        alertTitle  = @"Something went wrong";
        alertMessage = @"lease try again later.";
        NSLog(@"Unexpected error:%@", error);
    }

    if (alertMessage)
    {
        [[[UIAlertView alloc] initWithTitle:alertTitle
                                    message:alertMessage
                                   delegate:nil
                          cancelButtonTitle"OK"
                          otherButtonTitles:nil] show];
    }
}

@end



Best Answer-推荐答案


只要连接到 Facebook 登录按钮,segue 就应该是您所需要的。

如果你愿意,你可以打电话

- (BOOL)shouldPerformSegueWithIdentifierNSString *)identifier senderid)sender {
    if(currentUser ) { //this checks that the user logged in before moving to the next view
     return YES;
    }
    else return NO;
}

在移动到 homeViewController 之前检查用户是否成功登录。 你会做类似上面代码的事情

关于ios - Facebook 登录后更改 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25416658/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap