使用 Check 和 UnCheck 自定义 self.editButtonItem - 帮助
所以关于 rightBarButtonItem 。 当我按下“编辑”时,我
self.navigationItem.rightBarButtonItem = self.editButtonItem;
会在每个 TableViewCell 的左侧看到动画和垂直条纹。 当我单击该条带时,“删除”按钮会出现在该 tableViewCell 的右侧。
我想做两件事。
- 将“删除”重命名为“检查”。
- 如果已检查,则应显示“取消检查”以供点击。
我将不胜感激任何帮助..
:)
So with regards to the rightBarButtonItem . I have
self.navigationItem.rightBarButtonItem = self.editButtonItem;
When I press Edit, I get animation and a vertical stripe on the left side of each TableViewCell.
When I click that stripe, the Delete button appears on the right side of THAT tableViewCell.
I want to do two things.
- Rename that 'Delete' to 'Check'
- If it is checked, it should display 'Uncheck' to be tapped.
I would appreciate any help on that..
:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实现
tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:
在你的表视图委托中。
Implement
tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:
in your table view delegate.对于答案的第二部分,我这样做了。
和
For the second part of the answer I did this.
and