關於ImagePickerController豎屏顯示不正確問題

來源:互聯網
上載者:User

用過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的專欄

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.