问题描述
点击了tableView在
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
执行
[self dismissViewControllerAnimated:YES completion:nil];
当前界面不会立即关闭有3-4s延迟,如果再次点击当前界面上任意位置,就会立即关闭。
使用Button执行上面代码进行关闭的时候不出出现这个问题。
问题解答
回答1:我也遇到过一模一样的问题 添加以下就能解决了
dispatch_async(dispatch_get_main_queue(), ^{[self dismissViewControllerAnimated:NO completion:nil]; });
我也打印过线程都是主线程的 就不明白为什么会出现这样的问题 <NSThread: 0x17007a040>{number = 1, name = main}