给tableViewCell添加选中事件的时候,调用UIAler
2018-12-18 本文已影响0人
white__light
具体原因我认为是runloop没有及时更新UI。
解决办法
[selfpresentViewController:AlertControlleranimated:YEScompletion:nil];
改为下面的方法:
dispatch_async(dispatch_get_main_queue(), ^{
[selfpresentViewController: AlertControlleranimated: YEScompletion: nil];
});