+ (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?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)