• Stars
    star
    112
  • Rank 302,568 (Top 7 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 9 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

ViewController to describe the User how to turn on the Notifications

MHNotificationHelper

alt tag

Podfile

platform :ios, '6.0'
pod 'MHNotificationHelper'

##Usage

NSString *title = @"Benachrichtungen aktivieren";
NSString *descriptionString = @"Um die Notificationen verwenden zu können müssen sie die Banachrichtungen aktivieren.";
    
MHNotificationHelperObject *notificationObject = [MHNotificationHelperObject objectWithTitle:title
                                                                                 description:descriptionString
                                                                                     appIcon:nil
                                                                                     appName:@"meine App"];
    
MHNotificationHelperViewController *notificationHelper = [MHNotificationHelperViewController.alloc initWithNotification:notificationObject];
notificationHelper.bannerLabel.text = NSLocalizedString(@"Banner", nil);
    
[self presentViewController:notificationHelper animated:YES completion:nil];