我有一个有趣的问题。当人们单击表格 View 中的箭头时,我希望弹出详细信息屏幕。细胞是动态的。
当我选择 Disclosure Indicator 时 - 我没有调用 segue,也没有调用 accessoryButtonTappedForRowWithIndexPath。当我将其更改为 Detail Disclosure 时,一切正常。
我可以做些什么来使披露指示器像详细披露一样起作用?
谢谢!
Best Answer-推荐答案 strong>
披露指示器不是按钮,因此不会触发 tableView:accessoryButtonTappedForRowWithIndexPath: 委托(delegate)方法,而详细披露 is 是一个按钮,因此会触发该方法.
我想,你能做的最好的事情就是在你的表格 View 单元格中添加一个 UIButton 并给它一个非常类似于默认表格 View 显示指示器的图像。不过,这是一种 hacky 解决方案,所以我不鼓励您实际这样做。
关于ios - Disclosure Indicator 不调用 seque 而 Detail Disclosure 调用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24103040/
|