当我使用 aTableViewController
时,我可以在故事板中设置我的所有内容。由于我在表格视图中使用静态单元格而不是动态属性,因此我发现这种方法更方便且更易于实现。我连接了新的 UITableView 类并简单地删除了所有的委托方法。就像故事板中设置的所有内容/按钮一样,它就像一个魅力。
我正在尝试完成相同的结果,除了这一次,我必须在 a 内工作ViewController
并将 a 添加TableView
为子视图。一旦我连接了正确的类,添加我的插座连接并设置以下代表:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"MainCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
return cell;
}
如果 myTableView
设置为Dynamic Properties效果很好:
但是当我将表格视图内容更改为静态单元格并删除委托方法时,我的应用程序崩溃了。那么,如何将带有静态单元格(我可以在情节提要中操作)的表格视图添加到我的ViewController
?