0
A
回答
2
對於iOS 8,請執行下列操作:
這些行添加到您的Rake文件:
app.frameworks += ['CoreLocation'] app.info_plist['NSLocationWhenInUseUsageDescription'] = 'I need it' app.info_plist['NSLocationAlwaysUsageDescription'] = 'I always need it'
在
viewDidLoad
在ViewController
加:@locationManager = CLLocationManager.alloc.init @locationManager.requestWhenInUseAuthorization @locationManager.delegate = self @locationManager.startUpdatingLocation
實施
locationManager:didUpdateLocations:
def locationManager(manager, didUpdateLocations:locations) coordinate = locations[0].coordinate puts "lat #{coordinate.latitude}, long #{coordinate.longitude}" end
如果你只需要在當前位置一次,然後撥打:
manager.stopUpdatingLocation
在
didUpdateLocations
獲取位置後。
相關問題
- 1. WP7獲取設備座標
- 2. Android 4.4.2 - 獲取設備位置座標
- 3. 將iOS設備座標轉換爲外部用戶座標drawRect
- 4. 如何獲取死iOS設備的UDID?
- 5. 獲取座標CLLocationManager IOS
- 6. 如何獲取iOS設備名稱
- 7. 使用RubyMotion選擇iOS模擬器設備類型
- 8. 如何從iOS設備(如iPhone和iPad)獲取或獲取設備視頻?
- 9. 如何獲取iOS應用程序中的圖像座標?
- 10. 如何獲得iOS設備
- 11. 座標轉換困境,用戶座標到設備座標?
- 12. 如何獲取UIImageView座標?
- 13. 如何獲取vtkboxwidget座標
- 14. 如何獲取座標
- 15. locationManager如何獲取座標?
- 16. 如何使用離子獲取IOS設備令牌?
- 17. 如何使用JavaScript獲取iOS設備版本?
- 18. Windows設備座標與虛擬座標
- 19. 邏輯座標到設備座標Opengl
- 20. OpenGL座標映射到設備座標
- 21. 獲取設備ID在IOS
- 22. 標準化設備座標
- 23. 如何找出設備座標
- 24. 獲取(id)發送者(iOS)的座標
- 25. 無法在Android設備上的Javascript中獲取touchevents的座標
- 26. 如何使用traccar api獲取設備
- 27. 如何使用Python獲取基於設備名稱的卷標
- 28. 如何獲得CGContext的全局(屏幕,設備)座標?
- 29. 如何獲取鼠標的座標?
- 30. 如何使用Cordova獲取iOS用戶設置的設備名稱?
很好,非常感謝您的幫助 – MikeW 2014-10-31 23:49:42