gpt4 book ai didi

appstore-approval - 我的申请因谷歌地图而被拒绝?

转载 作者:行者123 更新时间:2023-12-04 07:50:02 24 4
gpt4 key购买 nike

今天我的应用被拒绝了,我不明白问题。
被拒绝,因为:

10.6 - Apple and our customers place a high value on simple, refined, creative, well thought through interfaces. They take more work but are worth it. Apple sets a high bar. If your user interface is complex or less than very good, it may be rejected


附评论:

10.6 Details

Your app’s location feature is not integrated with the built-in mapping functionality, which limits users to a third party Maps application. 

Next Steps

Please revise your app to give users the option to launch the native Apple Maps application. 


我需要做什么?我应该在我的应用程序中添加 Apple Maps 并给用户一个选择吗?
为什么他们不需要这样的其他应用程序。
关于我的应用程序的几句话:它是在 map 上显示用户的社交网络
You can see main screen with Google Maps

最佳答案

他们说:
“为用户提供 选项 以启动原生 Apple map ...”

您可以做的是显示一个包含 3 个选项的操作表:

  • 谷歌地图
  • 位智
  • map

  • 用户会选择...

    选项之一应该是 Apple 的 map
    实现 maps 选项如下:
        let regionDistance:CLLocationDistance = 100
    let coordinates = CLLocationCoordinate2DMake(lat, lon)
    let regionSpan = MKCoordinateRegionMakeWithDistance(coordinates, regionDistance, regionDistance)
    let options = [
    MKLaunchOptionsMapCenterKey: NSValue(mkCoordinate: regionSpan.center),
    MKLaunchOptionsMapSpanKey: NSValue(mkCoordinateSpan: regionSpan.span),
    MKLaunchOptionsDirectionsModeKey: motType = MKLaunchOptionsDirectionsModeDriving
    ] as [String : Any]
    let mapItem = MKMapItem(placemark: MKPlacemark(coordinate: coordinates, addressDictionary: nil))
    mapItem.name = placeName
    mapItem.openInMaps(launchOptions: options)

    关于appstore-approval - 我的申请因谷歌地图而被拒绝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36167212/

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