AppDelegate.m 589 B

123456789101112131415161718192021222324252627
  1. //
  2. // AppDelegate.m
  3. // Example-iOS
  4. //
  5. // Created by kishikawa katsumi on 2015/01/15.
  6. // Copyright (c) 2015 kishikawa katsumi. All rights reserved.
  7. //
  8. #import "AppDelegate.h"
  9. #import <UICKeyChainStore/UICKeyChainStore.h>
  10. @interface AppDelegate ()
  11. @end
  12. @implementation AppDelegate
  13. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  14. UICKeyChainStore *keychainStore = [UICKeyChainStore keyChainStore];
  15. keychainStore[@"password"] = @"abcd1234";
  16. NSLog(@"%@", keychainStore[@"password"]);
  17. return YES;
  18. }
  19. @end