• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 动画self.view.frame?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 18:21:16 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试使用 UIView 动画来模仿 UINavigationController 的 pushViewController,但我似乎遇到了问题。我无法为 self.view.frame 设置动画。

这是我正在使用的代码,但 self.view 不会移动!

    [self.view addSubview:myViewController.view];
    [myViewController.view setFrame:CGRectMake(320, 0, 320, 480)];    
    [UIView animateWithDuration:0.5 
                     animations:^{
                         [self.view setFrame:CGRectMake(-320, 0, 320, 480)];
                         [myViewController.view setFrame:CGRectMake(0, 0, 320, 480)];
                     }
                     completion:^(BOOL finished){
                         [view1.view removeFromSuperview];
                     }];

谢谢!



Best Answer-推荐答案


考虑在动画开始之前 View 的位置:

  • self.view.frame 是(我假设)0,0,320,380
  • myViewController.viewself.view
  • 的 subview
  • myViewController.view.frame 是 320,0,320,480 self.view 的坐标系,所以它在其父 View 的框架之外(并离开屏幕的右边缘)

现在考虑动画完成后 View 的位置:

  • self.view.frame 为 -320,0,320,480
  • myViewController.view 仍然是 self.view
  • 的 subview
  • myViewController.view.frameself.view 的坐标系中是 0,0,320,480 ,所以它完全在其父 View 的框架内,但是它在屏幕坐标中的框架是-320,0,320,480,所以它现在完全不在屏幕的左边缘

您需要使 myViewController.view 成为 self.view 的兄弟,而不是 subview 。试试这个:

// Calculate the initial frame of myViewController.view to be
// the same size as self.view, but off the right edge of self.view.
// I don't like hardcoding coordinates...
CGRect frame = self.view.frame;
frame.origin.x = CGRectGetMaxX(frame);
myViewController.view.frame = frame;
[self.view.superview addSubview:myViewController.view];
// Now slide the views over.
[UIView animationWithDuration:0.5 animations:^{
    CGRect frame = self.view.frame;
    myViewController.view.frame = frame;
    frame.origin.x -= frame.size.width;
    self.view.frame = frame;
} completion:^(BOOL done){
    [view1.view removeFromSuperview];
}];

关于ios - 动画self.view.frame?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8321253/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap