将UITableViewController更改为UIViewController

时间:2013-01-20 15:42:27

标签: ios uitableview superclass

我正在尝试使用超类ATSDragToReorderTableViewController,但我遇到的问题是我正在使用带有表视图而不是UITableViewController的UIViewController。我已经尝试将超类更改为UIViewController,但是会出现一大堆错误,主要是'在ATSDragToReorderTableViewController类型的对象上找不到属性tableView''

有没有人遇到过类似的问题?

1 个答案:

答案 0 :(得分:2)

ATSDragToReorderTableViewController的超类从UITableViewController更改为UIViewController。添加< UITableViewDataSource, UITableViewDelegate >,然后添加属性:

@property (nonatomic, strong) IBOutlet UITableView *tableView;