莫封洛 2015-04-10
iOS技巧之Notification,BadgeView
摘要iOS可方便的在应用图标上添加badgeView,有时候在应用程序内,我们也需要添加像图标上的公色数字的提醒,本文主要内容:1、iOS提醒三种方式,自带的图标上的badge,alert,notification;2、自定义badgeView
iOS提醒iOSBadgeiOS自定义BadgeViewiOSNotification
Tips:自定义badgeView需要此类库,不能使用ARC---badgeView封装类库下载115网盘礼包码:5lb7f4o6
自定义效果
一、iOS提醒三种方式,自带的图标上的badge,alert,notification
在需要添加通知处,添加
UILocalNotification*notification=[[UILocalNotificationalloc]init];
notification.repeatInterval=0;//设置提醒重复的次数
notification.timeZone=[NSTimeZonedefaultTimeZone];//设置时区
//设置badge
notification.applicationIconBadgeNumber=14;//设置number的值
notification.soundName=UILocalNotificationDefaultSoundName;//设置通知声音
//设置Alert
notification.alertAction=@"打开";
notification.alertBody=@"提醒";
notification.hasAction=YES;
[[UIApplicationsharedApplication]scheduleLocalNotification:notification];
二、自定义badgeView
1、将下载的JSBadgeView解压缩后添加到工程中,添加QuartzCore.framework
2、假设要在页面中的button上添加一个Badge,在页面上添加一个button,创建映射
@property(retain,nonatomic)IBOutletUIButton*button;
在需要添加badge处添加代码
//此处alignment有九种状态可设置,一般放在右上角
JSBadgeView*badgeView=[[JSBadgeViewalloc]initWithParentView:self.buttonalignment:JSBadgeViewAlignmentTopRight];
//设置badgeView中的text值,不一定是数字
badgeView.badgeText=@"12";
//还可设置badgeView的text字体,圆圈的颜色,阴影颜色等,参照JSBadgeView.h中的属性进行自定义
[self.buttonaddSubview:badgeView];
[self.viewsendSubviewToBack:self.button];