up vote 5 down vote favorite
1
share [g+] share [fb]

I want to create a UIAlertView that will say that "...in progress". It will also show that UIActivityindicatorView on it. Could you let me know how can I do that?

Thanks.

link|improve this question

38% accept rate
feedback

1 Answer

up vote 14 down vote accepted

Its pretty simple. Just create a UIActivityIndicatorView and add it as a subview to the UIAlertView.

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@" " message:@" " delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
    UIActivityIndicatorView *progress= [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(125, 50, 30, 30)];
    progress.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
    [alert addSubview:progress];
    [progress startAnimating];

    [alert show];
link|improve this answer
Thanks, it worked. – ebaccount Jun 3 '09 at 20:34
It's great answer but i'm wondering how can i dismiss it from the view if there is no button ? – Gaïl Sanctussy Sep 2 '11 at 8:48
1  
[alert dismissWithClickedButtonIndex:0 animated:YES]; – Brandon Schlenker Sep 2 '11 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.