uiimagepickercontroller - cameraOverlayView in ios7 hides default camera toolbar, but works in ios6 -
my code place overlay in imagepicker works in ios6, not in ios7. in ios6 camera display fine; appears overlay slotted between picker , controls nicely. in ios7, seems overlay placed on top layer, hiding controls. can still click on take photo button though.
is there anyway put camera controls on top? or bug?
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];
Comments
Post a Comment