iOS 5 - 获取图像添加联系人按钮

时间:2012-01-11 20:38:47

标签: iphone uitableview ios5 uiimageview uiimage

我想自定义UITableViewCell的附件视图,所以我需要一个UIImage。 我希望该图像类似于“添加联系人”类型按钮(蓝色加号)。

我该怎么做?

3 个答案:

答案 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)

你可以在这里找到一个:http://blog.twg.ca/2010/11/retina-display-icon-set/