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

ios - 谷歌 Logo 隐藏在底部任务栏后面

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

在我的应用程序中,我使用的是 Google Maps SDK。
我的应用程序中有一个全屏 map 。
问题是 Google Logo 在导航选项卡后面的屏幕底部被截断。 我不知道要改变什么来调整 map 大小以在屏幕上显示 Logo 。 我会附上问题的截图,但我没有足够的声誉。

由于我是 Obj-C 和 Xcode 编程的新手,我可能忘记发布 map 实现所必需的部分代码。

- (void)viewDidLoad 
{
    [super viewDidLoad];
    _firstLocationUpdate = NO;
    _errorView.layer.cornerRadius = 5;
    _errorView.clipsToBounds = YES;

    GMSCameraPosition *camera = [GMSCameraPosition cameraWithTarget:_mapView.myLocation.coordinate zoom:14];

    _mapView = [GMSMapView mapWithFrame:self.view.frame camera:camera];
    _mapView.delegate = self;

    [self.view addSubview:_mapView];
    [self.view sendSubviewToBack:_mapView];      
}

我设法把它强了一点,但这真的很丑陋。

    _mapView = [GMSMapView
               mapWithFrame: CGRectMake(
                                        0, -50,
                                        self.view.frame.size.width, self.view.frame.size.height)
               camera: camera];


  [self.view addSubview:_mapView];
  [self.view sendSubviewToBack:_mapView];



Best Answer-推荐答案


另一种选择是在保持 View 大小相同的同时填充控件:

// top, left, bottom, right
_mapView.padding = UIEdgeInsetsMake(0.0, 0.0, 50.0, 0.0);

使用 SDK 1.8 进行测试,它会移动 Google Logo 和各种控件。

Google SDK documentation for the padding property :

Controls the 'visible' region of the view. By applying padding an area arround the edge of the view can be created which will contain map data but will not contain UI controls.

If the padding is not balanced, the visual center of the view will move as appropriate. Padding will also affect the projection property so the visible region will not include the padding area. GMSCameraUpdate fitToBounds will ensure that both this padding and any padding requested will be taken into account.

This property may be animated within a UIView-based animation block.

关于ios - 谷歌 Logo 隐藏在底部任务栏后面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23905246/

回复

使用道具 举报

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

本版积分规则

关注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