search

Home  >  Q&A  >  body text

ios - UIButton 的imageView 改变transform属性使图片旋转45度时,图片消失了?

普通的UIImageView通过设置transform旋转都是正常的,但是UIButton的中的imageView表现十分奇怪。

旋转图片代码如下:(self 是继承自UIButton类的一个实例)

    [UIView beginAnimations:@"rotation1" context:nil];
    [UIView setAnimationDuration:1];
    self.imageView.transform = CGAffineTransformMakeRotation(DEGREES_TO_RADIANS(M_PI_4));
    [UIView commitAnimations];
    

图片直接消失,旋转度数不为45度时,图片不会消失,但是好像旋转的平面并不是当前屏幕所在平面。
我理解的transform应该是在当前视图屏幕做平移、旋转、放缩操作,但是现在的现象很奇怪。难道系统有对这个imageView做什么特殊处理?

有没有大神解答一下为什么会这样?

PHPzPHPz2807 days ago1286

reply all(1)I'll reply

  • 黄舟

    黄舟2017-04-18 09:50:22

    Rotate 45 degrees and pass it directly to M_PI_4, which represents radians without conversion. I just tested it, and it will be displayed when rotated 45°, but the shape is weird. I don't particularly understand the reason for this, but directly rotating the button can achieve the effect you want.

    reply
    0
  • Cancelreply