(void)viewDidLoad { [super viewDidLoad];
}
(无效)viewDidAppear:(BOOL)动画 { [super viewDidAppear:animated];
PFLogInViewController * login = [[PFLogInViewController alloc] init]; login.fields = PFLogInFieldsUsernameAndPassword | PFLogInFieldsLogInButton; [self presentModalViewController:login animated:YES];
}
(void)didReceiveMemoryWarning { //如果视图没有超视图,则释放视图。 [super didReceiveMemoryWarning];
//释放未使用的任何缓存数据,图像等。 }
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { //返回YES表示支持的方向 return(interfaceOrientation == UIInterfaceOrientationPortrait); }
@end
我收到一条错误,说“自我”在iOS 6中被折旧。有关如何解决这个问题的想法吗?这是Parse上的登录屏幕。
答案 0 :(得分:0)
改为使用presentViewController:animated:completion:
。