我想讓我的UIView
從viewDidLoad
方法的右側滑入,這裏是我所得到的。UIView動畫幻燈片
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!");
}];
我不確定這裏出了什麼問題我非常感謝任何幫助。
乾杯兄弟,好點。 – user1432813