我正在尝试将我的包转换为 NSData 以便我可以散列数据并让服务器在允许下载之前验证散列。唯一的问题是,当我尝试将包转换为 NSData 时,我Error: The operation couldn’t be completed. (Cocoa error 257.)
查找错误 257,这意味着由于权限问题而无法读取包。我做错了什么?谢谢你的帮助。
NSString *bundlePath = [[NSBundle mainBundle] resourcePath];
NSLog(@"%@", bundlePath);
NSError *error;
NSData *bData = [NSData dataWithContentsOfFile:bundlePath options:nil error:&error];
NSLog(@"Error: %@", [error localizedDescription]);