1
我正在爲nsmutablearray的數據循環做一些操作。但有時工作有時它給我像「數組索引3空數組」錯誤在這行:NSMutableArray空陣列錯誤
else if (min>[[enyakinarray objectAtIndex:i] floatValue])
全碼:
for (int i=0; i<[ws3.CustomerID count]; i++) {
//radian hesaplaması
float total = [first floatValue];
float theta = total * M_PI/180;
float total2 = [second floatValue];
float theta2 = total2 * M_PI/180;
float total3 = [[ws3.Latitude objectAtIndex: i] floatValue];
float theta3 = total3 * M_PI/180;
float total4 = [[ws3.Longitude objectAtIndex: i] floatValue];
float theta4 = total4 * M_PI/180;
distance = 6371 * acos(cos(theta) * cos(theta3)
* cos(theta4 - theta2)
+ sin(theta) * sin(theta3)) ;
NSLog(@"xxxxx %f",distance);
num = [NSNumber numberWithFloat:distance];
[enyakinarray addObject:num];
NSLog(@"asasasas %@",enyakinarray);
}
float min;
NSString *s;
for (int i=0; i<[enyakinarray count]; i++) {
if(i==0)
{
min = [[enyakinarray objectAtIndex:i] floatValue];
s= [ws3.CustomerName objectAtIndex:i];
}
else if (min>[[enyakinarray objectAtIndex:i] floatValue])
{
min= [[enyakinarray objectAtIndex:i] floatValue];
s = [ws3.CustomerName objectAtIndex:i];
}
enyakinfirma.text=s;
}
我該如何解決這個問題?
你肯定'ws3.CustomerName'包含'[enyakinarray數]'對象? – Nekto
什麼來自日誌聲明? – jrturton
'array index 3 empty array'聽起來不像一個真正的錯誤信息,請發佈你遇到的確切消息。 – DarkDust