Iphone 将CLLocation转换为CLLocationDegrees

Iphone 将CLLocation转换为CLLocationDegrees,iphone,objective-c,cllocationmanager,cllocation,Iphone,Objective C,Cllocationmanager,Cllocation,如何将CLLocation转换为CLLocationDegrees,以便创建CLLocationCoordinate2D结构?只需直接从CLLocation的坐标属性获取CLLocationCoordinate2D myLocationCoordinate2D = myLocation.coordinate; CLLocation.coordinate属性将为您返回CLLocationCoordinate2D。无需进行任何转换。是定位还是定位?

如何将CLLocation转换为CLLocationDegrees,以便创建CLLocationCoordinate2D结构?

只需直接从CLLocation的
坐标属性获取
CLLocationCoordinate2D

myLocationCoordinate2D = myLocation.coordinate;

CLLocation.coordinate属性将为您返回CLLocationCoordinate2D。无需进行任何转换。

是定位还是定位?