NSUserNotification customisable app icon?

2.1k Views Asked by At

I just noticed that iTunes' notification icon was replaced by album covers:

iTunes Notification

And it's app icon was a small one near the title, which is a bit different from the ones I knew of:

Normal Notification

Where I can only add images as part of the content, not the app icon.

Is there an undocumented NSUserNotification API that I didn't know?

1

There are 1 best solutions below

5
On BEST ANSWER

NVM, I found the answer.

iTunes use private APIs.

NSUserNotification *notification = [NSUserNotification new];
[notification setValue:anImage forKey:@"_identityImage"];