在情节提要中创建 UITableViewController 时,如何将其初始化为 UITableViewStyleGrouped?通常我会创建一个这样的分组表视图:
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle: UITableViewStyleGrouped];
if (self) {
}
return self;
}
但我意识到,当您在情节提要中创建 UITableViewController 时,此功能不会运行。而且我在故事板中看不到任何将样式设置为分组的选项。