如何使用多个小图像设置UITableViewCell的背景颜色?

时间:2014-05-06 02:39:52

标签: ios uitableview

当我使用UITableViewCell时,我想要使用一个小图像(大小为10 * 10)设置单元格的背景颜色。我该如何实现呢?

例如,UITableViewCell大小为320 * 20,我希望使用32 * 2小图像设置它的背景颜色,就像平铺小图像一样。

1 个答案:

答案 0 :(得分:0)

正如我评论的那样,您可以使用[UIColor colorWithPatternImage:] UIColor方法 例如

cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tile.png"]]; //the size as of tile.png may hav (10 * 10) 

希望这有助于你.. :)