在Tableview中拉伸图像

时间:2009-08-18 22:02:26

标签: objective-c iphone uiimage

显示图像到完整的tableview宽度还需要什么?

UIImage *image = [UIImage imageNamed:@"balloon_2.png"]; 
[image stretchableImageWithLeftCapWidth:15 topCapHeight:13]; 
cell.image = image;

1 个答案:

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