Skip to content

Commit

Permalink
Pushwoosh iOS SDK 5.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Jun 6, 2019
1 parent 32edcc6 commit 34a927d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#import <UserNotifications/UserNotifications.h>
#endif

#define PUSHWOOSH_VERSION @"5.13.1"
#define PUSHWOOSH_VERSION @"5.15.0"


@class PushNotificationManager;
Expand Down Expand Up @@ -171,6 +171,25 @@ typedef void (^PushwooshErrorHandler)(NSError *error);
*/
+ (NSDictionary *)incrementalTagWithInteger:(NSInteger)delta;

/**
Creates a dictionary for extending Tag’s values list with additional values
Example:
NSDictionary *tags = \@{
\@"Alias" : aliasField.text,
\@"FavNumber" : \@([favNumField.text intValue]),
\@"List" : [PWTags appendValuesToListTag:@[ @"Item1" ]]
};
[[PushNotificationManager pushManager] setTags:tags];
@param array Array of values to be added to the tag.
@return Dictionary to be sent as the value for the tag
*/
+ (NSDictionary *)appendValuesToListTag:(NSArray<NSString *> *)array;

@end

/**
Expand Down Expand Up @@ -227,6 +246,13 @@ typedef void (^PushwooshErrorHandler)(NSError *error);

#endif

/**
Set custom application language. Must be a lowercase two-letter code according to ISO-639-1 standard ("en", "de", "fr", etc.).
Device language used by default.
Set to nil if you want to use device language again.
*/
@property (nonatomic) NSString *language;

/**
Initializes PushNotificationManager. Usually called by Pushwoosh Runtime internally.
@param appCode Pushwoosh App ID.
Expand Down
Binary file modified Framework/Pushwoosh.framework/Versions/A/Pushwoosh
Binary file not shown.
Binary file modified Framework/PushwooshBeacons.framework/Versions/A/PushwooshBeacons
Binary file not shown.
Binary file modified Framework/PushwooshGeozones.framework/Versions/A/PushwooshGeozones
Binary file not shown.

0 comments on commit 34a927d

Please sign in to comment.