美文网首页
swift UIBackgroundTaskIdentifier

swift UIBackgroundTaskIdentifier

作者: 我会回来的 | 来源:发表于2022-01-21 20:02 被阅读0次

UIBackgroundTaskIdentifier : 进入后台后结束任务再挂起APP  

代码如下: 

var bgTask: UIBackgroundTaskIdentifier? 

//开始标记为支持后台执行counterTask = UIApplication.shared.beginBackgroundTask(expirationHandler: { () -> Voidin// 超过10分钟后,会进入到这里 })

//长时间执行任务,(进入后台后,大约有10分钟的执行时间,超过之后程序会挂起)

 //do something

//结束标记UIApplication.shared.endBackgroundTask(counterTask) 

相关文章

网友评论

      本文标题:swift UIBackgroundTaskIdentifier

      本文链接:https://www.haomeiwen.com/subject/rqfyhrtx.html