Inherits from NSObject
Declared in UANamedUser.h

Overview

The named user is an alternate method of identifying the device. Once a named user is associated to the device, it can be used to send push notifications to the device.

Properties

identifier

The named user ID for this device.

@property (nonatomic, copy, nullable) NSString *identifier

Declared In

UANamedUser.h

Instance Methods

addTags:group:

Add tags to named user tags. To update the server, make all of your changes, then call updateTags.

- (void)addTags:(NSArray<NSString*> *)tags group:(NSString *)tagGroupID

Parameters

tags

Array of tags to add.

tagGroupID

Tag group ID string.

Declared In

UANamedUser.h

forceUpdate

Force updating the association or disassociation of the current named user ID.

- (void)forceUpdate

Declared In

UANamedUser.h

removeTags:group:

Removes tags from named user tags. To update the server, make all of your changes, then call updateTags.

- (void)removeTags:(NSArray<NSString*> *)tags group:(NSString *)tagGroupID

Parameters

tags

Array of tags to remove.

tagGroupID

Tag group ID string.

Declared In

UANamedUser.h

updateTags

Update named user tags.

- (void)updateTags

Declared In

UANamedUser.h