当iam从一个UIView移动到另一个UiView时,我需要在didSelectRowatIndexPath事件中显示activityindicator。只要加载另一个uiview的过程需要,它就会显示。
我该怎么做?
答案 0 :(得分:0)
尝试以下代码,但我举例说明你应该修改它&根据您的需要使用:
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];
尝试。祝你好运。