所以我有一个定时延迟动作,这样当一个人按下按钮时,它会在设定的时间数字(5秒)后显示一个标签
-(IBAction)start{
Desc.text = @"Text appears";
[self performSelector:@selector(delay) withObject:nil afterDelay:5.0];
}
-(void)delay{
Desc2.text = @"Text to appear in 5 seconds";
[self performSelector:@selector(delayA) withObject:nil afterDelay:5.0];
}
至于我试图制作的下一行代码,不是在预定的时间间隔后出现标签,而是试图让 Button 在 5 秒内出现。
任何人都可以帮忙吗?