我试图让我UIView
的方法从右侧滑入,viewDidLoad
这就是我所拥有的。
CGRect menuFrame = self.menu.frame;
menuFrame.origin.y = menuFrame.size.height+200;
[UIView animateWithDuration:1
delay:0.05
options: UIViewAnimationCurveEaseIn
animations:^{
self.menu.frame = menuFrame;
}
completion:^(BOOL finished){
NSLog(@"Animation Complete!");
}];
我不确定这里出了什么问题我非常感谢任何帮助。