私はactivityIndicatorにシングルトンクラスを使用しました。その後、必要に応じてそのクラスを呼び出します。ロード中は問題ありませんが、他のビューコントローラにプッシュしている間はロードが表示されません。
- (void)editBtntapped
{
[loading showLoadingView:self.view ForSubView:self.view];
Screen_Participant_Edit *controller=[[Screen_Participant_Edit alloc]init];
[self.navigationController pushViewController:controller animated:NO];
[controller release];
}
ローディングはsigletonクラスのオブジェクトです。