ios – 无法写入containerURLForSecurityApplicationGroupIdentifier?

ios – 无法写入containerURLForSecurityApplicationGroupIdentifier?,第1张

概述在下面的例子中,我没有写入错误,但在读取时,数据长度为0.为什么我不能写入共享容器? + (UIImage *)read { NSData *data = [NSData dataWithContentsOfFile:[self getPath]]; NSLog(@"Data length: %d", data.length); UIImage *image = [UIIm 在下面的例子中,我没有写入错误,但在读取时,数据长度为0.为什么我不能写入共享容器?

+ (UIImage *)read {    NSData *data = [NSData dataWithContentsOffile:[self getPath]];    NSLog(@"Data length: %d",data.length);    UIImage *image = [UIImage imageWithContentsOffile:[self getPath]];    NSLog(@"%@",image);    return image;}+ (voID)write:(UIImage *)image {    Nsstring *pngfilePath = [self getPath];    NSData *data1 = [NSData dataWithData:UIImagePNGRepresentation(image)];    [data1 writetofile:pngfilePath atomically:YES];}+ (Nsstring *)getPath {    NSURL *containerUrl = [[NSfileManager defaultManager] containerURLForSecurityApplicationGroupIDentifIEr:@"group.me.app"];    Nsstring *pngfilePath = [[containerUrl absoluteString] stringByAppendingPathComponent:@"current.png"];    NSLog(@"%@",pngfilePath);    return pngfilePath;}
解决方法 您正在混淆URL和文件路径.使用[containerUrl path]而不是[containerUrl absoluteString],或使用dataWithContentsOfURL / writetoURL而不是dataWithContentsOffile / writetofile. 总结

以上是内存溢出为你收集整理的ios – 无法写入containerURLForSecurityApplicationGroupIdentifier?全部内容,希望文章能够帮你解决ios – 无法写入containerURLForSecurityApplicationGroupIdentifier?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1077280.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存