如何添加“查看全部>”如果在应用程序商店应用程序中UITableViewCell
的标题右侧按钮?
答案 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}}控制器中实施此方法。