用過ImagePickerController,應該比較熟悉這段代碼:
UIImagePickerController* imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType = sourceType;
if (popover) {
[popover release];
}
popover=[[UIPopoverController alloc]initWithContentViewController:imagePicker];
imagePicker.wantsFullScreenLayout = YES;
[popover presentPopoverFromRect: CGRectMake(vwPopover.frame.origin.x, vwPopover.frame.origin.y, vwPopover.size.width, 0)
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
[imagePickerrelease];
說句公道點的話,SDK提供ImagePickerController確實存在著數不盡數的bug,遠遠稱不上好用。不能設定它的frame,不能全屏,不能定製它的介面,不能連續拍照(每次只能拍一張照片),等等。
然而最近筆者又碰到了它的一個新的Bug。我有一個iPad應用,只支援人像模式(豎向),當程式使用PopOverController呈現ImagePickerController拍照介面時,相機鏡頭卻被反時針旋轉了90度。
但當我關閉螢幕(確定需要關屏),將旋轉螢幕至橫屏,再次彈出ImagePickerController,相機鏡頭卻顯示正常
在網上沒有搜到類似的bug報告。看來只是個例,不幸偏偏被筆者遇到了。
查看蘋果文檔,文檔說ImagePickerController只支援豎屏不支援橫屏。
問題是我的應用程式明明只支援豎屏啊?從2張圖片看,ImagePickerController明顯將裝置方向給判斷錯了,它將豎屏狀態識別為橫屏,而將橫屏狀態識別成了豎屏,這讓我抓破腦袋也沒想出是什麼道理。
解決的辦法只有在每次彈出ImagePickerController之前,檢查裝置方向,當裝置被識別為橫屏的時候(此時真正的方向卻應該是豎屏。唉,將錯就錯吧),將ImagePickerController的方向順時針旋轉90度:
if (sourceType==UIImagePickerControllerSourceTypeCamera
&& (UIDeviceOrientationIsLandscape([[UIDevice currentDevice]orientation]))) {
imagePicker.cameraViewTransform = CGAffineTransformMakeRotation(M_PI/2);
}
[popover presentPopoverFromRect: CGRectMake(vwPopover.frame.origin.x, vwPopover.frame.origin.y, vwPopover.size.width, 0)
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
這下終於解決。
摘自 kmyhy的專欄