NativeScript 首选项
允许您的应用程序支持原生设置
npm i --save nativescript-preferences

Twitter Follow

NativeScript 首选项

此插件允许在 iOS 和 Android 上实现原生首选项的保存/加载

iOS 前提条件

Android 前提条件

安装

描述您的插件安装步骤。理想情况下,它会像这样

tns plugin add nativescript-preferences

用法

    var prefs = new Preferences();

//Get existing value
prefs.getValue("name_preference");

//Set value
prefs.setValue("name_preference", "some new text");

API

属性 默认值 描述
openSettings(): any; 打开原生设置面板
getValue(key: string): any; 获取首选项的值
setValue(key: string, value: any): void; 将传入的值设置为首选项

许可证

Apache 许可证版本 2.0,2004 年 1 月