具体原因我认为是runloop没有及时更新UI。
解决办法
[selfpresentViewController:AlertControlleranimated:YEScompletion:nil];
改为下面的方法:
dispatch_async(dispatch_get_main_queue(), ^{
[selfpresentViewController: AlertControlleranimated: YEScompletion: nil];
});
具体原因我认为是runloop没有及时更新UI。
解决办法
[selfpresentViewController:AlertControlleranimated:YEScompletion:nil];
改为下面的方法:
dispatch_async(dispatch_get_main_queue(), ^{
[selfpresentViewController: AlertControlleranimated: YEScompletion: nil];
});
本文标题:给tableViewCell添加选中事件的时候,调用UIAler
本文链接:https://www.haomeiwen.com/subject/wvllkqtx.html
网友评论