使用UIPasteboard从自定义键盘复制图像时,在发送时显示白色背景

时间:2017-01-04 06:27:02

标签: ios swift custom-keyboard uipasteboard

我创建了一个带有一些png图像的自定义键盘。所有这些png图像都具有透明/清晰的背景。但是当我们复制该图像并尝试在任何消息传递App中发送它时,它显示的是白色背景。如果我尝试其他键盘应用程序,它没有任何背景工作正常。我正在使用此代码:

请检查:Screenshot with white background 并且:Screenshot without background when sending image from other apps

let pasteboard = UIPasteboard.general
let pngdata = UIImagePNGRepresentation((button.imageView?.image)!)
let imgg = UIImage(data: pngdata!)!
pasteboard.image = imgg

0 个答案:

没有答案