用户长时间点击视图后,会显示一个弹出窗口。单击此弹出窗口中的项目应使用以下代码执行segue:
[self performSegueWithIdentifier: @"PlayerList" sender: self];
控制器未显示,我收到此警告
Warning: Attempt to present <UINavigationController: 0x11372890> on <TableViewController: 0xc3c93f0> whose view is not in the window hierarchy!
我不明白是什么导致了这个问题。使用此代码
执行弹出菜单中项目的操作[target performSelectorOnMainThread:_action withObject:self waitUntilDone:YES];
其中target
是控制器,_action
应该执行segue。