Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将 UIImage 从屏幕顶部移动到顶部。我知道如何制作动画,但如果我这样做,就会有几百张图片。我知道我可以使用一种叫做 CGPoint 的东西?有人可以给我一个如何用 CGPoint 移动图像的例子吗?
非常感谢。
做这样的事情:
[UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:3.0]; [myImageView setFrame:CGRectMake(0, 0, 50, 50]; [UIView commitAnimations];
这将使 imageView 从它当前所在的任何位置转到顶部。