我已经创建了一个用于在 Xcode 中生成 QRCode 的应用程序。我的问题是我只能通过模拟器查看此 QRCode,我不知道如何将这些生成的 QRCode 保存在我计算机内的某个位置。请帮我.......
问问题
83 次
1 回答
0
选项1)你可以这样保存,
NSFileManager *fileManager = [NSFileManager defaultManager];
NSData *myImageData = UIImagePNGRepresentation(myImage);
[fileManager createFileAtPath:@"/Users/Me/Desktop/myimage.png" contents:myImageData attributes:nil];
或者
选项 2) 保存在模拟器/应用程序中,然后使用 finder 访问
NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES) objectAtIndex:0];
这是路径(在 Mac 上),您可以在其中找到与您的设备安装或您在模拟器上部署的应用程序相关的所有内容:
/Users/“您的家庭名称”/Library/Application Support/iPhone Simulator/您使用哪个版本(4.3.2“这是我的”)/Applications
于 2013-02-19T17:53:16.430 回答