UIView简单动画

[UIView animateWithDuration:0.4 animations:^{

  animationView.frame = CGRectMake(100,200, animationView.frame.size.width, animationView.frame.size.height);

}];

原文地址:https://www.cnblogs.com/guatiantian/p/3831437.html