I searched for this and I cannot find the documentation about this banner / notification / warning ... but I would really like to implement it. In case my description in words is not clear, here is a picture of what I would like to do:
1 : 
I tried using this code:
UILocalNotification *note = [[UILocalNotification alloc] init]; [note setAlertBody:[NSString stringWithFormat:@"%@ scanned", result]]; [note setAlertAction:@"New Scanned Image"]; [[UIApplication sharedApplication] presentLocalNotificationNow:note];
And it worked fine, so it displayed a notification in the notification center, but there was no banner warning.
So what classes do I use for this?
Thanks!
source share