从TableView获取数据

发布于 2024-11-03 06:25:05 字数 452 浏览 7 评论 0原文

我正在学习如何使用 Objective-C 进行编程(我目前对 C 有一些经验,并且使用过非常基本的 Objective-C)。

我找到了一个具有锚定列的示例代码。我喜欢它的一件事是用户可以将多个数据输入到项目的表中。 (有点像地址簿)

我试图拥有它,以便保存输入到该项目中的数据(可能作为 plist 或其他形式)。 但是,我不知道如何在将数据输入表后获取数据。 该项目可以从 http://dl.dropbox.com/u/7822960/AnchoredColumn 下载.zip

如果有人可以通过向我展示如何执行此操作来帮助我,我将非常感激。(如果更容易,有人可以修改“单击我”按钮,以便第一个用户输入的名称显示在文本框中)。或者,如果有一个示例代码可以执行与此类似的操作。

I am learning how to program in Objective-C (I currently have some experience with C, and have worked with very basic Objective-C).

I found a sample code for having anchored column. One thing that I like about it is that multiple data can be entered by the user into the table in the project. (Kind of like an address book)

I was trying to have it so that the entered data into this project is saved (maybe as a plist or otherwise).
However, I have no clue how to get the data after it is entered into the table.
The project can be downloaded from http://dl.dropbox.com/u/7822960/AnchoredColumn.zip

I would highly appreciate it if someone could help me out by showing me how to do this.(If it is easier, could someone modify the "Click Me" button so that the first user-entered name is displayed into the text box). Or, if there is a sample code out there that does something similar to this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怀中猫帐中妖 2024-11-10 06:25:05

您必须了解的第一件事是您提供表的数据。该表不包含任何数据。它只是显示它。阅读 UITableViewDelegateUITableViewDataSource。由于您有一些示例代码,因此请查看点击“Click Me”按钮时调用的方法。我敢打赌,在该方法中,正在创建一个对象并将其添加到一个数组中,该数组是在调用表数据源委托方法时向表提供数据的对象。 (这些委托方法可能是在同一个 .m 文件中定义的。)

First thing you have to understand is that YOU supply the data for the table. The table holds no data. It simply displays it. Read up on UITableViewDelegate and UITableViewDataSource. And since you have some sample code, go look at the method that is called when the Click Me button is tapped. I bet you that in that method, an object is being create and added to an array which is what is feeding the table when the table data source delegate methods are called. (And those delegate methods are likely defined in the same .m file.)

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