iOS Swift:Firebase远程配置获取值

时间:2017-09-13 10:04:59

标签: ios swift firebase firebase-remote-config

在应用程序运行时是否有方法或委托来捕获更新的值而不终止应用程序。我正在使用此方法来获取值并进行更新。

    RemoteConfig.remoteConfig().fetch(withExpirationDuration: duration) { [weak self] (status, error) in

        guard error == nil else {
            print("Got an error fetching remote values \(error!)")
            return
        }

        print ("Retrieved values from the cloud!")

        RemoteConfig.remoteConfig().activateFetched()

        guard let strongSelf = self else { return }
        strongSelf.updateWithRomteConfigValues()

    }

1 个答案:

答案 0 :(得分:0)

activateFetched()调用将确保获取最新的更新数据(来自默认值或远程配置),而无需终止应用程序。
我认为你案件中的问题来自于持续时间 尝试将持续时间设置为0(确保仅在开发人员模式为enabled时执行此操作)