first commit

This commit is contained in:
Kishikawa Katsumi
2011-11-20 11:12:51 +09:00
parent 8565d5e45d
commit fed1467455

View File

@@ -36,7 +36,7 @@ Remove items.
```
=====
### Using store object, easy to edit multiple items.
### Using store object, easier to edit multiple items
Instantiate store object with default service name.
@@ -68,5 +68,13 @@ Remove items.
[store synchronize]; // Write to keychain.
```
---
### Debug print
```objective-c
UICKeyChainStore *store = [UICKeyChainStore keyChainStoreWithService:@"com.kishikawakatsumi"];
NSLog(@"%@", store); // Print all keys and values for the service.
```
---
Easy as that. (See [UICKeyChainStore.h](https://github.com/kishikawakatsumi/UICKeyChainStore/blob/master/UICKeyChainStore.h) for all of the methods.)