我试图弄清楚如何从注销按钮显示登录(模式视图控制器)并从登录下方自动关闭设置(模式视图控制器)。您可能会看到故事板布局:
http://cl.ly/2B3h0T130S1K1026201N
我试图将此代码添加到 SettingsViewController.m 的注销方法中
- (IBAction)logoutAccount {
[self dismissModalViewControllerAnimated:YES];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"LoginViewController"];
[vc setModalPresentationStyle:UIModalPresentationFullScreen];
[self presentModalViewController:vc animated:YES];
}
问题是当我单击注销时它迫使我的应用程序冻结。有人知道它有什么问题吗?任何建议表示赞赏。