我试图让我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!");
}];
Run Code Online (Sandbox Code Playgroud)
我不确定这里出了什么问题我非常感谢你的帮助.