AM嘗試將CLLocationCoordinate2D []添加到NSMutableArray並將其作爲參數發送。但(__bridge id)正在崩潰應用程序。結構到id轉換是個問題。任何人都可以請讓我知道如何使用這個請。如何使用網橋CLLocationCoordinate2D
CLLocationCoordinate2D coordinates [1000];
coordinates [index] ---在循環中添加的所有座標。
NSMutableArray *coorArray = [NSMutableArray array];
[coorArray addObject:(__bridge id)(coordinates)]; crashes here
如果我理解正確,你想創建一個CLLocationCoordinate2D數組的數組? – Rikkles 2013-03-01 10:46:49
是的,你是正確的 – Manoj 2013-03-01 10:49:09