- UIAlertController在cell中弹出延迟
- iOS 点击TableView的Cell时,调用UIAlertC
- 【swift】 UIAlertController在cell弹出
- UIAlertController 弹出有延迟
- iOS UIAlertController 弹出延迟
- 点击cell弹出UIAlertController延迟的解决方法
- 点击cell弹出UIAlertController延迟的解决方法
- iOS PresentViewController弹出页面延迟大
- popViewControllerAnimated: calle
- iOS-UIAlertController弹出延迟(UIAle
转自:https://www.jianshu.com/p/fed4cc7c8c94
习惯用UITableViewCellSelectionStyleNone这种方式把cell的点击效果关掉,但在加了这个属性后didSelectRowAtIndexPath中的UIAlertController弹出时反应迟钝,把UITableViewCellSelectionStyleNone去掉用[tableView deselectRowAtIndexPath:indexPath animated:YES];这种方式处理点击效果就好了,或者把UIAlertController放在主线程中执行
网友评论