我有一个PlayPageViewController作为rootViewController
. PlayPageViewController将显示 3D 模型并在方法调用中调用editPages (),这需要几秒钟的等待。UIImages
我只想在开始时添加一个 loadingView,当PlayPageViewController完全加载时它会消失。
这是我的解决方案:
- 添加带有 activityIndicator 的 loadingView。
- 当loadingView加载完毕,我就开始执行
但似乎没有用
STLoadingViewController *loadingView =
[[STLoadingViewController alloc]initWithNibName:@"STLoadingViewController"
bundle:nil];
loadingView.view.frame=CGRectMake(0, 0, 1024, 768);
[self.view insertSubview:loadingView.view atIndex:3];
if(loadingView.isViewLoaded && loadingView.view.window)
{
[self.view insertSubview:self.playPageViewController.view atIndex:4];
[self.playPageViewController setEditingPage:pageIndex];
[loadingView.view removeFromSuperview];
}