现象:
点击cell
调用present(vc, animated: true, completion: nil)
弹窗出现延时或者没反应,但是触摸UI时就会弹窗
cell
设置了selectionStyle = .none
方法:
- 在
didSelectRowAt
中调用deselectRow
或者
- 主线程异步弹窗
DispatchQueue.main.async {
present(vc, animated: true, completion: nil)
}
现象:
点击cell
调用present(vc, animated: true, completion: nil)
弹窗出现延时或者没反应,但是触摸UI时就会弹窗
cell
设置了selectionStyle = .none
方法:
didSelectRowAt
中调用deselectRow
或者
DispatchQueue.main.async {
present(vc, animated: true, completion: nil)
}
本文标题:UITableviewcell 点击present vc 延时
本文链接:https://www.haomeiwen.com/subject/sbqrvhtx.html
网友评论