为啥 UIImageView 不旋转?
Posted
技术标签:
【中文标题】为啥 UIImageView 不旋转?【英文标题】:why UIImageView not rotating?为什么 UIImageView 不旋转? 【发布时间】:2013-09-05 22:49:03 【问题描述】:为什么 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];
谢谢。
【问题讨论】:
【参考方案1】:这不是您在 Cocoa/Cocoa Touch 中进行绘图的方式。您不要让图像视图在视图层次结构中浮动,然后向它们发送 drawRect 消息。除非它们是视图层次结构的一部分,否则图像视图并不意味着绘制。
您应该将图像视图添加为主视图的子视图,然后系统会为您绘制它们。
一般来说,如果可能的话,您希望避免在 Cocoa/Cocoa Touch 中使用 drawRect。它最终是一种非常缓慢的绘制方式。
如果您决定使用 drawRect,则需要构建图像数组,而不是图像视图。然后,您将使用 drawAtPoint 或 drawInRect 依次绘制每一个。您可能需要保存图形上下文,然后在绘制每个图像之前对当前上下文应用旋转,然后恢复图形上下文
【讨论】:
以上是关于为啥 UIImageView 不旋转?的主要内容,如果未能解决你的问题,请参考以下文章
为啥UIImageView拥有UIImage。它是不是违反 MVC 原则?
为啥所有异步图像加载(SDWebImage、AFNetworking)库都使用 UIImageView 而不是 UIImage?