Hey guys, I have a UIImagePickerController that I'm using to select a custom wallpaper in a Cocos2D game.
However in the new iOS 4.1 (iPod touch 4th gen) it's not crashing, but it's not presenting the photo selector either.
Is anyone else experiencing something like this?
-(void)pickPhoto:(UIImagePickerControllerSourceType)sourceType{
UIImagePickerController *picker = [[UIImagePickerController alloc]init];
picker.delegate = self;
picker.sourceType = sourceType;
picker.wantsFullScreenLayout = YES;
[picker presentModalViewController:picker animated:YES];
[[[CCDirector sharedDirector] openGLView] addSubview:picker.view];
}