跳至主要内容

Settings

Settings 作为 NSUserDefaults 的包装器,后者是一个仅在 iOS 上可用的持久键值存储。

示例


参考

方法

clearWatch()

static clearWatch(watchId: number);

watchId 是在最初配置订阅时,由 watchKeys() 返回的数字。


get()

static get(key: string): any;

获取 NSUserDefaults 中给定 key 的当前值。


set()

static set(settings: Record<string, any>);

NSUserDefaults 中设置一个或多个值。


watchKeys()

static watchKeys(keys: string | array<string>, callback: () => void): number;

订阅通知,以便在 keys 参数指定的任何键的值在 NSUserDefaults 中发生更改时收到通知。返回一个 watchId 数字,可与 clearWatch() 一起使用以取消订阅。

注意:watchKeys() 按照设计会忽略内部 set() 调用,并且仅在 React Native 代码外部执行的更改时触发回调。