How do I add a UIActivityIndicatorView spinner circle into a UIBarButton, so that when a user taps on one of those buttons on the navigation bar, they see a spinner while the lo
pseudocode, i'm not going to check this in Xcode, but something like this should work:
UIActivityIndicatorView *act = [[UIActivityIndicatorView alloc] init]; act.frame = CGMakeRect(3,3,25,25); [myBarButton addSubview:act]; [act release];