- 在使用NSURL遇到无法加载文件的情况时:
NSURL *ns_url = [NSURL fileURLWithPath:@"/Users/gc_mac/Desktop/earring.jpg"];
NSImage *image = [[NSImage alloc] initWithContentsOfURL:ns_url];
NSLog(@"NSImage == %@", image);
- 请检查工程中的 .entitlements 文件,App Sandbox 属性参数是否被设置为YES,设置为 YES 则无法访问:
作者: CH520