Since Appoxee SDK V2.3 you have the ability to set custom fields
In the same way you use tags to mark your users with different business logic information, you can add custom strings, numbers and date variables. The information you set on each user can later be used to segment the users and create personalized dynamic push messages.
For example:
- Add a user's first name to create personal push messages: " Hi John, we are...."
- Add a user's birthday and use it to create a periodic birthday campaign to congratulate users on their birthday
- Add a user's level in the game and use it to segment the users according to the level they have reached in your game
To do that you can create an NSMutableDictionary with the proper Key/Value pairs and send it with setNumericFields.
Each Method is called through "[ AppoxeeManager sharedManager ]".
- (void) setDateFields:(NSMutableDictionary*)datesDict;
(Date should be NSString under the following format : yyyy-MM-ddThh:mm:ss )
- (void) setNumericFields:(NSMutableDictionary*)numericValuesDict;
- (void) setStringFields:(NSMutableDictionary*)stringValuesDict;