gpt4 book ai didi

ios - 模拟器中的照片应用程序无法正常工作

转载 作者:行者123 更新时间:2023-11-29 02:46:36 31 4
gpt4 key购买 nike

所以我正在运行带有 iOS7.1 模拟器的 Xcode 5。当我加载模拟器并转到照片应用程序时,出现的就是这个。只是一个完全空白的应用程序。我知道我的模拟器上保存了图像。但是,即使我不这样做,它也应该说没有照片等,并且它们应该是一个标签栏。我试过重置内容设置。有任何想法吗? enter image description here

编辑:在我的个人应用程序中,我也有这个。虽然这只是我希望人们查看的东西,因为我怀疑它会影响外部内置应用程序:)

-(IBAction)selectPicturePressed:(id)sender
{
//Open a UIImagePickerController to select the picture
UIImagePickerController *imgPicker = [[UIImagePickerController alloc] init];
imgPicker.delegate = self;
imgPicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

[self.navigationController presentViewController:imgPicker animated:YES completion:nil];
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)img editingInfo:(NSDictionary *)editInfo
{

[picker dismissViewControllerAnimated:YES completion:nil];

//Place the image in the imageview
self.imgToUpload.image = img;
}

最佳答案

如果一切都失败了,删除 Xcode,包括 Simulator、Instruments 等。然后转到 Apples Developer Downloads https://developer.apple.com/downloads/index.action并找到最新版本的 Xcode。重新安装,它应该会修复模拟器照片应用程序。

关于ios - 模拟器中的照片应用程序无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25036329/

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