ある UIView から別の UiView に移動するときに、didSelectRowatIndexPath イベントで activityindicator を表示する必要があります。別の uiview をロードするプロセスにかかる限り、表示されるはずです。
これどうやってするの?
ある UIView から別の UiView に移動するときに、didSelectRowatIndexPath イベントで activityindicator を表示する必要があります。別の uiview をロードするプロセスにかかる限り、表示されるはずです。
これどうやってするの?
以下のコードを試してみてください。ただし、必要に応じて変更して使用する必要がある例を示しています。
alert= [[UIAlertView alloc] initWithTitle:@"Loading\nPlease Wait..." message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil];
[alert show];
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
indicator.center = CGPointMake(150, 100);
[indicator startAnimating];
[alert addSubview:indicator];
クラスをプッシュした後、次の行を使用してインジケーターを閉じます。
[alert dismissWithClickedButtonIndex:0 animated:YES];
試す。幸運を祈ります。