gpt4 book ai didi

ios - 让应用程序在执行代码之前等待几秒钟?

转载 作者:可可西里 更新时间:2023-11-01 03:27:44 24 4
gpt4 key购买 nike

我正在尝试在我的应用程序中实现一种截取屏幕截图的方法。我希望 UINavigationBar 提示向上滑动 - 截图 - 然后 UINavigationBar 可以轻松向下滑动。我需要应用程序在某些代码行之间等待/保持几秒钟,因为这样第一个动画就没有时间完成:

[self.navigationController setNavigationBarHidden:YES animated:YES ];
[self.navigationController setNavigationBarHidden:NO animated:YES];

那么,有没有一种延迟执行的方法,比如像这样为按钮设置动画:

[UIView animateWithDuration:0.5 delay:3 options:UIViewAnimationOptionCurveEaseOut animations:^{self.myButton.frame = someButtonFrane;} completion:nil];

问候

最佳答案

您可以使用:

double delayInSeconds = 2.0; // number of seconds to wait
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
/***********************
* Your code goes here *
***********************/
});

关于ios - 让应用程序在执行代码之前等待几秒钟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19079869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com