アップル ストアと同様に、テーブルビューに「その他」セクションを追加しようとしています。
検索しましたが、探しているものを説明する方法がわかりません。これを実装する方法を教えてくれる人はいますか?
単一行の展開可能なテーブルビューが必要です。
アップル ストアと同様に、テーブルビューに「その他」セクションを追加しようとしています。
検索しましたが、探しているものを説明する方法がわかりません。これを実装する方法を教えてくれる人はいますか?
単一行の展開可能なテーブルビューが必要です。
テーブルビューのフッタービューにボタンを追加できます。したがって、ユーザーが下にスクロールすると表示されます。
- (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];
リンクを確認してください: - https://iphonedevsdk.com/forum/iphone-sdk-development/99011-uitableview-cell-size-increases-on-tap-of-uibutton-inside-it.html
それがあなたに役立つことを願っています:)