ios - Adding a text and progress icon to navigation bar -


i add status navigation bar. example, in whatsapp, when user changes alert settings, display "updating" text , progress icon on navigation bar, shown in below image. how do that?

enter image description here

simple add separate view in xib, image below

enter image description here

and create iboutlet of components, , can below

self.navigationitem.titleview=self.progressview; //progressview iboutlet of container view progressview 

in viewdidload

then can create function like

-(void)showprogress{    self.lblupdate.text=@"updating...";    [self.indicator startanimating]; }  -(void)hideprogress{    self.lblupdate.text=@"updated";    [self.indicator stopanimating]; } 

make sure make view background color clearcolor, , make indicator hidewhenstopped.

hope helps.


Comments

Popular posts from this blog

java - JavaFX 2 slider labelFormatter not being used -

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -