我在我的视图中添加了UITableView
作为子视图;这是一个子视图,因为我将视图分成两个子视图。我是Objective-C的新手,所以我确信这是一个新手的错误。
这是我的代码:
@interface DishDetailViewController()
{
NSMutableArray *_test;
}
@end
对象title
的{{1}}属性为dish
。
NSString
答案 0 :(得分:3)
您尚未设置表的数据源或委托:
UITableView *table =[[UITableView alloc] initWithFrame:CGRectMake(0,0, widthTable, self.view.frame.size.height)];
table.delegate = self;
table.datasource = self;
[self.view addSubview:table];