I want to create a new LocalNotification, so, when i try to create a new object:
LocalNotification ln = new LocalNotification();
My ln object has no attributes nor methods, and Mono shows me a tip saying that LocalNotification is deprecated and I should use iOS.LocalNotification instead.
When i try to use
iOS.LocalNotification ln = new iOS.LocalNotification()
Mono highlights LocalNotification with red, showing that iOS, does't contain a definition for it, in fact, it has no definitions at all.
Anyone has any idea on how to get LocalNotifications working on Unity3D 5?
↧