在我的应用中,用户可以创建图像,然后将其用作iMessage中的标签。
我的问题是我无法显示存储在文档目录中的已创建图像。
我的问题与这个问题非常相似-SO Question,但就我而言,解决方案指出并没有帮助。
这是我提取图像的代码:
func getImages(finished: () -> Void) {
imageData.removeAll()
let imageNames = keyboardUserDefaults!.stringArray(forKey: "Created stickers")
for imageName in imageNames! {
// let imagePath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0]
let filePath = (NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0] as NSString).appendingPathComponent(imageName)
// imageData.append(imagePath + "/" + imageName)
imageData.append(filePath)
}
print("Image Data - ", imageData)
finished()
}
这是我将其应用于StickerView的方法:
func configure(usingImageName imagePath: String) {
let urlToImage = URL(fileURLWithPath: imagePath)
do {
let description = NSLocalizedString("", comment: "")
let sticker = try MSSticker(contentsOfFileURL: urlToImage, localizedDescription: description)
print("Sicker is here - ", sticker)
stickerView.sticker = sticker
}
catch {
fatalError("Failed to create sticker: \(error)")
}
}
但是我得到一个空白的视图,没有贴纸。
在单元格内部打印显示:
Sicker is here - <MSSticker-<0x280393640> imageFileURL file:///var/mobile/Containers/Data/PluginKitPlugin/32AF9E44-F2F1-4FD1-80B5-E8E4B6C6E338/Documents/F54067B8-18DA-4737-8ED3-B716E368AF6E.png localizedDescription >
当我使用Bundle.main.path
在Xcode项目中的文件夹中设置图像时,而不是在“文档目录”中显示图像。
答案 0 :(得分:0)
我找到了问题的根源
Application Extensions无法访问默认的Documents Directory文件夹。
解决方案:
使用应用组并在保存和检索图像时为图像创建路径:
let url = fileManager.containerURL(forSecurityApplicationGroupIdentifier: "YOUR_APP_GROUP_NAME")?.appendingPathComponent("image.png")
之后,您可以轻松地在“应用程序扩展”中访问图像。
希望这对以后的人有帮助!