在tableView的代理方法didSelectRowAtIndexPath中,执行模态到下一页的动画时,出现响应延迟的问题。需要点击两次才能跳转。
这是由于线程问题引起的,需要把模态跳转到的方法放到主线程中执行。
dispatch_async(dispatch_get_main_queue(), ^{
ScheduleSettingController *scheVC = [ScheduleSettingController new];
[self presentViewController:scheVC animated:YES completion:^{
DDLogInfo(@"点击cell修改档期");
}];
});