Re: UIActivityIndicatorView to send an action

2022-10-14 Thread Carl Hoefs via Cocoa-dev
Ah yes! I just used UITapGestureRecognizer and voila! It's working! Much cleaner this way. Thanks! -Carl > On Oct 14, 2022, at 1:45 PM, Richard Somers wrote: > > Why not use a gesture recognizer with the UIActivityIndicatorView to send an > action to a target object? > > Richard > > >> On

Re: UIActivityIndicatorView to send an action

2022-10-14 Thread Carl Hoefs via Cocoa-dev
The idea just occurred to me to place a clear UIButton atop the spinner and have that send the action. That will work but just seems kinda hacky... > On Oct 14, 2022, at 12:30 PM, Carl Hoefs via Cocoa-dev > wrote: > > Got an iPhone app enhancement request today to be able to tap the spinning

Re: UIActivityIndicatorView

2013-01-15 Thread Luca Ciciriello
Understood, thanks. Luca. On Jan 15, 2013, at 4:31 PM, Uli Kusterer wrote: > On Jan 15, 2013, at 3:18 PM, Luca Ciciriello > wrote: >> I use an activity indicator in order to show, in my UIViewController, a >> "work in progress" activity. >> >> here my code >> >> - (void)myMethod >> { >>

Re: UIActivityIndicatorView

2013-01-15 Thread Uli Kusterer
On Jan 15, 2013, at 3:18 PM, Luca Ciciriello wrote: > I use an activity indicator in order to show, in my UIViewController, a "work > in progress" activity. > > here my code > > - (void)myMethod > { > [[self activityElab] setHidden:NO]; > [[self activityElab] startAnimating]; > >