2016年5月17日 星期二

Local Notification



簡單的練習:

網址:https://github.com/web8246/TestLocalNotification


注意:在appdelegate要設置下面這一段,不然會收不到通知歐


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    UIApplication *app = [UIApplication sharedApplication];
    
    UIUserNotificationType type = UIUserNotificationTypeAlert | UIUserNotificationTypeSound;
    
    UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:type categories:nil];
    
    [app registerUserNotificationSettings:settings];
    
    if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]) {
        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeSound|UIUserNotificationTypeBadge
                                                                                                              categories:nil]];

    }

沒有留言:

張貼留言