有没有办法让我在 5 秒后展示或关闭我的 ViewController?也许像......如果用户在 5 秒后按下按钮,则会出现新视图。
有什么解决方案或建议吗?抱歉,我没有在网上找到解决方案。
我的代码不起作用:
-(IBAction)lol:(id)sender {
[self performSelector:@selector(dissMissviewController) withObject:self afterDelay:3];
}
-(void)dissMissViewController{
[self dismissModalViewControllerAnimated:YES];
}
谢谢。