-1

次のコードを使用して、このMapViewのNavigationBarにUIActivityIndi​​catorを表示しようとしています。ただ、どちらにしようとしても見せられません。ここでのトリックは何ですか?また、サーバーからフェッチしてバックグラウンドでマップに表示するマップアノテーションを実行しようとしていますが、これはその方法ですか?

 - (void)viewDidLoad
 {
  [super viewDidLoad];

  self.activityIndicatorView = [[UIActivityIndicatorView alloc]                            
              initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
  self.activityIndicatorView.hidesWhenStopped = YES;
  self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]
                                    initWithCustomView:self.activityIndicatorView];

 [self.activityIndicatorView startAnimating];
 [self performSelectorInBackground:@selector(loadMapAnnotations) withObject: nil];
 [self.activityIndicatorView stopAnimating];
 }

 //=========================================================================
 -(void)loadMapAnnotations
 {
   self.mapView.showsUserLocation = YES;
   if(self.vManager = [VendorManager getVendorManager])
   {
     NSLog(@"VendorManager = %@",[self.vManager description] );

     [self.vManager vendorsNearLocation:userLocation block:^(NSArray *vendors, 
      NSError *error)
      {
          if(vendors && [vendors count])
          {
             for (id v in vendors)
             {
                 Vendor *aVendor = [[Vendor alloc] initWithAttributes:v];
                 NSLog(@"Vendor from Vendors = %@",[aVendor name]);
                 [self.mapView addAnnotation:aVendor];
              }
         }
         else
         {
             NSLog(@"Failed to get vendors: %@", [error description] );
         }


      }];
     }
    }
4

1 に答える 1

2

アクティビティインジケーターを表示した直後に非表示にしています。

[self.activityIndicatorView startAnimating];
[self performSelectorInBackground:@selector(loadMapAnnotations) withObject: nil];
[self.activityIndicatorView stopAnimating];

問題は、メソッドが完了するのを待つと思うことです-名前に非同期動作が暗黙的にperformSelectorInBackground:withObject:含まれているため、なぜそうなると思うのかよくわかりません...

それでも、[self.activityIndicatorView stopAnimating];コールバックブロックに呼び出しを移動すると、この「問題」が解決されます。

于 2012-10-21T08:06:38.387 に答える