我已经为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];
}
loading 是 sigleton 类的对象。