gpt4 book ai didi

swift - 更改 iOS 10 通知图像缩略图大小

转载 作者:搜寻专家 更新时间:2023-10-31 21:47:13 26 4
gpt4 key购买 nike

我是 Xcode 和 Swift 的新手。我想发送一个显示图像的本地通知。我使用 UNNotificationAttachment 附加来自以下代码的图像:

let content = UNMutableNotificationContent()
content.title = "Testing"
content.body = "Testing rich notification"
let attachement = try! UNNotificationAttachment(identifier: "image", url: Bundle.main.url(forResource: "myImg", withExtension: "png")!, options: nil)
content.attachments = [attachement]
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 10, repeats: false)
let request = UNNotificationRequest(identifier: "TenSecond", content: content, trigger: trigger) // Schedule the notification.
let center = UNUserNotificationCenter.current()
center.add(request) { (error : Error?) in
if error != nil {}
}

我可以在通知横幅的右侧看到一个缩略图,但它太小了。我想增加缩略图的大小,使通知看起来像这样:

Notification With larger thumbnail

这可能吗?

最佳答案

不,这不可能,iOS 决定了最大尺寸。

关于swift - 更改 iOS 10 通知图像缩略图大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41276347/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com