1

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

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

1 回答 1

1

stretchableImageWithLeftCapWidth:topCapHeight: 返回一个新的 UIImage。你需要做类似的事情

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

...或者直接将消息的结果分配给 cell.image 。

另请参阅:UIImage 参考

于 2009-08-18T22:14:47.170 回答