-2

UIView我在 a和 a中有几个弧线和矩形UIImageView。我想要UIImageView在后台。我在 IB 中订购了它,以便图像视图位于我的标签和按钮后面。

首先,我需要在图像视图中放置一个图像,我不想在 IB 中这样做。我试过这段代码

UIImage *myImage = [UIImage imageNamed:@"image.png"];
UIImageView *myImageView = [[UIImageView alloc] initWithImage:@"myImage"];

但它不起作用。在我开始工作后,我该怎么做才能将我的路径移动到图像视图前面?

4

2 回答 2

1

我认为您想绘制以放置背景图像,并在其上绘制圆(弧)。

如果我的理解是正确的。首先使用 CGContextDrawImage() 将图像绘制到视图上,然后在其上绘制弧线。(无需使用图像视图)。

于 2013-03-01T17:29:33.863 回答
0

将图像添加到UIImageView

UIImage *myImage = [UIImage imageNamed:@"image.png"];
UIImageView *myImageView = [[UIImageView alloc] initWithImage:myImage];
[self.view addSubview:myImageView];
于 2013-03-01T14:34:25.090 回答