Guest User

Untitled

a guest
Jul 21st, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. KeychainItemWrapper *wrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"Account Number" accessGroup:@"app.whatever.GenericKeychainSuite"];
  2. [wrapper setObject:@"com.some.ident" forKey:@"w/e"];
  3. NSString *string = [wrapper objectForKey:@"w/e"];
  4. NSLog(string);
  5. //Prints "com.some.ident"
Add Comment
Please, Sign In to add comment