- (UNNotificationRequest *)createNotificationRequestWithWeekday:(NSInteger)weekday
withHour:(NSInteger)hour
witMinute:(NSInteger)minute
identifier:(NSString *)identifier
withTitle:(NSString *)title
withContent:(NSString *)contentStr{
// 1.创建通知内容
UNMutableNotificationContent *content = [[UNMutableNotificationContent alloc] init];
content.sound = [UNNotificationSound defaultSound];
content.title = title;
content.body = contentStr;
//content.badge = @(++kApplication.applicationIconBadgeNumber); // 不显示角标
content.userInfo = @{@"kLocalNotificationID":kLockInNotification,@"identifier":identifier};
// 2.触发模式 几点几分 每周重复 ()
NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
dateComponents.hour = hour;
dateComponents.minute = minute;
dateComponents.weekday = weekday;
UNCalendarNotificationTrigger *trigger = [UNCalendarNotificationTrigger triggerWithDateMatchingComponents:dateComponents repeats:YES];
// 4.设置UNNotificationRequest
UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:identifier content:content trigger:trigger];
return request;
}
每个星期的星期几几点几分发起本地通知
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- //MARK:发起通知 func scheduleNotification(itemID:Int){//如果已存在...
- 推送通知和NSNotification区别:NSNotification是抽象的,不可见的推送通知是可见的(能用肉...
- 创建本地通知,并给通知设置一个传递的信息 在AppDelegate代理方法中接收到通知: 应用在后台时,点击通知进...
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...
- 版本记录 前言 我们做APP很多时候都需要推送功能,以直播为例,如果你关注的主播开播了,那么就需要向关注这个主播的...