在选项卡栏应用程序中,如何将 FirstViewController.h 转换为表视图?
在 Xcode 4 中,在从内置模板创建的常规选项卡栏应用程序中,如何将firstView 转换为tableview?
或者这是错误的方法,您应该将一个新的表格视图拖到第一个视图 xib 中并为表格视图创建一个新的控制器。如果是这样,你如何处理第一个视图控制器?你还需要它吗?
In Xcode 4 in a regular tabbar application created form the built in templates, how do you turn the firstView into a tableview?
Or is this the wrong approach, and you are supposed to drag a new tableview into the firstview xib and create a new controller for the table view. If so what you do with the firstview controller ? do you still need it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您有两个选择:
1) 使用相应的 XIB 文件创建新的 UITableViewController 类,然后删除 FirstViewController 并将其替换为新的 UITableViewController。请记住在 MainWindow.xib 文件中进行更改
2) 将 UITableView 插入您的 FirstViewController 并实现 UITableViewDelegate 和
UITableView数据源
You have two options:
1) Create new UITableViewController class with a corresponding XIB file, then delete the FirstViewController and replace it with your new UITableViewController. Remeber to change that in MainWindow.xib file
2) Insert UITableView onto your FirstViewController and implement UITableViewDelegate and
UITableViewDataSource
您需要删除 FirstViewController 的文件(.xib、.h 和 .m),然后添加新的 TableViewController。要进行该设置,可能会用到:http://www.youtube.com/watch ?v=LBnPfAtswgw 注意: 该视频有点过时,但基本概念保持不变。
您还可以仅将 tableView 添加到 FirstView.xib 并遵循简单的 tableView 教程。不过,我会建议我的第一个选择。
You need to delete the files for the FirstViewController (.xib, .h, and .m), then add a new TableViewController. To get that set up, this might be of use: http://www.youtube.com/watch?v=LBnPfAtswgw Note: This video is a bit out of date, though the basic concept stays the same.
You could also just add a tableView to the FirstView.xib and follow a simple tableView tutorial. I would suggest my first option, though.