Swift中的MKMapRectMake在编译时会导致链接器错误

Swift中的MKMapRectMake在编译时会导致链接器错误,第1张

概述使用MKMapRectMake创建MKMapRect会导致编译错误,如下所示: 这是我的代码: var lat = 37.33072 var lon = -122.029674 var loc = CLLocationCoordinate2D(latitude: lat, longitude: lon) var point = MKMapPointForCoordinate 使用MKMapRectMake创建MKMapRect会导致编译错误,如下所示:

这是我的代码:

var lat = 37.33072    var lon = -122.029674    var loc = CLLocationCoordinate2D(latitude: lat,longitude: lon)    var point = MKMapPointForCoordinate(loc)    var flyTo = MKMapRectMake(point.x,point.y,0);

这是编译器的错误:

Undefined symbols for architecture i386:  "_MKMapPointMake",referenced from:      _MKMapRectMake in VIEwController.o  "_MKMapSizeMake",referenced from:      _MKMapRectMake in VIEwController.old: symbol(s) not found for architecture i386clang: error: linker command Failed with exit code 1 (use -v to see invocation)

我的解决方法是使用origin和size参数创建MKMapRect.请注意,我已将MKMapKit添加到Build Phases中的链接库中

有没有人遇到同样的问题以及你如何解决这个问题?

解决方法 使用实用功能解决它:

func myMKMapRect(x: Double,y:Double,w:Double,h:Double) -> MKMapRect {    return MKMapRect(origin:MKMapPoint(x:x,y:y),size:MKMapSize(wIDth:w,height:h))}

当然,还要向Apple提交错误报告.

总结

以上是内存溢出为你收集整理的Swift中的MKMapRectMake在编译时会导致链接器错误全部内容,希望文章能够帮你解决Swift中的MKMapRectMake在编译时会导致链接器错误所遇到的程序开发问题。

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1007174.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存