在同一个视图中填充两个 UITableView
我在同一个视图中有 2 个 UITableView,我的问题是如何在 viewDidLoad 方法中使用不同的数据填充它们?谢谢。
I have 2 UITableView in the same View and my question is how to populate them with different data in the viewDidLoad
method? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要回答您问题的 plist 部分:
因此,只需使用其中两个,每个表一个,然后只有两个 tableView,因为看起来您已经理解了。
To answer the plist part of your question:
So just use two of these, one for each table, then just have two tableView, as it appears you already understand.
您将它们填充到
该函数中,您可以比较 tableView 以查看它是什么表,并为该表加载适当的数据。
将其添加到代码文件中
,然后当您访问 self.myData 属性时,如果尚未打开,它将打开。
You populate them in the
and in that function you can compare the tableView to see what table it is, and load the appropriate data for that table.
add this to the Code file
then when you access the self.myData property it will open up if it is not opened already.
所有委托和数据源协议方法总是传递一个指向它们所调用的tablesView的指针。只需执行一个 if 即可检查每个方法中的含义。
All delegate and datasource protocol methods always pass a pointer to the tablesView they are called for. Just do an if to check which is meant in each method.