我是iPhone应用程序的新手。为了存储数据,我正在关注this tutorial
。
我了解如何保存数据并检索数据。
我想要做的不是另一个UITableViewController
(故事板中的第一个屏幕,我们有列表),我会拖动UITableView
并在那里显示项目列表而不是在另一个项目中显示屏幕。
有任何想法/建议如何完成这项工作?
任何提示都会很棒。
我的感觉是,我需要添加UITableView
。在其上添加delegate和dataSource方法,并添加一个方法,我将在UITableView
中显示所有数据。
我想要的是只有一个屏幕。在我提供的链接中,它是第二个屏幕。
答案 0 :(得分:3)
这应该可以正常工作。但请确保您已经完成了
[tableview reloadData];
更改了表视图数据源委托中的数据后。
答案 1 :(得分: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.
即使你想这样做,也需要设置委托和数据源方法。