gpt4 book ai didi

iOS SDK 4.0 & 4.1 添加图像到模拟器

转载 作者:可可西里 更新时间:2023-11-01 03:26:03 27 4
gpt4 key购买 nike

我看到很多关于如何将图像添加到模拟器的问题,并且看到了两个答案:

  • 点击并按住以在手机上的 Mobile Safari 中保存
  • 将文件添加到 100Apple(或其他)文件夹

两者都适用于 iOS SDK 4.0 之前的所有内容。这些相同的方法不再适用于我,也适用于我见过的任何其他人。我尝试使用在某处找到的以下代码块手动将图像写入照片库:

- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo{
UIAlertView *alert;

if (error) // Unable to save the image
alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:@"Unable to save image to Photo Album."
delegate:self cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
else // All is well
alert = [[UIAlertView alloc] initWithTitle:@"Success"
message:@"Image saved to Photo Album."
delegate:self cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
[alert release];
}

但是每次都出错。那么是不是模拟器的写权限有问题呢?或者只是一些错误?我已经更新到 iOS 4.1 SDK,希望它得到修复,但没有。

最佳答案

我正在使用带有 SDK 3.2、4.0.1 和 4.1 的 Xcode 3.2.4。以下步骤对我有用:1.启动模拟器2. 将图片从 Finder 拖到模拟器,模拟器总是会启动 Safari 来显示图片3. 单击并按住单击几秒钟,然后您将看到一个带有“保存图像”按钮的弹出窗口

关于iOS SDK 4.0 & 4.1 添加图像到模拟器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3286519/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com