我无法弄清楚这次崩溃的原因。
我在同一屏幕上有一个带有 MapView 和 Tableview 的 iPad 应用程序。我试图让用户在表格中选择一行,然后在地图中突出显示相应的引脚,反之亦然。在模拟器中它工作正常。在设备上它可以工作一段时间,但如果我继续这样做,它会因 SIGSEGV 而崩溃。我不知道为什么。
它似乎仅在从选定的 tableview 行转到在 mapview 中选择 pin 时才会发生。
这是代码
Place *p = [self.results objectAtIndex:[indexPath row]];
NSArray *annon = [self.mapView annotations];
for ( int i = 0; i < [annon count]; i++)
{
NSObject *a = [annon objectAtIndex:i];
if ([a isKindOfClass:PlaceAnnotation.class])
{
PlaceAnnotation *pa = (PlaceAnnotation *)a;
if (p.placeid == pa.placeid)
{
[self.mapView selectAnnotation:pa animated:YES];
break;
}
}
}
以下是我们在执行此代码时看到的崩溃类型。
Exception Type: SIGSEGV
Exception Codes: SEGV_ACCERR at 0x9
Crashed Thread: 0
Thread 0 Crashed:
0 libobjc.A.dylib 0x317c4f78 0x317c1000 + 16248
1 CoreFoundation 0x3195576b 0x318c6000 + 587627
2 CoreFoundation 0x318cd644 0x318c6000 + 30276
3 CoreFoundation 0x318cf701 0x318c6000 + 38657
4 MapKit 0x36b061f3 0x36ab9000 + 315891
5 MapKit 0x36acf33d 0x36ab9000 + 90941
6 MapKit 0x36acf2f1 0x36ab9000 + 90865
7 MapKit 0x36ad29bd 0x36ab9000 + 104893
8 MapKit 0x36acdf03 0x36ab9000 + 85763
任何帮助,将不胜感激。