0

在情节提要中创建 UITableViewController 时,如何将其初始化为 UITableViewStyleGrouped?通常我会创建一个这样的分组表视图:

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle: UITableViewStyleGrouped];
    if (self) {
    }
    return self;
}

但我意识到,当您在情节提要中创建 UITableViewController 时,此功能不会运行。而且我在故事板中看不到任何将样式设置为分组的选项。

4

2 回答 2

1

下面是一个屏幕截图,显示了设置的选项,但不要忘记在情节提要中选择 tableView。

在此处输入图像描述

于 2014-10-11T10:04:40.863 回答
-1

There is an option in the storyboard to set the style to grouped but, in order to see it, you must first click in a specific area within the UITableViewController - you must zoom in and click near the top where it says "PROTOTYPE CELLS". This will select the UITableView itself (as opposed to the controller). Then, in the attributes inspector, you will see the dropdown to set the style to grouped.

于 2014-10-11T09:08:24.503 回答