菜鸟教程小白 发表于 2022-12-13 06:24:02

ios - 在 ios8.0 App 中从 GPS 获取位置


                                            <p><p>您好,我正在开发一个 ios 应用程序。我想使用 GPS 获取设备的当前位置。我怎样才能得到一个地方的纬度和经度,我怎样才能确定当前的城市名称。我遇到了以下 <a href="http://www.appcoda.com/how-to-get-current-location-iphone-user/" rel="noreferrer noopener nofollow">http://www.appcoda.com/how-to-get-current-location-iphone-user/</a> 的示例但是当我按下按钮时什么也没发生。我正在使用 IOS 模拟器,并且我已将 Debug --> Location --> 更改为 Apple。</p>

<p>我正在为 ios 8.0 开发</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 iOS 8 中,苹果更改了一些 plist 键和位置访问条目..</p>

<p>请按照以下步骤保持您的核心工作..</p>

<ul>
<li>NSLocationAlwaysUsageDescription</li>
<li>NSLocationWhenInUseUsageDescription
<a href="https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html" rel="noreferrer noopener nofollow">See Apple document for plist.</a> </li>
<li>在 <code>startUpdatingLocation</code> 之前和分配之后 <code>CLLocationManager</code> 添加此代码以获得位置服务权限</li>
</ul>

<pre class="lang-html prettyprint-override"><code>if ()
{
;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 ios8.0 App 中从 GPS 获取位置,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29648742/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29648742/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 ios8.0 App 中从 GPS 获取位置