在一种可能需要几秒钟的方法中,我有:
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc]initWithFrame:CGRectMake(135,140,50,50)];
spinner.color = [UIColor blueColor];
[spinner startAnimating];
[_mapViewController.view addSubview:spinner];
// lots of code
[spinner removeFromSuperview];
微调器不显示。可能是因为当时屏幕没有更新。我怎样才能解决这个问题?