Skip to content

Instantly share code, notes, and snippets.

@aeternas
Last active January 19, 2017 08:49
Show Gist options
  • Save aeternas/d15f78619394d9262fc0461354f714be to your computer and use it in GitHub Desktop.
Save aeternas/d15f78619394d9262fc0461354f714be to your computer and use it in GitHub Desktop.
Parse (Было)
(lldb) po notification.request.content
<UNNotificationContent: 0x1740f3780; title: (null), subtitle: (null), body: У вас 8 новых сообщений, categoryIdentifier: , launchImageName: , peopleIdentifiers: (
), threadIdentifier: , attachments: (
), badge: (null), sound: <UNNotificationSound: 0x1740be360>, hasDefaultAction: YES, shouldAddToNotificationsList: YES, shouldAlwaysAlertWhileAppIsForeground: NO, shouldLockDevice: NO, shouldPauseMedia: NO, isSnoozeable: NO, fromSnooze: NO, darwinNotificationName: (null), darwinSnoozedNotificationName: (null)
// USERINFO PARSE
(lldb) po notification.request.content.userInfo
{
aps = {
alert = "\U0423 \U0432\U0430\U0441 8 \U043d\U043e\U0432\U044b\U0445 \U0441\U043e\U043e\U0431\U0449\U0435\U043d\U0438\U0439";
sound = default;
};
message = "\U0423 \U0432\U0430\U0441 8 \U043d\U043e\U0432\U044b\U0445 \U0441\U043e\U043e\U0431\U0449\U0435\U043d\U0438\U0439";
origin = allychat;
parsePushId = MrVSW6p5Ew;
"unread_count" = 8;
}
OneSignal (Стало)
// USERINFO OneSignal
{
aps = {
alert = "\U0423 \U0432\U0430\U0441 8 \U043d\U043e\U0432\U044b\U0445 \U0441\U043e\U043e\U0431\U0449\U0435\U043d\U0438\U0439";
sound = default;
};
custom = {
a = {
alert = "\U0423 \U0432\U0430\U0441 8 \U043d\U043e\U0432\U044b\U0445 \U0441\U043e\U043e\U0431\U0449\U0435\U043d\U0438\U0439";
message = "\U0423 \U0432\U0430\U0441 8 \U043d\U043e\U0432\U044b\U0445 \U0441\U043e\U043e\U0431\U0449\U0435\U043d\U0438\U0439";
origin = allychat;
sound = default;
"unread_count" = 8;
};
i = "9eb6e84f-fd85-494e-8e1d-478394445cb2";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment