User Attributes

Luciq.setUserAttribute("True", withKey: "Logged in")
Luciq.setUserAttribute("False", withKey: "Completed IAP")[Luciq setUserAttribute:@"True" withKey:@"Logged in"];
[Luciq setUserAttribute:@"18" withKey:@"Age"];Last updated

Luciq.setUserAttribute("True", withKey: "Logged in")
Luciq.setUserAttribute("False", withKey: "Completed IAP")[Luciq setUserAttribute:@"True" withKey:@"Logged in"];
[Luciq setUserAttribute:@"18" withKey:@"Age"];Last updated
let loggedIn = Luciq.userAttribute(forKey: "Logged in")
Luciq.removeUserAttribute(forKey: "Logged in")NSString *loggedIn = [Luciq userAttributeForKey:@"Logged in"];
[Luciq removeUserAttributeForKey:@"Logged in"];let allUserAttributes = Luciq.userAttributes()NSDictionary *allUserAttributes = [Luciq userAttributes];