I used code below to add UIActivityView on UIAlertView
UIAlertView * messageBox = [[UIAlertView alloc] initWithTitle: @"Connecting to App Store..."
message: @"\n\n\n"
delegate: nil
cancelButtonTitle: @"Cancel"
otherButtonTitles: nil];
UIActivityIndicatorView *aActivity=[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
[messageBox addSubview:aActivity];
[aActivity setHidden:false];
[aActivity startAnimating];
[messageBox show];
it works well on ios 5,6 but on ios7 UIActivityIndicatorView does not display.
I changed UIActivityIndicatorViewStyleWhiteLarge
to UIActivityIndicatorViewStyleGray
UIActivityIndicatorViewWhite
None works
Your comments are welcome