我有一个带有固定图像的 UIImageView。我想在顶部添加第二个 UIImageView,我打算旋转。我需要在运行时创建顶部图像。我找不到处理透明度的地方。它是在 UIImage 还是在 UIImageView 中?到目前为止,我在顶部 UIImageView 上有一个黑色背景,但我想看穿这些黑色像素。这是代码:(这是基于 Erica Sadun 的Core iOS 6 Developers Cookbook)。我想在轮子上添加点来为控件的旋转添加一些反馈。
float width=200, height=200;
UIGraphicsBeginImageContextWithOptions(CGSizeMake(width, height), YES, 0.0);
CGContextRef context = UIGraphicsGetCurrentContext();
UIGraphicsPushContext(context);
CGContextAddRect(context, CGRectMake(0, 0, width, height));
CGContextSetFillColorWithColor(context, [[UIColor clearColor] CGColor]);
CGContextFillPath(context);
float lineWidth=4;
CGContextAddEllipseInRect(context, CGRectInset(CGRectMake(0, 0, width, height), lineWidth, lineWidth));
CGContextSetLineWidth(context, 4);
CGContextSetStrokeColorWithColor(context, [[UIColor redColor] CGColor]);
CGContextStrokePath(context);
UIGraphicsPopContext();
dots = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageView * ivDots = [[UIImageView alloc] initWithImage:dots];
UIImageView *iv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"wheel.png"]];
[self addSubview:iv];
[self addSubview:ivDots];