1

As we know , when we receive a push notification with newsstand or my server had publish a new magazine, the newsstand shelf will show the newsstand icon of my app with a new tag, my question is : the new tag is auto made by Apple or by me when add a newsstand issue ? if new tag is aotu made by Apple , if the localized language is chinese or japanese, the "New" tag will be changed "新规" or other local words? Thank you very much!

enter image description here

jin
  • 2,145
  • 5
  • 27
  • 44

1 Answers1

0

To add the "New" badge,

UIApplication *app = [UIApplication sharedApplication];
[app setApplicationIconBadgeNumber:[app applicationIconBadgeNumber]+1];
Revanth
  • 113
  • 12