所以我创建了一个 UITableViewController 的子类,并为这个 Controller 提供了 xib、h、m 文件。但是当我将 UIView 或 UITableViewController 添加到我的 main.storyboard 时,它不会让我将新的子类设置为自定义类。
我已经尝试让这个工作大约 3 天了,观看 youtube 视频,阅读教程,我似乎找不到任何与我尝试做的类似的事情。
我正在尝试创建一个带有标题和搜索栏的表格,其中包含所有内容,包括数据集。
Best Answer-推荐答案 strong>
确保您的类是 UITableViewController 的子类,当您将其设置为 Storyboard 中 UITableViewController 对象的自定义类时。
1: MySubClassOfTableViewController 是 UITableViewController 的子类
2:在storyboard中找到UITableViewController对象
3:将 UITableViewController 对象的自定义类设置为 MySubClassOfTableViewController
关于ios - 自定义 UITableViewController 问题,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29221371/
|