我有一个UITableView
里面的UITabBarController
。
当我打电话时
[[self navigationController] pushViewController:myViewController animated:YES];
没有问题。
但是,当我从 a 内部调用同一行时UIActionSheetDelegate
,例如:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
我明白了EXC_BAD_ACCESS
。
似乎从导致此问题的不同线程调用此行。
我怎样才能防止这个EXC_BAD_ACCESS
问题?
(注意 myViewController 不是 nil 或类似的东西)
谢谢!