tags:

views:

182

answers:

2

I want to show a UIActivityIndicator with text in a square box

+1  A: 

Call addSubview on your UIActivityIndicatorView instance and pass in a framed UILabel

Jacob Relkin
A: 

You can make use of UIAlertView which has title by adding the UIActivityIndicatorView as subview to it. then show/dismiss the UIAlertView when needed.

YNK