杂记小知识

获取授权通知

/// UNAuthorizationOptionBadge:The ability to update the app’s badge.
/// UNAuthorizationOptionSound:The ability to play sounds.
/// UNAuthorizationOptionAlert:The ability to display alerts.
/// UNAuthorizationOptionCarPlay:The ability to display notifications in a CarPlay environment.
if (@available(iOS 10.0, *)) {
        [[UNUserNotificationCenter currentNotificationCenter]
         requestAuthorizationWithOptions:UNAuthorizationOptionAlert 
         | UNAuthorizationOptionBadge 
         | UNAuthorizationOptionSound 
         completionHandler:completion];
    }

iOS系统版本判断

  • OC
if @available(iOS 10.0, *) {
  // TODO:
}

*Swift

if #available(iOS 10.0, *) {
  // TODO:
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容