gpt4 book ai didi

ios - 媒体附件在 iOS 10 通知中裁剪图像

转载 作者:搜寻专家 更新时间:2023-10-30 23:15:01 26 4
gpt4 key购买 nike

iOS10 通知允许我们将图像添加为媒体附件。不幸的是,我还没有找到任何好的方法来控制附件在通知中的外观。

例如,我将这张图片添加为附件: enter image description here

它显示为:

enter image description here

我正在传递方形图像并希望避免图像裁剪(因为您可以看到猫的一只耳朵已被剪掉)。

我正在通过此代码段发送通知(作为本地通知):

    let content = UNMutableNotificationContent()
content.title = "Test notification"
content.body = "Test notification"
content.categoryIdentifier = "myNotificationCategory"

let attachement = try! UNNotificationAttachment(identifier: "image",
url: Bundle.main.url(forResource: "cat", withExtension: "png")!,
options: nil)

content.attachments = [ attachement ]
let request = UNNotificationRequest(identifier:requestIdentifier, content: content, trigger: nil)
UNUserNotificationCenter.current().delegate = self
UNUserNotificationCenter.current().add(request){(error) in
if (error != nil){
}
}

所以问题是:

  • 我可以避免图像裁剪吗? (如果不是 - 如何完全删除图像?)
  • 奖金问题:有没有办法在一个通知中显示 2 个媒体附件(当它折叠时)

谢谢!

最佳答案

关于ios - 媒体附件在 iOS 10 通知中裁剪图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39086878/

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