Keychain
Get and set data in the iOS Keychain
Requires Cordova plugin: cordova-plugin-ios-keychain
. For more info, please see the
Keychain plugin docs.
See also Secure Storage for more supported platforms.
Cordovaの問題で困っていますか?

本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、 エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- iOS
利用方法
React
Angular
import { Keychain } from '@ionic-native/keychain/ngx';
constructor(private keychain: Keychain) { }
...
this.keychain.set(key, value).then(() => {
this.keychain.get(key)
.then(value => console.log('Got value', value))
.catch(err => console.error('Error getting', err));
})
.catch(err => console.error('Error setting', err));