作者:
jeff77731 (LittleRice)
2014-03-26 15:31:07想請問一個問題
我在做簡單的UIView移動的時候
使用
[UIView animateWithDuration:0.3 animations:^{
[MyView setTransform:CGAffineTransformMakeTranslation(260, 0)];
} completion:^(BOOL finished) {
}];
但是移動的方式卻是先往左移動130再往右移動260...
想請問一下是哪裡出了問題...