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.
できればCocoa Touchを使用して、Xcodeでオブジェクトを場所a(x、y)から場所b(x、y)に移動するにはどうすればよいですか。
よろしく、ニキータ。
コア アニメーション ブロックを使用する:
[UIView animateWithDuration:5.0 animations:^{ myView.frame = newFrame; } completion:^(BOOL completed){ // done! }];