当我从一个 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];
尝试。祝你好运。