112

问候,我读到的默认行为UITableView是将部分标题行固定到表格顶部,因为您滚动浏览各个部分,直到下一部分将 previos 部分行推到视野之外。

我有一个UITableView里面UIViewController,但似乎并非如此。

这只是默认行为UITableViewController吗?

这是一些基于我所拥有的简化代码。我将展示UIController我为创建表视图而实现的界面和每个表视图方法。我有一个帮助数据源类,它可以帮助我索引我的对象以与表一起使用。

    @interface MyUIViewController ()<UITableViewDelegate, UITableViewDataSource>
        @property (nonatomic, readonly) UITableView *myTableView;
        @property (nonatomic, readonly) MyCustomHelperDataSource *helperDataSource;
    @end

    //when section data is set, get details for each section and reload table on success
    - (void)setSectionData:(NSArray *)sections {
        super.sectionData = sections; //this array drives the sections

        //get additional data for section details
        [[RestKitService sharedClient] getSectionDetailsForSection:someId 
        success:^(RKObjectRequestOperation *operation, RKMappingResult *details) {
            NSLog(@"Got section details data");
            _helperDataSource = [[MyCustomHelperDataSource alloc] initWithSections:sections andDetails:details.array];
            [myTableView reloadData];
        } failure:^(RKObjectRequestOperation *operation, NSError *error) {
            NSLog(@"Failed getting section details");
        }];
    }

    #pragma mark <UITableViewDataSource, UITableViewDelegate>

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
        if (!_helperDataSource) return 0;
        return [_helperDataSource countSectionsWithDetails]; //number of section that have details rows, ignore any empty sections
    }

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
        //get the section object for the current section int
        SectionObject *section = [_helperDataSource sectionObjectForSection:section];
        //return the number of details rows for the section object at this section
        return [_helperDataSource countOfSectionDetails:section.sectionId];
    }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

        UITableViewCell * cell;

        NSString *CellIdentifier = @"SectionDetailCell";

        cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
            cell.textLabel.font = [UIFont systemFontOfSize:12.0f];
        }

        //get the detail object for this section
        SectionObject *section = [_helperDataSource sectionObjectForSection:indexPath.section]; 

        NSArray* detailsForSection = [_helperDataSource detailsForSection:section.sectionId] ;
        SectionDetail *sd = (SectionDetail*)[detailsForSection objectAtIndex:indexPath.row];

        cell.textLabel.text = sd.displayText;
        cell.detailTextLabel.text = sd.subText;
        cell.detailTextLabel.textColor = [UIColor blueTextColor];

        return cell;
    }

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 50.0f;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    return 30.0f;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger) section {
    //get the section object for the current section
    SectionObject *section = [_helperDataSource sectionObjectForSection:section]; 

    NSString *title = @"%@ (%d)";

    return [NSString stringWithFormat:title, section.name, [_helperDataSource countOfSectionDetails:section.sectionId]];
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 260, 0)];
    header.autoresizingMask = UIViewAutoresizingFlexibleWidth;

    header.backgroundColor = [UIColor darkBackgroundColor];

    SSLabel *label = [[SSLabel alloc] initWithFrame:CGRectMake(3, 3, 260, 24)];
    label.font = [UIFont boldSystemFontOfSize:10.0f];
    label.verticalTextAlignment = SSLabelVerticalTextAlignmentMiddle;
    label.backgroundColor = [UIColor clearColor];
    label.text = [self tableView:tableView titleForHeaderInSection:section];
    label.textColor = [UIColor whiteColor];
    label.shadowColor = [UIColor darkGrayColor];
    label.shadowOffset = CGSizeMake(1.0, 1.0);
    [header addSubview:label];

    return header;
}
4

5 回答 5

323

UITableViewStyle仅当表的属性设置为时,标题才保持固定UITableViewStylePlain。如果您将其设置为UITableViewStyleGrouped,标题将与单元格一起向上滚动。

于 2013-07-11T01:22:59.583 回答
5

更改您的 TableView 样式:

self.tableview = [[UITableView alloc] initwithFrame:frame style:UITableViewStyleGrouped];

根据 UITableView 的苹果文档:

UITableViewStylePlain - 一个普通的表格视图。滚动表格视图时,任何部分的页眉或页脚都显示为内联分隔符并浮动。

UITableViewStyleGrouped - 一个表格视图,其部分呈现不同的行组。部分页眉和页脚不浮动。

希望这个小小的改变能帮助你..

于 2016-05-08T02:23:15.227 回答
2

斯威夫特 3.0

使用UITableViewDelegateUITableViewDataSource协议创建一个ViewController 。然后在其中创建一个 tableView,将其样式声明为UITableViewStyle.grouped。这将修复标题。

lazy var tableView: UITableView = {
    let view = UITableView(frame: UIScreen.main.bounds, style: UITableViewStyle.grouped)
    view.delegate = self
    view.dataSource = self
    view.separatorStyle = .none
    return view
}()
于 2017-04-06T15:29:23.387 回答
0

使 UITableView 部分标题不粘或不粘:

  1. 更改表格视图的样式 - 将其分组为不粘性并使其清晰用于粘性部分标题 - 不要忘记:您可以在情节提要中完成此操作而无需编写代码。(单击您的表格视图并从右侧/组件菜单中更改其样式)

  2. 如果您有额外的组件,例如自定义视图等,请检查表格视图的边距以创建适当的设计。(例如部分标题的高度和索引路径处单元格的高度,部分)

于 2018-06-12T10:22:47.543 回答
0

您还可以将 tableview 的反弹属性设置为 NO。这将使节标题保持非浮动/静态,但随后您也会失去表格视图的反弹属性。

于 2015-09-23T19:19:33.390 回答