可以在iOS推送通知的缩略图中更改图像宽高比及其大小吗?
https://www.tutorialspoint.com/cprogramming/c_pointer_arithmetic.htm
That is the current Push Notification I get...(来自Apple WWDC的图片,我想可以获得相同的渲染效果?!)
答案 0 :(得分:0)
我假设您正在使用UNNotificationAttachment
在锁定屏幕上显示图片,对吗?如果没有,你可能应该针对这种特殊情况。在其中,您可以使用UNNotificationAttachmentOptionsThumbnailClippingRectKey
,您可以在其中指定裁剪矩形。
如果您尝试获取非标准宽高比,可以指定类似CGRectMake(x: 0, y: 0, width: 1, height: 0.7)
的内容。这将使图像以其原始高度的70%裁剪,并将底部切掉30%。您还可以使用x
和y
值来播放裁剪矩形从其左上角的原点。
当然,您可以在Apple's docs中详细了解它。