【发布时间】:2012-09-03 12:37:46
【问题描述】:
我有一个 UIImageView,我想在逆时钟方向稍微旋转它。但是当我这样做时,旋转就起作用了。但是边缘不共享。具有像素化边缘。我该如何解决这个问题。请帮忙。
UIImageView *popupTop = [[UIImageView alloc] initWithFrame:CGRectMake(10, 54, 300, 15)];
popupTop.image = [UIImage imageNamed:@"pover_note.png"];
[self.view addSubview:popupTop];
popupTop.transform = CGAffineTransformMakeRotation(-0.04);
【问题讨论】:
-
能否请您显示原始图像以及前卫的结果?
标签: objective-c uiimageview cgaffinetransform image-rotation