0

我的独立消息应用程序保存这样的图像:

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"];

有谁知道这是什么问题?也没有错误信息。

4

1 回答 1

0

非常简单的答案:保存的图像文件比允许的大。缩小后就可以了

于 2017-03-26T16:39:59.050 回答