UICKeyChainStore を応用して Titanium mobile の KeyChain モジュール TiKeyChainStore を書きました。
kishikawakatsumi/TiKeyChainStore · GitHub
下記のように使います。
var store = tikeychainstore.createKeychainStore({ service: 'com.kishikawakatsumi.ti' // optional }); store.setKeyChainItem ({ key: 'userame', value: 'kishikawakatsumi@mac.com' }); store.setKeyChainItem ({ key: 'password', value: 'password1234' }); store.synchronize; Ti.API.info(store.description); // debug print
Titanium のモジュールは初めて書いたので、詳しい方に添削してもらえるとうれしいです。