小编use*_*813的帖子

UIView动画幻灯片

我试图让我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)

我不确定这里出了什么问题我非常感谢你的帮助.

xcode animation uiview ios cgrect

2
推荐指数
1
解决办法
5682
查看次数

标签 统计

animation ×1

cgrect ×1

ios ×1

uiview ×1

xcode ×1