2

バックグラウンドスレッドを使用してURLからアノテーションをロードします。mapViewを移動または拡大縮小する前に、ピンが表示されません。ビューを更新するにはどうすればよいですか?

私のviewDidAppear

- (void)viewDidAppear:(BOOL)animated
{

[super viewDidAppear:animated];

//Create the thread 
[NSThread detachNewThreadSelector:@selector(loadPList) toTarget:self withObject:nil];

}

loadPList

- (void) loadPList { //Load the plist NSString *urlStr = [[NSString alloc] initWithFormat:@"http://www.domain.com/data.xml"];

NSURL *url = [NSURL URLWithString:urlStr]; NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfURL:url];

NSMutableArray *annotations = [[NSMutableArray alloc]init];

NSArray *annotationsOnMap = mapView.annotations; if ([annotationsOnMap count] > [annotations count]) { [mapView removeAnnotations:annotationsOnMap];

} else { //Do nothing }

if ([[NSUserDefaults standardUserDefaults] boolForKey:@"blackKey"]) {

NSArray *ann = [dict objectForKey:@"Category1"];

for(int i = 0; i < [ann count]; i++) {

    NSString *coordinates = [[ann objectAtIndex:i] objectForKey:@"Coordinates"];

    double realLatitude = [[[coordinates componentsSeparatedByString:@","] objectAtIndex:1] doubleValue];
    double realLongitude = [[[coordinates componentsSeparatedByString:@","] objectAtIndex:0] doubleValue];

    MyAnnotation *myAnnotation = [[MyAnnotation alloc] init];
    CLLocationCoordinate2D theCoordinate;
    theCoordinate.latitude = realLatitude;
    theCoordinate.longitude = realLongitude;

    myAnnotation.coordinate=CLLocationCoordinate2DMake(realLatitude,realLongitude);

    myAnnotation.title = [[ann objectAtIndex:i] objectForKey:@"Name"];
    myAnnotation.subtitle = [[ann objectAtIndex:i] objectForKey:@"Address"];
    myAnnotation.icon = [[ann objectAtIndex:0] objectForKey:@"Icon"];


    [mapView addAnnotation:myAnnotation];
    [annotations addObject:myAnnotation];



}
}

else { //Do nothing }

//And same with other categories....

//Update the ui dispatch_async(dispatch_get_main_queue(), ^{

}); }
4

1 に答える 1

4

非UIからUIを更新しています-スレッドこれは機能しません

次のように、UIThreadブロック内のUIを更新するコードのセグメントを呼び出す必要があります。

例えば

[mapView removeAnnotations:annotationsOnMap];

UIスレッドで呼び出す必要があります

   dispatch_async(dispatch_get_main_queue(), ^{
        //Update UI if you have to
        [mapView removeAnnotations:annotationsOnMap];
    });

main_queueスレッド内ですべてのUI更新を呼び出す必要があることに注意してください

   dispatch_async(dispatch_get_main_queue(), ^{
        //All UI updating code must come here
    });
于 2012-06-02T14:15:35.973 に答える