将图像显示为完整的 tableview 宽度还需要什么?
UIImage *image = [UIImage imageNamed:@"balloon_2.png"];
[image stretchableImageWithLeftCapWidth:15 topCapHeight:13];
cell.image = image;
将图像显示为完整的 tableview 宽度还需要什么?
UIImage *image = [UIImage imageNamed:@"balloon_2.png"];
[image stretchableImageWithLeftCapWidth:15 topCapHeight:13];
cell.image = image;
stretchableImageWithLeftCapWidth:topCapHeight: 返回一个新的 UIImage。你需要做类似的事情
UIImage *image = [UIImage imageNamed:@"balloon_2.png"];
UIImage *strImage = [image stretchableImageWithLeftCapWidth:15 topCapHeight:13];
cell.image = strImage;
...或者直接将消息的结果分配给 cell.image 。
另请参阅:UIImage 参考