0

我制作了一个自定义 UITableViewCell 并且它的高度是动态的,我想拉伸图像以适应它的高度,如何使用 UIEdgeInsetsMake 呢?我尝试了很多 EdgeInsets 并且视图看起来很奇怪,它似乎只是垂直重复图像。

UIImage *cell_bg=[UIImage imageNamed:@"cell_bg"];

cell_bg=[cell_bg resizableImageWithCapInsets: UIEdgeInsetsMake(0, 10, 0, 300)];

UIImageView *backgroundView=[[UIImageView alloc]initWithImage:cell_bg];

self.backgroundView=backgroundView;
[backgroundView release];
4

1 回答 1

0

您可以尝试如下:

[[UIImage imageNamed:@"yourimage.png"] stretchableImageWithLeftCapWidth:yourvalue topCapHeight:yourvalue];

谢谢

于 2013-01-21T04:36:36.583 回答