IOS和UITableView:返回表时不会杀死详细视图

时间:2014-07-16 14:40:18

标签: ios

我有NavigationViewControllerTableVCDetailVC的ios项目。 在我的详细视图控制器中,我有一个视频。如果应用程序开始播放视频并且我返回tableVC,则仍然可以听到声音,并且详细视图中的领事中的注释正在添加。我无法使用viewDidDisappear功能来停止视频,因为它在视频全屏显示时也会被调用。 我还在我的应用中使用SWRevealViewController来显示幻灯片菜单。 ARC已开启。 求你帮帮我。

1 个答案:

答案 0 :(得分:0)

你可以覆盖按钮并让它调用你想要的任何方法:

UIBarButtonItem *btn = [[UIBarButtonItem alloc]
                         initWithBarButtonSystemItem:UIBarButtonSystemItemSearch
                         target:self
                         action:@selector(myMethod)];

self.navigationItem.leftBarButtonItem = btn;

希望有所帮助:)