iphone - hide and show intermittent uilabel and uinavigation title? -


hello people!!

i need made 1 uilabel thats shows , hide intermittently likes information message in main view...

i need same in title of navigation bar... possible?

any suggestions please...

sure.

supposing have:

@property (nonatomic, retain) iboutlet uilabel * mylabel; 

you can easily:

[self.mylabel sethidden:yes]; 

or

self.mylabel.hidden = yes; 

or

[self.mylabel sethidden:no]; 

or

self.mylabel.hidden = no; 

http://developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview/uiview.html


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -