UITableview edit/done button(UITableview 编辑/完成按钮)
问题描述
我在顶部有一个表格视图和导航栏.
I have a tableview and navigation bar on the top.
我的导航栏左侧有一个编辑按钮,其中包含以下代码行.
I have a Edit button on the left of my navigation bar with the following line of code.
self.navigationItem.leftBarButtonItem = self.editButtonItem;
当我点击编辑按钮时,它变为完成按钮.到目前为止一切都很好.
When i click on the edit button, it changes to done button. All is fine so far.
如果我想在点击完成按钮时做一个小操作,我应该在哪里添加代码?
Where do i add code, if i want to do a small operation when the Done button is clicked.?
推荐答案
一旦你用 self.editButtonItem.action = @selector(editClicked:);
你应该做的是在你自己的控制器类中重写 UIViewController 的 setEditing 方法:
What you should do is override UIViewController's setEditing method in your own controller class:
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
[super setEditing:editing animated:animated];
if(editing == YES)
{
// Your code for entering edit mode goes here
} else {
// Your code for exiting edit mode goes here
}
}
您还需要在情节提要中将 UIBarButtonItem 设置为编辑",或者如果您更喜欢在代码中执行此操作,请使用以下代码:
You also need to set your UIBarButtonItem to "Edit" in storyboard or if you prefer doing it in code use the following:
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
editButtonItem 是系统已经为您设置的辅助属性.
editButtonItem is a helper property already set by the system for your comfort.
这篇关于UITableview 编辑/完成按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UITableview 编辑/完成按钮
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01