“连接” UiTableView 与 NavigationController
我对 ios 编程相当陌生,我尝试创建一个带有 4 个选项卡的选项卡栏应用程序 选项卡 1 和选项卡 2 是持有 UIView 的导航控制器...现在我有一个导航栏,我可以从 UIView 类访问它。
我在 UIView 类中放置了一个 UITableView(带有 IB),并在导航栏中添加了一个编辑按钮:
self.navigationItem.leftBarButtonItem = self.editButtonItem;
好的,这看起来很简单,但是我如何将“编辑按钮”与 UIView 类中的 uitableview 连接起来。表中充满了数据,但是当我按下编辑按钮时没有任何反应...我不想将 UIView 类更改为 UITableView,因为视图上还有一些其他 UI 元素。
I am rather new to ios programming and i tried to create a tabbar application with 4 tabs
tab 1 and tab 2 are navigationcontrollers holding a UIView ... now i have a navigationbar, which i can access from my UIView classes.
I put a UITableView in the UIView-Class (with IB) and added a editbutton to the navigation bar:
self.navigationItem.leftBarButtonItem = self.editButtonItem;
Ok, this seems easy and okay, but how can i connect the "edit button" with the uitableview in my UIView Class. The Table is filled with data but when i push the edit button nothing happens ... i do not want to change the UIView class to UITableView because ther are some other UI Elements on the View.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议阅读表视图编程iOS 指南(特别是“在编辑模式下插入和删除行”部分),因为它涵盖了您需要的所有内容,并且您将学到很多东西,这将有助于您继续前进。
I recommend having a read of the Table View Programming Guide for iOS (specifically the "Inserting and Deleting Rows in Editing Mode" section), as it covers everything you need and you'll learn a lot that'll stand you in good stead going forward.
知道了!
UIViewController
获取编辑消息..只需覆盖它并在其中设置表格的编辑模式:Got it! The
UIViewController
gets the editing message .. just override it and set the editing mode of the table within: