隐藏/显示子视图

发布于 2024-10-10 16:07:54 字数 287 浏览 6 评论 0原文

我有一个子视图,通过“对于初学者来说,我将如何制作它”加载

    [super viewWillAppear: animated];
    [self.view addSubview: self.webView ];
    self.webView.frame = CGRectMake(0, 911, 768, 52);
self.webView.delegate = self;

,以便我可以在其启动后将其隐藏,然后通过双击应用程序底部再次显示它。以及我如何让它动画化以便它上下滑动

I have a subview that loads via

    [super viewWillAppear: animated];
    [self.view addSubview: self.webView ];
    self.webView.frame = CGRectMake(0, 911, 768, 52);
self.webView.delegate = self;

For starters how would i make it so i can hide it once its up and then show it again via double clicking the bottom of the app. and also how would i make it animated so it slides up and down

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2024-10-17 16:07:54

如果您想对上下滑动的视图进行动画处理,则必须对其属性进行动画处理,或者我建议您使用presentModalViewControlleranimated:YES

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference .html

If you want to animate the view that it slides up and down, you have to animate its properties, or what I would suggest you is to use presentModalViewController animated:YES

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文