arc4random方法减小了按钮的大小

时间:2013-02-04 06:18:51

标签: ios ipad cgrectmake

下面是我编写的一种方法,用于响应摇晃,以便按钮随机定位。

- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {

    if (motion == UIEventSubtypeMotionShake)

    {
        for(int i=0;i<8;i++){
          CGAffineTransform angle = CGAffineTransformMakeRotation(arc4random());
          shieldButton[i].transform = angle;

          shieldButton[i].frame = CGRectMake(arc4random()%900, arc4random()%400, 140, 171);
        }
    }

}

但是当我使用arc4random方法时,按钮的大小会减小。可能是什么原因......?

感谢。

1 个答案:

答案 0 :(得分:1)

这是Apple的文档

  

警告:如果transform属性不是identity变换,那么   此属性的值未定义,因此应忽略。

尝试设置边界。