当我使用UITableViewCell时,我想要使用一个小图像(大小为10 * 10)设置单元格的背景颜色。我该如何实现呢?
例如,UITableViewCell大小为320 * 20,我希望使用32 * 2小图像设置它的背景颜色,就像平铺小图像一样。
答案 0 :(得分:0)
正如我评论的那样,您可以使用[UIColor colorWithPatternImage:]
UIColor
方法
例如
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tile.png"]]; //the size as of tile.png may hav (10 * 10)
希望这有助于你.. :)