ios 本地提醒

来源:互联网 发布:mac自带抠图 编辑:程序博客网 时间:2024/05/17 22:41

    UILocalNotification *noti =[UILocalNotificationnew];

    noti.alertTitle =@"hahah";

    noti.alertBody =@"iiiî11111111";

    noti.applicationIconBadgeNumber =9;

    noti.soundName =UILocalNotificationDefaultSoundName;

    noti.category =@"CATEGORY";

    noti.fireDate =[NSDatedateWithTimeIntervalSinceNow:10];

     [[UIApplicationsharedApplication]scheduleLocalNotification:noti];






   UIUserNotificationSettings *seting =[UIUserNotificationSettingssettingsForTypes:UIUserNotificationTypeBadge |UIUserNotificationTypeSound |UIUserNotificationTypeAlertcategories:nil];

    [application registerUserNotificationSettings:seting];




0 0