Cocoa 表格视图概述
我对 Cocoa 真的很陌生,我正在开发一个测试应用程序,其中包含 NSMutableArray 和 NSDictionary 对象作为子对象。最终我希望能够使用表格视图添加/编辑/显示数组。
我有一个类,它在 init 时创建 NSMutableArray 并具有将对象添加到数组的方法。该类是否应该具有:numberOfRowsInTableView 和tableView 方法?或者我应该将他们从我的班级中分开?
I am really new to Cocoa and I am working on a test app with a NSMutableArray with NSDictionary objects as childs. Eventually I want to be able to add/edit/display the array using a tableview.
I have a class which on init creates the NSMutableArray and has methods to add objects to the array. Should the class have the: numberOfRowsInTableView and tableView methods? Or should I separate them from my class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 numberOfRowsInTableView 和其他 tableView 数据源和委托方法放入您已设置为数据源和委托的类中。您可以将它们放在主类中以便于传递变量,或者如果您知道如何从其他类获取变量,请随意创建一个 (Initials)TableView 类来保存委托和数据源方法。
You need to put the numberOfRowsInTableView and other tableView datasource and delegate methods in the class that you have set as the datasource and delegate. You can put them in your main class for ease of passing variables, or if you know how to get variables from other classes, feel free to make a (Initials)TableView class to hold the delegate and datasource methods.