Ios label enables with some time delay -
i keeping 2 labels hidden while loading. when pressed button enabled taking 5 secs time delay in ios. suggestions , sample coding regarding this.
hide labels this
label.hidden = true;
and in btn
action write code.
- (ibaction)btnpressed { [self performselector:@selector(showlabel) afterdelay:5]; } - (void)showlabel { label.hidden = false; }
Comments
Post a Comment