显示图像到完整的tableview宽度还需要什么?
UIImage *image = [UIImage imageNamed:@"balloon_2.png"];
[image stretchableImageWithLeftCapWidth:15 topCapHeight:13];
cell.image = image;
答案 0 :(得分:1)
stretchableImageWithLeftCapWidth:topCapHeight:返回一个新的UIImage。 你需要做一些像
这样的事情UIImage *image = [UIImage imageNamed:@"balloon_2.png"];
UIImage *strImage = [image stretchableImageWithLeftCapWidth:15 topCapHeight:13];
cell.image = strImage;
...或者只是立即将消息的结果分配给cell.image。
另请参阅:UIImage reference