如何在表格视图单元格中添加“查看全部”按钮

时间:2014-06-27 11:50:24

标签: ios xcode app-store tableviewcell

如何添加“查看全部>”如果在应用程序商店应用程序中UITableViewCell的标题右侧按钮?

http://i.stack.imgur.com/kJ5tX.jpg

3 个答案:

答案 0 :(得分:0)

类似的东西:

UIBarButtonItem *button = [[UIBarButtonItem alloc] init];
[button setTitle:@"See all"];
[self.navigationItem setRightBarButtonItem:button];

答案 1 :(得分:0)

您可以将按钮(和标题标题)添加到自定义UIView,并将其添加为表格标题(使用-[UITableView tableHeaderView]

答案 2 :(得分:0)

只需在自定义UITableViewCell中拖动UIButton即可。将UIButton外观样式设为自定义,并编写内容文本“查看全部>”。在CustomCell。h文件中创建一个button属性的链接,并将{target}选择器添加到cellForRowAtIndexPathMethod UITableView委托方法的[seeAllBtn addTarget:self action:@selector(seeAllAction:) forControlEvents:UIControlEventTouchUpInside]; 按钮中。对于前 -

owner

不要忘记在UITableView的{​​{1}}控制器中实施此方法。