我有一个 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);