For the complete documentation index, see llms.txt. This page is also available as Markdown.

User Attributes

Attach custom user attributes to reports from your iOS app so they show on the Luciq dashboard. Covers setting, reading, and removing attributes.

You can assign custom attributes to your users and they will show up on your Luciq dashboard with each report. These attributes can later be used to filter reports in your dashboard.

To add a new user attribute, use the following method.

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

You can also retrieve or remove the current value of a certain user attribute.

Or retrieve all user attributes.

Last updated