iOS添加本地方法 - Go语言中文社区

iOS添加本地方法


添加本地通知需要进入项目的project->Capabilities把Push Notifications打开,并添加一下方法,注意ios8后,需要添加注册,才能得到授权

// 设置本地通知
-(void)registerLocalNotificationWithTime:(NSTimeInterval)startTime notifiTitle:(NSString *)title notifiText:(NSString *)text key:(NSString *)key
{
    //避免重复添加
    [self cancelLocalNotificationWithKey:key];
    
    if (startTime <= 0)//返回的时间点小于当前时间,不弹
    {
    return;
    }
    

    UILocalNotification *notification = [[UILocalNotification alloc] init];
    // 设置触发通知的时间
    NSDate *fireDate = [NSDate dateWithTimeIntervalSince1970:startTime];
    fireDate = [NSDate dateWithTimeIntervalSinceNow:startTime];
    
    notification.fireDate = fireDate;
    // 时区
    notification.timeZone = [NSTimeZone defaultTimeZone];
    // 通知内容
    notification.alertBody = text;
    notification.applicationIconBadgeNumber ++;
    // 通知被触发时播放的声音
    notification.soundName = UILocalNotificationDefaultSoundName;
    // 通知参数
    
    NSDictionary *notificationDic = @{@"key":key ?:@"", @"title":title?:@"",@"content":text?:@""};
    
    NSDictionary *userDict = [NSDictionary dictionaryWithObject:notificationDic forKey:@"userInfo"];
    notification.userInfo = userDict;
    
    // ios8后,需要添加这个注册,才能得到授权
    if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {
        UIUserNotificationType type =  UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound;
        UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:type
                                                                                 categories:nil];
        [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
        // 通知重复提示的单位,可以是天、周、月
//        notification.repeatInterval = NSCalendarUnitDay;
    } else {
        // 通知重复提示的单位,可以是天、周、月
//        notification.repeatInterval = NSDayCalendarUnit;
    }
    
    // 执行通知注册
    [[UIApplication sharedApplication] scheduleLocalNotification:notification];
}

在appDelegate中:

        UILocalNotification *localNotif =
        [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
        if (localNotif) {
            
            NSDictionary *notDic = [localNotif.userInfo objectForKey:@"userInfo"];
            //    ASSERT_Class(notDic, NSDictionary);
            NSString *notKey = [notDic safe_stringForKey:@"key"];//直播 master_id
            self.liveKey = notKey;

            [__LiveManager jumptoNextPageWithMasterId:notKey vc:__lolita.topVC completeBlock:nil];
            // 更新显示的徽章个数
            NSInteger badge = [UIApplication sharedApplication].applicationIconBadgeNumber;
            badge--;
            badge = badge >= 0 ? badge : 0;
            [UIApplication sharedApplication].applicationIconBadgeNumber = badge;
        }
版权声明:本文来源简书,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://www.jianshu.com/p/9fa9a530839e
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-01-08 21:42:30
  • 阅读 ( 1214 )
  • 分类:

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢