我试图使图像视图(logo下)向上滑动100像素。我正在使用此代码,但是什么都没有发生:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:3];
logo.center = CGPointMake(logo.center.x, logo.center.y - 100);
[UIView commitAnimations];
该代码在viewDidLoad方法中。具体来说,logo.center = ...不能正常工作。其他事情(例如更改Alpha)也可以。也许我没有使用正确的代码将其向上滑动?
潇湘沐
MM们