我在为 a 设置正确的图像位置时遇到了一些问题UIImageView
,我将其作为子视图添加到 a UIButton
。我首先创建按钮并添加一些子层:
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setFrame:bounds];
//add gradient background
CAGradientLayer *gradient = [CAGradientLayer layer];
gradient.frame = button.bounds;
gradient.colors = [NSArray arrayWithObjects:(id)[UIColor colorWithRed:.5 green:.5 blue:.5 alpha:1.0].CGColor, (id)[[UIColor blackColor] CGColor], nil];
[button.layer insertSublayer:gradient atIndex:0];
//set green background
CALayer *layer = [CALayer layer];
layer.frame = CGRectInset(button.bounds, 5, 5);
layer.backgroundColor = [UIColor colorWithRed:.55 green:.8 blue:.5 alpha:1.0].CGColor;
[button.layer insertSublayer:layer above:gradient];
然后我使用两种方法来设置图像。第一个(如果没有保存图像,我会使用它)使用缩放为正确大小的图像资源,并且是应用程序包的一部分。我使用以下代码进行设置:
UIImageView *v = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"profile.png"]];
[v setBounds:CGRectInset(button.bounds, 8, 8)];
[button addSubview:v];
问题出在我使用通过相机拍摄并保存到文件系统的图像时。我使用以下代码将其设置为背景:
//path is an NSString set the the documents location of the image.
UIImageView *v = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:path]];
[v setBounds:CGRectInset(button.bounds, 8, 8)];
[v setContentMode:UIViewContentModeScaleToFill];
[button addSubview:v];
屏幕的输出现在显示图像偏离它应该在的位置:
我究竟做错了什么?如何在其父视图中正确缩放/适合图像?我试过简单地设置按钮图像,但什么也没出现(也许图像在子层后面?)。