私は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];
}