首先设置一个VIEW初始位置在屏幕下, 比如iPhone6:CGRectMake(0, 667, 375, 667);然后在一个方法中(比如button出发的方法)view添加动画[UIView animateWithDuration:0.5 animations:^{// 设置view弹出来的位置self.myView.frame = CGRectMake(40, 100, 200, 250);}];