iOS 10 새로운 알림 메커니즘 에 그림 을 추가 하 는 방법 에 대한 자세 한 설명
2.UNNotificationService 확장 실현
제 가 쓰 는 건 swift 입 니 다.
//
// NotificationService.swift
// NotificationServiceExtension
//
// Created by Heyuan Li on 17/2/26.
// Copyright © 2017 fenbi. All rights reserved.
//
import UserNotifications
class NotificationService: UNNotificationServiceExtension {
var contentHandler: ((UNNotificationContent) -> Void)?
var bestAttemptContent: UNMutableNotificationContent?
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
self.contentHandler = contentHandler
bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
if let bestAttemptContent = bestAttemptContent {
// Modify the notification content here...
bestAttemptContent.title = " "
if let imageURLString = bestAttemptContent.userInfo["image"] as? String,
let URL = URL(string: imageURLString)
{
downloadAndSave(url: URL) { localURL in
if let localURL = localURL {
do {
let attachment = try UNNotificationAttachment(identifier: "image_downloaded", url: localURL, options: nil)
bestAttemptContent.attachments = [attachment]
} catch {
print(error)
}
}
contentHandler(bestAttemptContent)
}
}
}
}
override func serviceExtensionTimeWillExpire() {
// Called just before the extension will be terminated by the system.
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
if let contentHandler = contentHandler, let bestAttemptContent = bestAttemptContent {
contentHandler(bestAttemptContent)
}
}
private func downloadAndSave(url: URL, handler: @escaping (_ localURL: URL?) -> Void) {
let task = URLSession.shared.dataTask(with: url, completionHandler: {
data, res, error in
var localURL: URL? = nil
if let data = data {
let ext = (url.absoluteString as NSString).pathExtension
let cacheDirs = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask)
if cacheDirs.count > 0 {
let cacheDir = cacheDirs[cacheDirs.count - 1]
/// TODO tutor cache
/// TODO md5 extension
let url = cacheDir.appendingPathComponent("123").appendingPathExtension(ext)
if let _ = try? data.write(to: url) {
localURL = url
}
}
}
handler(localURL)
})
task.resume()
}
}
3.Push 를 보 낼 때"mutable-content"를 추가 합 니 다.
{
"aps": {
"alert": "instant message from CRM",
"sound": "default",
"mutable-content": 1
},
......
"image": "https://g0.fbcontent.cn/api/tutor/images/153c6c68411747f.jpg"
}
이게 중요 해 요.마지막 으로 실행 하면 자동 으로 그림 이 표 시 됩 니 다.
기본적으로 https 만 가능 하 며 http 그림 을 표시 하려 면 ATS 관련 설정 을 스스로 설정 해 야 합 니 다.
총결산
이상 은 이 글 의 모든 내용 입 니 다.본 논문 의 내용 이 iOS 개발 자 여러분 에 게 어느 정도 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Swift의 패스트 패스Objective-C를 대체하기 위해 만들어졌지만 Xcode는 Objective-C 런타임 라이브러리를 사용하기 때문에 Swift와 함께 C, C++ 및 Objective-C를 컴파일할 수 있습니다. Xcode는 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.