cocoa touch - iPhone: How to set the application badge, when the app is closed/in background? -
is possible set application badge, while app in background mode or closed? haven't found anything, yet.
from within application can use applicationiconbadgenumber
property of uiapplication
set badge number:
[uiapplication sharedapplication].applicationiconbadgenumber = 1;
if want change badge without user launching app, need use push notification service. push notification service programming guide should have info need.
Comments
Post a Comment