Slide 14
Slide 14 text
iOS-specific notifications setup
if (UIDevice.CurrentDevice.CheckSystemVersion (8, 0)) {
var notificationSettings = UIUserNotificationSettings.GetSettingsForTypes (
UIUserNotificationType.Alert | UIUserNotificationType.Badge |
UIUserNotificationType.Sound, null
);
app.RegisterUserNotificationSettings (notificationSettings);
}