ios7中的cameraOverlayView隐藏默认相机工具栏,但在ios6中工作

ios7中的cameraOverlayView隐藏默认相机工具栏,但在ios6中工作,ios7,uiimagepickercontroller,Ios7,Uiimagepickercontroller,我在imagepicker中放置覆盖的代码在iOS6中有效,但在ios7中无效。在iOS6中,摄像头显示良好;看起来覆盖层在选择器和控件之间很好地开槽。在iOS7中,似乎覆盖层被放置在最顶层,隐藏了控件。我仍然可以点击拍照按钮 有没有办法把相机控制装置放回顶部?还是这是一只虫子 imagePicker =[[UIImagePickerController alloc] init]; overlayView = [[UIImageView alloc] initWithImage:[UIIma

我在imagepicker中放置覆盖的代码在iOS6中有效,但在ios7中无效。在iOS6中,摄像头显示良好;看起来覆盖层在选择器和控件之间很好地开槽。在iOS7中,似乎覆盖层被放置在最顶层,隐藏了控件。我仍然可以点击拍照按钮

有没有办法把相机控制装置放回顶部?还是这是一只虫子

imagePicker =[[UIImagePickerController alloc] init];  
overlayView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageString]];
imagePicker.cameraOverlayView = overlayView;
imagePicker.delegate=self;
imagePicker.title=@"Test";
imagePicker.showsCameraControls = YES;
[self presentModalViewController:imagePicker animated:YES ];
[imagePicker release];