-2

我是 iPhone 应用程序的新手。为了存储数据,我正在关注this tutorial.

我了解如何保存数据和检索数据。

我想要做的是而不是另一个UITableViewController(故事板中的第一个屏幕,我们有列表),我将在那里拖动UITableView并显示项目列表,而不是在另一个屏幕中显示。

任何想法/建议如何完成这项工作?

任何提示都会很棒。

我的感觉是,我需要添加UITableView. 在其上添加委托和数据源方法,并添加一个方法,我将在其中显示所有数据UITableView


编辑 1

我想要的只是一个屏幕。在我提供的链接中,它是第二个屏幕。

4

2 回答 2

3

那应该可以正常工作。但请确保你也做过

[tableview reloadData];

在您更改表视图数据源委托中的数据之后。

于 2012-12-30T13:43:46.373 回答
0

What I am wanted to do is instead of another UITableViewController (first screen in storyboard, where we have list), I will drag a UITableView and show list of items there instead of showing in another screen.

你为什么要这样做?

用户体验不会是最好的。

What I feel is, I would need to add UITableView. Add delegate and dataSource method on it and add a method where I will have all data shown in UITableView.

即使您想这样做,是的,您也需要设置委托和数据源方法。

于 2012-12-30T14:02:05.913 回答