Swift   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Swift 2 CLLocationManager更新错误大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我更新了Xcode 6到Xcode 7测试版与Swift 2.我得到这个错误,我找不到如何解决它,请帮助我。谢谢。这是我的代码: func LOCATIOnManager(manager: CLLOCATIOnManager, didupdateLOCATIOns LOCATIOns: [AnyObject]) { let LOCATIOn = LOCATIOns.last as! CLL
我更新了Xcode 6到Xcode 7测试版与Swift 2.我得到这个错误我找不到如何解决它,请帮助我。谢谢。这是我的代码
func LOCATIOnManager(manager: CLLOCATIOnManager,didupdateLOCATIOns LOCATIOns: [AnyObject]) {
    let LOCATIOn = LOCATIOns.last as! CLLOCATIOn

    let center = CLLOCATIOnCoordinate2D(latitude: LOCATIOn.coordinate.latitude,longitude: LOCATIOn.coordinate.longitudE)
    let region = MKCoordinateRegion(center: center,span: MKCoordinateSpan(latitudeDelta: 0.01,longitudeDelta: 0.01))

    self.map.setRegion(region,animated: truE)
}

我得到这个错误

Objective-C方法LOCATIOnManager:didupdateLOCATIOns:’由方法提供’LOCATIOnManager(_:didupdateLOCATIOns :)’与协议’CLLOCATIOnManagerDelegate’中的可选需求方法LOCATIOnManager(_:didupdateLOCATIOns :)’冲突

刚刚有同样的问题,你改变了
func LOCATIOnManager(manager: CLLOCATIOnManager,didupdateLOCATIOns LOCATIOns: [AnyObject])

func LOCATIOnManager(manager: CLLOCATIOnManager,didupdateLOCATIOns LOCATIOns: [CLLOCATIOn])

大佬总结

以上是大佬教程为你收集整理的Swift 2 CLLocationManager更新错误全部内容,希望文章能够帮你解决Swift 2 CLLocationManager更新错误所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。