gpt4 book ai didi

iphone - iOS 上的页面 curl : Keep showing toolbar like in standard Maps app

转载 作者:行者123 更新时间:2023-11-28 17:34:08 24 4
gpt4 key购买 nike

我正在尝试实现与 map 应用程序相同的效果:工具栏不是 curl 一部分的页面 curl 。例如看这个:

http://www.patentlyapple.com/.a/6a0120a5580826970c0120a8a7172c970b-800wi

目前这是启动 curl 的代码:

MKTModalViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"MapOptions"];
controller.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentViewController:controller animated:YES completion:nil];

当前 View Controller (上面的 self)包含一个 map 和一个工具栏。使用上面的代码,整个页面都会 curl 。我只希望 map curl 而工具栏保持在同一位置。

有人知道怎么做吗?我是否想完全(相对容易地)做到这一点?

感谢您的帮助。

最佳答案

我假设在 map 应用程序中,UIToolbar 实际上是 UINavigationController 拥有的工具栏。确保您的 UIToolbar 不是您添加到 ViewController 的新工具栏。

在你的 UIViewController 中尝试这样的事情:

// add your buttons and controls to self.navigationController.toolbar;
self.navigationController.toolbarHidden = NO;

MKTModalViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"MapOptions"];
controller.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:controller animated:YES];

不确定这是否会从我的脑海中消失,但它应该会让你朝着正确的方向前进。

关于iphone - iOS 上的页面 curl : Keep showing toolbar like in standard Maps app,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10342667/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com