2

为什么 UIImageView 不旋转?

我需要围绕中心框架渲染片段,但它没有旋转。

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        _baseImage = [UIImage imageNamed:@"setAlarmSegment.png"];   
        _segmentCircleArray = [[NSMutableArray alloc] initWithCapacity:16];    
        for (int i=0; i<16; i++) {
            UIImageView *imageViewSegment = [[UIImageView alloc] initWithImage:_baseImage];
            [imageViewSegment setFrame:self.frame];
            imageViewSegment.transform = CGAffineTransformMakeRotation((M_PI*2/16.0f)*i);
            [_segmentCircleArray addObject:imageViewSegment];
        }
        self.backgroundColor = [UIColor colorWithWhite:0 alpha:0];     
    }
    return self;
}


- (void)drawRect:(CGRect)rect
{
    for (UIImageView *segment in _segmentCircleArray) {
        [segment drawRect: rect];
    }
}

谢谢。

4

1 回答 1

1

这不是你在 Cocoa/Cocoa Touch 中绘图的方式。您不要让图像视图在视图层次结构中浮动,然后向它们发送 drawRect 消息。除非它们是视图层次结构的一部分,否则图像视图并不意味着绘制。

您应该将图像视图添加为主视图的子视图,然后系统会为您绘制它们。

一般来说,如果可能的话,您希望避免在 Cocoa/Cocoa Touch 中使用 drawRect。它最终成为一种非常缓慢的绘画方式。

如果您决定使用 drawRect,则需要构建图像数组,而不是图像视图。然后,您将使用 drawAtPoint 或 drawInRect 依次绘制每一个。您可能需要保存图形上下文,然后在绘制每个图像之前对当前上下文应用旋转,然后恢复图形上下文

于 2013-09-05T23:51:59.263 回答