让UIView窄斜

让UIView窄斜

by 吴雪莹

[UIView animateWithDuration:0.5 animations:^{
        CGAffineTransform t = CGAffineTransformMakeRotation(M_PI * .3);
        t = CGAffineTransformScale(t, .75, .75);
        _moveView.transform = t;
    } completion:^(BOOL finished) {
        [self drop];
}];


posted @ 2015-12-15 10:32  mfrbuaa  阅读(240)  评论(0)    收藏  举报