gpt4 book ai didi

swift - 如何在 iOS swift 中使用自动完成位置功能?

转载 作者:行者123 更新时间:2023-11-28 08:33:39 25 4
gpt4 key购买 nike

如何在 iOS 应用程序中实现自动完成位置功能。那就是当我尝试搜索某些东西时,它会给我关于这些地方的建议。我知道谷歌自动完成 api。但问题是它使应用程序的大小太大。我们必须为此导入 GoogleMaps pod,它大约有 100 MB。在没有谷歌地图的情况下如何使用自动完成地点功能?或者使大小小于当前的 Google map pod?我的 podfile 的代码很简单,写在下面

# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'

target 'slotcaddy' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'Google/SignIn'

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end

# Pods for slotcaddy

target 'slotcaddyTests' do
inherit! :search_paths
# Pods for testing
end

target 'slotcaddyUITests' do
inherit! :search_paths
# Pods for testing
end

end

谁能帮忙解决一下时间差

最佳答案

我在互联网上能找到的唯一教程是使用 JavaScript,尽管你使用的是 IOS,然后将我找到的这个教程作为附加信息提供给你,或者你可以通过它获得一些想法。

tutorial使用 Google Maps Places API自动完成功能,无需显示 map 。只需查看教程即可了解代码中所需的示例代码。

检查这个SO question获取更多信息。

关于swift - 如何在 iOS swift 中使用自动完成位置功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38351737/

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