Skip to content

Instantly share code, notes, and snippets.

@lvandyk
Last active January 10, 2016 11:29
Show Gist options
  • Save lvandyk/e5878cc56d013a2400aa to your computer and use it in GitHub Desktop.
Save lvandyk/e5878cc56d013a2400aa to your computer and use it in GitHub Desktop.
LIVXUserClass-iOS Example Usage
// Example Usage
User *user = [User currentUser];
user.firstName = @"John";
user.lastName = @"Doe";
user.accessToken = @"theaccesstoken";
user.isLoggedIn = YES;
[user save]; // Saved to persistence!
NSLog(@"First name is %@", [User currentUser].firstName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment