将CLLocationCoordinate2D数组作为返回类型传递

时间:2013-02-06 07:35:50

标签: ios xcode cllocation

您有一个必须返回CLLocationCoordinate2D数组的方法。有没有办法做到这一点?

CLLocationCoordinate2D坐标[count]; 我想要返回坐标;

我不想把它放在数组上并作为NSArray发送,只想发送为CLLocationCoordinate2D数组。

1 个答案:

答案 0 :(得分:0)

设置 -

CLLocationCoordinate2D cooArray[5];
    cooArray[0] = _locationCoo1;
    cooArray[1] = _locationCoo2;
    cooArray[2] = _locationCoo3;
    cooArray[3] = _locationCoo4;

获取 -

CLLocationCoordinate2D location1 = cooArray[0];

获取数组大小

 NSLog(@" :%lu", sizeof(cooArray));