我想在程序启动时放置一个文本标签,某种文本指令仅持续5秒钟,然后消失。我可以在iOS中知道怎么做吗?这是我的代码示例。
NSString *displayText = [[NSString alloc] initWithFormat: @"Please select your item.",
startup.text = displayText ;
最佳答案
在下面的语句之后,
startup.text = displayText ;
启动
NSTimer
,它将在一定时间后触发。[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(hideLabel:) userInfo:nil repeats:NO];
在
hideLabel:
方法中,将其隐藏。