我的独立消息应用程序保存这样的图像:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *filePath = [documentsPath stringByAppendingPathComponent:[imageName stringByAppendingString:@".png"]];
然后将 PNG 文件加载到 MSStickers 中并正确显示在 MSStickerBrowserView 中。当我尝试将贴纸放在对话中时,贴纸会在一秒钟后消失。它适用于资源文件夹中的我的测试图像:
[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"];
有谁知道这是什么问题?也没有错误信息。