1

我想显示一个警报视图,说明该过程正在进行中,并希望在警报视图中添加 UIActivityIndi​​catorView 以显示该过程正在进行中,而不是在警报视图之外。我怎么做?任何指导都会有所帮助。

4

2 回答 2

2
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@" "Process in Progress..." " ];
UIActivityIndicatorView *progress= [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(125, 50, 30, 30)];
progress.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
[alert addSubview:progress];
[progress startAnimating];
[alert show];
于 2012-12-12T11:04:58.960 回答
0

我宁愿建议你使用MBProgressHud

如果您需要显示一些图像和文字,请使用它

于 2012-12-17T09:10:37.943 回答