Cocoa 表格视图概述

发布于 2024-11-08 15:57:45 字数 224 浏览 0 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的憧憬 2024-11-15 15:57:45

您需要将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文