I want to put a text label during the start up of a program, some sort of a text instruction for 5 second only and disappear. May I know how to do so in iOS ? Here is my code example.
NSString *displayText = [[NSString alloc] initWithFormat: @"Please select your item.",
startup.text = displayText ;
After the following statement,
start a
NSTimerthat will fire after certain duration.In
hideLabel:method, you hide that.