次のコードを使用して、このMapViewのNavigationBarにUIActivityIndicatorを表示しようとしています。ただ、どちらにしようとしても見せられません。ここでのトリックは何ですか?また、サーバーからフェッチしてバックグラウンドでマップに表示するマップアノテーションを実行しようとしていますが、これはその方法ですか?
- (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] );
}
}];
}
}