1

我正在尝试使用超类 ATSDragToReorderTableViewController 但我遇到的问题是我使用的是带有表格视图的 UIViewController 而不是 UITableViewController。我尝试将超类更改为 UIViewController,但这会带来大量错误,主要是“在 ATSDragToReorderTableViewController* 类型的对象上找不到属性 tableView”

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

4

1 回答 1

2

ATSDragToReorderTableViewController将from的 superClass 更改UITableViewControllerUIViewController。添加< UITableViewDataSource, UITableViewDelegate >,然后添加属性:

@property (nonatomic, strong) IBOutlet UITableView *tableView;
于 2013-06-10T17:11:38.463 回答