Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的表格视图单元格中显示几个像素的删除按钮。在我当前的实现中,删除按钮正在触摸单元格。请看附图。
但我不知道该怎么做。
如果你想使用内置的删除按钮,最好的办法是检查视图结构UITableViewCell以找出删除按钮子视图。一种方法是递归枚举单元格的所有子视图,倾倒它们的位置,然后找到位于最右边的那个。
UITableViewCell
但这是一种令人讨厌的方式,并且结构可能会随着 iOS 版本(尤其是即将推出的 iOS 7)而改变。更安全的方法(需要更多的努力)是创建自己的删除按钮,可以使用图像,也可以使用渐变。