我怀疑使用WebView获取位置。我创建了一个带有简单WebView的应用程序,可以在我的网站上运行。该网站有谷歌地图显示一些地方的位置。 Mac Safari要求打开GPS来计算路线,因为应用程序WebView没有将我的位置拉到地图上。我已经搜索了很多论坛并做了很多测试但是没有任何效果。
我使用Xcode7。
import UIKit
import CoreLocation
class ViewController: UIViewController , CLLocationManagerDelegate {
@IBOutlet weak var WebView: UIWebView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let URL = NSURL(string: "http://inibox.com.br")
WebView.loadRequest(NSURLRequest(URL: URL!))
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}