我在iOS 7的操作表中显示视图控制器时出现问题。我的程序似乎跳过了:
[self.navigationController presentViewController:viewController animated:TRUE];
还有其他人遇到过这个问题吗?
感谢。
答案 0 :(得分:1)
self.navigationController
为nil
。忽略向nil
发送消息(这就是您的程序跳过该行的原因)。
如果您正在使用标签栏控制器,请将self.navigationController
更改为self
或self.tabBarController
;如果您使用的是拆分视图控制器,则更改为self.splitViewController
。
答案 1 :(得分:0)
尝试
[self presentViewController:viewController animated:YES completion:nil];
答案 2 :(得分:0)
在- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex