UIActivityIndicatorView not displaying in UIAlertV

2019-06-24 00:51发布

This question already has an answer here:

I need to UIActivityIndicatorView in UIAlertView when loading. But UIActivityIndicatorView is not displaying when I add this with UIActivityIndicatorView not displaying in UIAlertView - iOS7 in iOS 7. And this is working good in iOS 6 & lowest versions. Below is my code.

Is there any solution ? . thanks.

UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:nil message:@"\n\n\n\nloading.." delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil];
[alertView show];

UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
activityIndicator.frame= CGRectMake(50, 10, 37, 37);
activityIndicator.autoresizingMask = UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleLeftMargin;

[alertView addSubview:activityIndicator];

[activityIndicator startAnimating];

2条回答
Viruses.
2楼-- · 2019-06-24 01:27

You can not do customization with UIAlertView

Read this documentation

Best way is create custom UIView which look/feature like UIAlertView and add your activity indicator on this view.

查看更多
神经病院院长
3楼-- · 2019-06-24 01:48

Apple deprecated addSubview method in case of UIAlertView. So you can't add any subviews any more to AlertView, for example : activity indicator or some progress bar.

Here you can look at my question where people share custom Alerts which will support adding controls

UIAlertView addSubview in iOS7

查看更多
登录 后发表回答