한국어

Coding

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


글 수 101

https://stackoverflow.com/questions/37938771/uilocalnotification-is-deprecated-in-ios10


39

It may be a question in advance but I wonder what to use instead of UILocalNotification in iOS10. I am working on an app which has deployment target iOS8 so will it be ok to use UILocalNotification?

98

Yes, you can use UILocalNotification, old APIs also works fine with iOS10, but we had better use the APIs in the User Notifications framework instead. There are also some new features, you can only use with iOS10 User Notifications framework.

This also happens to Remote Notification, for more information: Here.

New Features:

  1. Now you can either present alert, sound or increase badge while the app is in foreground too with iOS 10
  2. Now you can handle all event in one place when user tapped (or slided) the action button, even while the app has already been killed.
  3. Support 3D touch instead of sliding gesture.
  4. Now you can remove specifical local notification just by one row code.
  5. Support Rich Notification with custom UI.

It is really easy for us to convert UILocalNotification APIs to iOS10 User Notifications framework APIs, they are really similar.

I write a Demo here to show how to use new and old APIs at the same time: iOS10AdaptationTips .

For example,

With Swift implementation:

  1. import UserNotifications

    ///    Notification become independent from UIKit
    import UserNotifications
  2. request authorization for localNotification

        let center = UNUserNotificationCenter.current()
        center.requestAuthorization(options: [.alert, .sound]) { (granted, error) in
            // Enable or disable features based on authorization.
        }
  3. schedule localNotification

  4. update application icon badge number

    @IBAction  func triggerNotification(){
        let content = UNMutableNotificationContent()
        content.title = NSString.localizedUserNotificationString(forKey: "Elon said:", arguments: nil)
        content.body = NSString.localizedUserNotificationString(forKey: "Hello Tom!Get up, let's play with Jerry!", arguments: nil)
        content.sound = UNNotificationSound.default()
        content.badge = UIApplication.shared().applicationIconBadgeNumber + 1;
        content.categoryIdentifier = "com.elonchan.localNotification"
        // Deliver the notification in 60 seconds.
        let trigger = UNTimeIntervalNotificationTrigger.init(timeInterval: 60.0, repeats: true)
        let request = UNNotificationRequest.init(identifier: "FiveSecond", content: content, trigger: trigger)
    
        // Schedule the notification.
        let center = UNUserNotificationCenter.current()
        center.add(request)
    }
    
    @IBAction func stopNotification(_ sender: AnyObject) {
        let center = UNUserNotificationCenter.current()
        center.removeAllPendingNotificationRequests()
        // or you can remove specifical notification:
        // center.removePendingNotificationRequests(withIdentifiers: ["FiveSecond"])
    }

Objective-C implementation:

  1. import UserNotifications

    // Notifications are independent from UIKit
    #import <UserNotifications/UserNotifications.h>
  2. request authorization for localNotification

    UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
    [center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert)
                          completionHandler:^(BOOL granted, NSError * _Nullable error) {
                              if (!error) {
                                  NSLog(@"request authorization succeeded!");
                                  [self showAlert];
                              }
                          }];
  3. schedule localNotification

  4. update application icon badge number

    UNMutableNotificationContent *content = [[UNMutableNotificationContent alloc] init];
    content.title = [NSString localizedUserNotificationStringForKey:@"Elon said:"
                                                        arguments:nil];
    content.body = [NSString localizedUserNotificationStringForKey:@"Hello Tom!Get up, let's play with Jerry!"
                                                       arguments:nil];
    content.sound = [UNNotificationSound defaultSound];
    
    // 4. update application icon badge number
    content.badge = [NSNumber numberWithInteger:([UIApplication sharedApplication].applicationIconBadgeNumber + 1)];
    // Deliver the notification in five seconds.
    UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger
                                                triggerWithTimeInterval:5.f
                                                repeats:NO];
    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@"FiveSecond"
                                                                        content:content
                                                                        trigger:trigger];
    /// 3. schedule localNotification
    UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
    [center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
        if (!error) {
            NSLog(@"add NotificationRequest succeeded!");
        }
    }];

Go to here for more information: iOS10AdaptationTips.

updated

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'time interval must be at least 60 if repeating'

let trigger = UNTimeIntervalNotificationTrigger.init(timeInterval: 60, repeats: true)
  • You are missing argument name in "center.requestAuthorization([.alert, .sound])", it should be " center.requestAuthorization(options: [.alert, .sound])" – MQoder Sep 20 '16 at 9:52
  • I have this set up in my app exactly as written above. The notification only appeared one time. I ran it again with a different notification and now I dont receive any notifications. Any ideas? – Nate4436271 Oct 19 '16 at 18:37
  • @MQoder I‘ve updated the answer. – ElonChan Oct 26 '16 at 3:50 
  • @Nate4436271 I‘ve updated the answer. – ElonChan Oct 26 '16 at 3:50
  • 2
    @Zennichimaro: you can implement both UILocalNotification (iOS 9) and UNNotificationRequest(iOS 10) in your code. Use this to test which iOS is running: if (floor(NSFoundationVersionNumber) >= NSFoundationVersionNumber10_0) { \\ run iOS 10 code } else { // run iOS 9 code } – KoenJan 22 '17 at 15:57
8

Apple have done it again, the correct implementation is: AppDelegate.swift

if #available(iOS 10.0, *) {
        let center = UNUserNotificationCenter.currentNotificationCenter()
        center.requestAuthorizationWithOptions([.Alert, .Sound]) { (granted, error) in
            // Enable or disable features based on authorization.
        }
    } else {
        // Fallback on earlier versions
    }

and don't forget to add

import UserNotifications
2

Local Notifications for iOS 10 in Objetcive-C

If you are programming for a while I am sure you are familiar with the UILocalNotification class, and right now with the arriving of iOS 10 you can see that UILocalNotification is been deprecated. For a detailed implementation visit this blog post

https://medium.com/@jamesrochabrun/local-notifications-are-a-great-way-to-send-notifications-to-the-user-without-the-necessity-of-an-b3187e7176a3#.nxdsf6h2h

1

swift 4

if #available(iOS 10.0, *) {
        let center = UNUserNotificationCenter.current()
        center.requestAuthorization(options: [.alert, .badge, .sound])  { (granted, error) in
            // Enable or disable features based on authorization.
        }
    } else {
        // REGISTER FOR PUSH NOTIFICATIONS
        let notifTypes:UIUserNotificationType  = [.alert, .badge, .sound]
        let settings = UIUserNotificationSettings(types: notifTypes, categories: nil)
        application.registerUserNotificationSettings(settings)
        application.registerForRemoteNotifications()
        application.applicationIconBadgeNumber = 0

    }

MARK: - DELEGATES FOR PUSH NOTIFICATIONS

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    let installation = PFInstallation.current()
    installation?.setDeviceTokenFrom(deviceToken)
    installation?.saveInBackground(block: { (succ, error) in
        if error == nil {
            print("DEVICE TOKEN REGISTERED!")
        } else {
            print("\(error!.localizedDescription)")
        }
    })
}

func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
    print("application:didFailToRegisterForRemoteNotificationsWithError: %@", error)
}

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any]) {
    print("\(userInfo)")

    // PFPush.handle(userInfo)
    if application.applicationState == .inactive {
        PFAnalytics.trackAppOpenedWithRemoteNotificationPayload(inBackground: userInfo, block: nil)
    }
}

번호
제목
글쓴이
101 Objective-c JSON Parsing 제이슨 파싱 Dictionary Array 구분 기호
admin
4498   2019-06-06
 
100 사용자 정의 컨테이너보기 컨트롤러 전환 xcode objective c
admin
4697   2019-05-25
 
99 Xcode 글꼴 크기 변경
admin
7040   2019-05-25
 
98 실습 Objective C Code 연습 실행 온라인 무료 사이트 회원가입 불필요 광고 무
admin
4434   2019-05-22
 
97 초보) delegate 는 왜필요한가 이것만알면 간단 쉽게 이해 objective C 날로먹기가능
admin
4287   2019-05-22
 
96 What is a Composite Object? objective c 강의 사이트 아주 훌륭한 유익한 좋은
admin
9884   2019-05-22
 
95 Segue를 통한 뷰 컨트롤러 전환과 데이터 교환 방법. Delegate 가장 정확하게 설명 쉽게
admin
4335   2019-05-21
 
94 hide/show text fields with auto layouts and programmatically objective c
admin
5137   2019-05-19
 
93 Text field 숨기기
admin
4371   2019-05-19
 
92 Objective-C (전역) 상수 선언 및 사용
admin
5695   2019-05-18
 
91 키체인 uuid keychaine 설명 및 사용
admin
4378   2019-04-29
 
90 개발자 등록 인증서 다운로드 푸시 인증요청서 등록 인증서 다운
admin
5115   2019-04-27
 
89 iOS Application 개발 시작하기 개발자 등록, 등록요청서 , 인증서 다운
admin
5269   2019-04-25
 
88 iOS Application 개발 시작하기 프로비저닝 생성, XCode 프로젝트 설정
admin
5463   2019-04-25
 
87 Easy APNs Provider 사용방법 iOS Push발송 테스트
admin
7278   2019-04-23
 
86 IOS Push php
admin
4594   2019-04-20
 
85 How to rename an XCode project
admin
4817   2019-04-20
 
84 Push Notifications and Local Notifications – Tutorial
admin
5219   2019-04-19
 
83 Push Notifications and Local Notifications (Xcode 9, iOS 11)
admin
5137   2019-04-19
 
82 A macOS, Linux, Windows app to test push notifications on iOS and Android
admin
4394   2019-04-19
 
81 Push Notifications by Tutorials iOS developers
admin
5464   2019-04-19
 
80 Sample app in Swift Objective C receive VoIP push notifications 푸시 테스트 앱
admin
5723   2019-04-19
 
79 How to create Apple Certificates - Step 1: CSR file creation CSR 생성
admin
4986   2019-04-19
 
78 Voice Over IP (VoIP) Best Practices Xcode
admin
8276   2019-04-19
 
77 ios 개발자 계정 만들기 지불 방법 핵심 키포인트 인증서요청 앱등록 앱출시 요점만 쉽게 설명
admin
4676   2019-04-17
 
76 HybridApp Cordova 코르도바 란
admin
5519   2019-04-15
 
75 Linphone rebuild
admin
4477   2019-04-09
 
74 How to rename Xcode project
admin
4946   2019-04-08
 
73 Part 2: Implementing PushBots SDK for your iOS App
admin
5045   2019-04-08
 
72 Part 1: Preparing Certificates + Provisioning Profile (iOS)
admin
4917   2019-04-08
 
71 ios push notification pushkit xcode swift
admin
4486   2019-04-08
 
70 Xcode 9, Swift 4 Remote Push Notification Setup W/ Firebase
admin
5269   2019-04-08
 
69 VoIP Push Notifications using iOS Pushkit
admin
5669   2019-04-08
 
UILocalNotification is deprecated in iOS10
admin
5115   2019-04-08
https://stackoverflow.com/questions/37938771/uilocalnotification-is-deprecated-in-ios10 Ask Question 39 24 It may be a question in advance but I wonder what to use instead of UILocalNotification in iOS10. I ...  
67 아이폰 UserNotifications 사용법
admin
5155   2019-04-08
 
66 아이폰 VoIP Services Certificate 생성 방법 - 서비스 인증서 생성하는 방법
admin
5125   2019-04-08
 
65 [아이폰] PushKit 앱 개발 방법
admin
4791   2019-04-08
 
64 PushKit이란 ? 푸시 알람을 앱에 보내는 것
admin
7930   2019-04-08
 
63 OSX 키체인접근 p12 파일 인증서, 개인키를 PEM 파일로 openssl
admin
5054   2019-04-08
 
62 APNs 애플 푸시 앱 개발 push 키 등록 만들기 가장 잘된 동영상 설명
admin
6235   2019-04-08
 
61 푸시 메시지를 활성화하기 위한 전제 조건 사전작업
admin
4473   2019-04-06
 
60 푸시 메시지 구성
admin
4423   2019-04-06
 
59 APNS 또는 GCM 사용을 위한 앱 구성 방법 순서
admin
5043   2019-04-06
 
58 iOS 인증서 및 프로비저닝 프로파일 만들기
admin
8354   2019-04-04
 
57 Mac용 키체인 접근이란 무엇입니까?
admin
5408   2019-04-04
 
56 Apple Push Notification Service 시작하기 AWS 샘플앱 이용 푸시 테스트
admin
5368   2019-04-04
 
55 iOS Notification 만들기 push 푸시
admin
7240   2019-04-04
 
54 Mac OS X에서 Java(JDK) 설치 및 삭제하기
admin
4627   2019-04-03
 
53 iOS12 Chat, Learn Swift 4.2, build iOS 12 Chat Application 스터디
admin
4960   2019-04-03
 
52 IOS 앱이 시스템 수준 전화 통합을 위해 CallKit을 사용하는 방법과 통화
admin
8908   2019-04-02
 
51 CallKit Tutorial for iOS 콜킷 사용
admin
9861   2019-04-02
 
50 Enhancing VoIP Apps with CallKit - Apple WWDC 2016 콜킷
admin
4947   2019-04-02
 
49 iOS Beginner : Messaging & Phone call (Swift 4 & Xcode 9)
admin
5189   2019-04-01
 
48 맥 개발 환경 설정하기
admin
5236   2019-04-01
 
47 Homebrew 설치 (MacOSX) 동영상
admin
4970   2019-04-01
 
46 개발자를 위한 맥(Mac) 정보 - 패키지관리자 Homebrew
admin
4828   2019-04-01
 
45 installing MacPorts on macOS Sierra (plus installing ffmpeg)
admin
4995   2019-04-01
 
44 MacPort 의 소개와 간단 사용법 - OSX 환경 세팅하기
admin
4947   2019-04-01
 
43 MacPorts 설치 및 사용법
admin
5153   2019-04-01
 
42 MacPorts to use system for compiling, installing, and managing open source software. file
admin
5177   2019-04-01
 
41 애플앱개발 앱스토어등록 개발자사이트등록 앱튠스콘넥트사이트등록
admin
5103   2019-03-24
 
40 애플 개발자 사이트 apple 앱스토어에 앱을 등록하는 순서
admin
5655   2019-03-24
 
39 맥 모하비 설치 VM Vmware Workstation Pro 15 설치 ebay 싸게구매
admin
5451   2019-03-23
 
38 포인터에 익숙해지기 포인터 정리
admin
4897   2019-01-20
 
37 푸시 알림을 수신하려면 응용 프로그램이 Apple 푸시 알림 서비스 APN
admin
5490   2019-01-10
 
36 아이폰 카톡 푸시 알림이 안올때! 상세안내 체크
admin
24227   2019-01-10
 
35 매우 천천히 반응하는 Apple iPhone XS Max 터치 스크린을 수정하는 방법, 터치 스크린 응답 지연됨 문제 해결 가이드
admin
6128   2018-11-09
 
34 Apple iPhone XS Max 셀룰러 데이터가 작동하지 않는 문제 해결 가이드
admin
9776   2018-11-09
 
33 Apple iPhone XS Max에서 지속적으로 충돌하는 응용 프로그램을 수정하는 방법 문제 해결 가이드
admin
5831   2018-11-09
 
32 Apple iPhone XS Max 작동하지 않는 얼굴 ID를 수정하는 방법 문제 해결 가이드
admin
7113   2018-11-09
 
31 작동하지 않는 Apple iPhone XS Max 마이크를 해결 방법 문제 해결 가이드
admin
6188   2018-11-09
 
30 iPhone XS Max를 문제 해결, iPhone 과열 문제 해결 [문제 해결 가이드]
admin
6531   2018-11-09
 
29 Apple iPhone XS Max 배터리가 빨리 소모되면 어떻게해야합니까? 문제 해결 가이드 및 배터리 절약 팁
admin
6721   2018-11-09
 
28 iPhone XS Max 시스템 가이드 소프트 강제 재시작 모든 설정 네트워크 설정 초기화
admin
8693   2018-11-08
 
27 IPAD IPHONE X 아이패드 아이폰 전문가 리뷰 트러블슈팅 문제해결
admin
5100   2018-11-08
 
26 IPad Air와 iPad Pro의 차이점
admin
5566   2018-11-08
 
25 IPHONE 아이폰 푸쉬 노티피케이션 동작 안되는 현상 해결방법
admin
5501   2018-11-08
 
24 IOS12 업데이트 후 작동하지 않는 Apple iPhone X 알림 수정 방법
admin
6134   2018-11-08
 
23 아이폰 푸시 노티피케이션 온/오프
admin
5381   2018-11-08
 
22 Objective-C 입문
admin
5687   2018-06-01
 
21 프로토콜
admin
5645   2018-06-01
 
20 카테고리
admin
5570   2018-06-01
 
19 메소드의 포인터
admin
5642   2018-06-01
 
18 선택기
admin
5561   2018-06-01
 
17 클래스 형
admin
5634   2018-06-01
 
16 클래스 메소드
admin
5619   2018-06-01
 
15 가시성
admin
5690   2018-06-01
 
14 정적 형식
admin
5593   2018-06-01
 
13 오브젝트의 해방
admin
12429   2018-06-01
 
12 이니셜 라이저
admin
5788   2018-06-01
 
11 재정
admin
10533   2018-06-01
 
10 상속
admin
5698   2018-06-01
 
9 메소드
admin
6118   2018-06-01
 
8 클래스의 선언과 정의
admin
6280   2018-06-01
 
7 가져 오기
admin
6145   2018-06-01
 
6 Objective-C는?
admin
6172   2018-06-01
 
5 [프로그래밍]아이폰 SDK와 Xcode 통합 개발환경
admin
6346   2018-06-01
 
4 [프로그래밍]Objective-C 셀렉터(@selector)
admin
6285   2018-06-01
 
3 VMWare를 이용한 mac os를 설치방법
admin
7534   2018-05-11
 
2 mac OS 여러가지 맥 버젼 별 설명 구분 시에라 까지
admin
13952   2018-05-11