如何将UITableViewCellEditingStyle插入右侧?

时间:2011-11-28 02:38:08

标签: iphone xcode cocoa-touch ipad

我想知道如何将UITableViewCellEditingStyleInsert放在UITableView的右侧,如下图所示: enter image description here

1 个答案:

答案 0 :(得分:7)

您可以使用UIButton类型创建UIButtonTypeContactAdd并将其添加为附件视图:

UIButton *accessory = [UIButton buttonWithType:UIButtonTypeContactAdd];
[cell setAccessoryView:accessory];

图标是蓝色的;如果您希望它像UITableViewCellEditingStyleInsert一样绿色,则必须使用自定义图片制作按钮,而不是使用UIButtonTypeContactAdd

相关问题