在构建我的xamarin应用程序时,我注意到xamarin.ios上有一个相当奇怪的行为。我使用geolocator.plugin来查找我的位置,而不是我使用此位置,因为我需要通过应用程序。在xamarin.android项目中一切正常,但在xamarin.ios中,一旦我调用我找到位置的服务就停止。这是我的代码示例:
service.cs
public async Task<Plugin.Geolocator.Abstractions.Position> GetDeviceCurrentLocation()
{
try
{
var locator = Plugin.Geolocator.CrossGeolocator.Current;
locator.DesiredAccuracy = 50;
var position = await locator.GetPositionAsync(TimeSpan.FromSeconds(3));
if (position != null)
{
return position;
}
}
catch (Exception ex)
{
Debug.WriteLine("Unable to get location, may need to increase timeout: " + ex);
}
return new Plugin.Geolocator.Abstractions.Position();
}
这是我的MyViewExample.xaml.cs
public partial class MyViewExample : ContentPage
{
public MyViewExample()
{
InitializeComponent();
Service cs = new Service();
var myLocation = Task.Run(() => api.GetDeviceCurrentLocation()).Result;
var myLatitude = myLocation.Latitude;
var myLongitude = myLocation.Longitude;
Debug.Writeline("Latitude is : " + myLatitude + " and Longitude is : " + myLongitude);
}
}
这是我的info.plist文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
--
--
--
--
--
--
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>This app needs access location when open and in the background</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Need location for geolocator plugin</string>
<key>RequestWhenInUseAuthorization</key>
<string>Need location for geolocator plugin</string>
<key>CFBundleIdentifier</key>
<string>my.app.development</string>
</dict>
</plist>
任何人都可以告诉我为什么我在获取xamarin.ios上的位置时遇到问题?我忘记了什么吗?我经历了很多例子,但没有一个对我有用。 关于如何解决这个问题的任何想法?任何帮助都将是至关重要的,并高度赞赏:)。提前谢谢!
答案 0 :(得分:1)
由于我的任务是异步的,我需要await
这项任务。但是,我没有等待它,而是使用这行代码在主线程上运行任务。
var myLocation = Task.Run(() => cs.GetDeviceCurrentLocation()).Result;
这是我的应用程序的问题。看起来像xamarin.ios不支持这种“黑客”。一旦我使用另一种方法asynchronus并使用了这一行
var myLocation = await cs.GetDeviceCurrentLocation();