iOS应用首次推出

前端之家收集整理的这篇文章主要介绍了iOS应用首次推出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在用户第一次打开我的应用时显示欢迎屏幕.有什么方法可以检查 Swift中第一次启动应用程序?

解决方法

斯威夫特4
func isAppAlreadyLaunchedOnce()->Bool{
    let defaults = UserDefaults.standard
    if let _ = defaults.string(forKey: "isAppAlreadyLaunchedOnce"){
        print("App already launched")
        return true
    }else{
        defaults.set(true,forKey: "isAppAlreadyLaunchedOnce")
        print("App launched first time")
        return false
    }
}

注意:在用户重新安装应用程序并首次启动后,此方法将返回false.

原文链接:https://www.f2er.com/iOS/333606.html

猜你在找的iOS相关文章