模拟器中的照片应用程序不起作用

时间:2014-07-30 12:02:28

标签: ios ios7 ios-simulator

所以我正在使用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;
}

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

很抱歉,如果我不应该发表评论 - 我只是想通了。对我来说,至少出于某种原因,我在OS X垃圾箱中找到了一个名为“7.1”的文件夹。将它恢复到“〜/库/应用程序支持/ iPhone模拟器/”修复了我的模拟器,现在照片应用程序运行完美。仍然不确定是什么原因导致了这个问题