Yeah! I mean, I am using notifications in my APP, but I need that every time there is a notification when the app is on background it generates a globe containing the notifications number, just like Facebook Messenger when you get a new message.
Here's my code for notifications:
// When creating the app var service = Ti.App.iOS.registerBackgroundService({url:'/ui/notification.js'}); // notification.js var notification = Ti.App.iOS.scheduleLocalNotification({ alertBody:"El sorteo esta apunto de comenzar.", alertAction:"Abrir", userInfo:{"some":"info"}, //sound:"pop.caf", date:new Date(new Date().getTime() + 9000) // after backgrounding });