web-dev-qa-db-ja.com

セクションヘッダーが固定されたUITableView

よろしくお願いします。UITableViewのデフォルトの動作は、次のセクションが前のセクションの行を非表示にするまでセクションをスクロールするときにセクションヘッダー行をテーブルの上部に固定することです。

UITableViewの中にUIViewControllerがありますが、そうではないようです。

それはUITableViewControllerの単なるふるまいですか?

以下は、私が持っているものに基づいた簡単なコードです。 UIControllerインターフェイスと、Table Viewを作成するために実装した各Table Viewメソッドを示します。テーブルで使用するオブジェクトにインデックスを付けるのに役立つヘルパーデータソースクラスがあります。

    @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;
}
97
topwik

ヘッダーは、テーブルのUITableViewStyleプロパティがUITableViewStylePlainに設定されている場合にのみ固定されます。 UITableViewStyleGroupedに設定した場合、ヘッダーはセルとともに上にスクロールします。

280
bachonk

Swift 3.

ITableViewDelegateおよびITableViewDataSourceプロトコルでViewControllerを作成します。次に、その内部にtableViewを作成し、スタイルをITableViewStyle.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
}()

TableViewスタイルを変更します。

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

UITableViewのAppleドキュメントに従って:

UITableViewStylePlain-プレーンテーブルビュー。セクションのヘッダーまたはフッターはインラインセパレーターとして表示され、テーブルビューがスクロールされるとフロートします。

UITableViewStyleGrouped-セクションが行の個別のグループを表示するテーブルビュー。セクションのヘッダーとフッターはフロートしません。

この小さな変更があなたを助けることを願っています..

2
Aks

また、tableviewのbouncesプロパティをNOに設定することもできます。これにより、セクションヘッダーは非フローティング/静的のままになりますが、TableViewのバウンスプロパティも失われます。

1
kevinl

uITableViewセクションヘッダーをスティッキーまたはスティッキーにしないようにするには:

  1. テーブルビューのスタイルを変更します-スティッキーでないためにグループ化し、スティッキーセクションヘッダーのためにプレーンにします-忘れないでください:コードを記述せずにストーリーボードから行うことができます。 (テーブルビューをクリックして、右側/コンポーネントメニューからスタイルを変更します)

  2. カスタムビューなどの追加コンポーネントがある場合は、テーブルビューのマージンを確認して適切なデザインを作成してください。 (セクションのヘッダーの高さとインデックスパス、セクションのセルの高さなど)

0

これで、テーブルビューはプレーンなテーブルスタイルのように見えますが、テーブルスタイルをグループに設定してフロートしないでください。

[_tableView setBackgroundView:nil];
_tableView.backgroundColor = [UIColor whiteColor];
0
Ravi Kumar