ios-王云鹤 发送本地通知

来源:互联网 发布:义乌淘宝运营培训班 编辑:程序博客网 时间:2024/06/05 18:57

注意:发送本地通知的时候,必退出程序。

 

//实例化对象

UILocalNotification *notification =[[UILocalNotification alloc]init];

//定义时间,做延迟

NSDate *now =[[NSDate alloc] init ];

        //延迟十秒

notification.fireDate =[now addTimeInterval:10];

       //设定时区

notification.timeZone =[NSTimeZone defaultTimeZone];

       //设定角标

notification.appLicationIconBadgeNumber =1;

//设置内容

notification。alertBody =@"CSDN学院欢迎您!";

//发送通知

[[UIApplication sharedApplication] scheduleLocalNotification: notification];

 

 

原创粉丝点击