0

アップル ストアと同様に、テーブルビューに「その他」セクションを追加しようとしています。

ここに画像の説明を入力

検索しましたが、探しているものを説明する方法がわかりません。これを実装する方法を教えてくれる人はいますか?

単一行の展開可能なテーブルビューが必要です。

4

2 に答える 2

0

テーブルビューのフッタービューにボタンを追加できます。したがって、ユーザーが下にスクロールすると表示されます。

- (UIView *) createViewForTableFooter
{

    CGRect footerRect = CGRectMake(0, 0, self.view.frame.size.width, 60);
    UIView *tableFooter = [[[UIView alloc] initWithFrame:footerRect] autorelease];
    tableFooter.backgroundColor = [UIColor clearColor];

    UIButton* verifyButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [verifyButton setTitle:WNLocalizedString(@"More",@"") forState:UIControlStateNormal];
    [verifyButton.titleLabel setFont:[UIFont boldSystemFontOfSize:20]];
    [verifyButton addTarget:self action:@selector(verifyBtnTapped:)forControlEvents:UIControlEventTouchUpInside];
    verifyButton.autoresizingMask = UIViewAutoresizingFlexibleWidth;

    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
        [verifyButton setFrame:CGRectMake(44, 10, self.view.frame.size.width - 88, 37)];

    }
    else{
        [verifyButton setFrame:CGRectMake(10, 10, self.view.frame.size.width - 20, 37)];
    }
    [tableFooter addSubview:verifyButton];

    return tableFooter;
}

tableview.tableFooterView = [self createViewForTableFooter];
于 2013-06-04T11:51:30.023 に答える
0

リンクを確認してください: - https://iphonedevsdk.com/forum/iphone-sdk-development/99011-uitableview-cell-size-increases-on-tap-of-uibutton-inside-it.html

それがあなたに役立つことを願っています:)

于 2013-06-04T11:54:35.423 に答える