解决UIAlertController弹出时的卡顿

描述:当我们在tableView的代理方法里面,弹出alert弹框时,总感觉有些卡顿。

解决办法:
将presentViewController写在主线程即可解决问题!

// 将presentViewController写在主线程即可解决问题!
dispatch_async(dispatch_get_main_queue(), ^{
    [self presentViewController:alertC animated:YES completion:nil];
});

你可能感兴趣的:(解决UIAlertController弹出时的卡顿)