我想自定义UITableViewCell的附件视图,所以我需要一个UIImage。 我希望该图像类似于“添加联系人”类型按钮(蓝色加号)。
我该怎么做?
答案 0 :(得分:7)
您可以通过使用UIButton
类型创建UIButtonTypeContactAdd
并将其添加为您单元格的accessoryView
来实现这一目标。
UIButton contactAddButton = [UIButton buttonWithType:UIButtonTypeContactAdd];
cell.accessoryView = contactAddButton;
答案 1 :(得分:4)
解决了它。如果我将用户交互设置为禁用,则它只是没有点击交互并且表现得像图像。
UIButton *contactAddButton = [UIButton buttonWithType:UIButtonTypeContactAdd];
[contactAddButton setUserInteractionEnabled:FALSE];
cell.accessoryView = contactAddButton;
答案 2 :(得分:0)