我做了什麼?iOS - 視頻不能僅在iOS7上通過iPhone旋轉?
我在玩視頻在擴展類的MPMoviePlayerViewController和已實施定向功能如下
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
if (toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown){
return FALSE;
}
else{
return TRUE;
}
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[self setControlsPositions:toInterfaceOrientation];
}
-(BOOL)shouldAutorotate
{
return YES;
}
我現在面臨什麼問題?
應用程序在iPhone和iPad上的iOS6上運行良好Almong使用iPad(使用iOS7),但視頻不通過安裝iOS7的iPhone旋轉。
這種問題的原因是什麼以及如何解決?
更新
我發現,在影片結束旋轉如果
setMovieSourceType
是 設置爲MPMovieSourceTypeUnknown
但是,當設置爲 `MPMovieSourceTypeStreaming
您的結論聽起來像是MediaPlayer框架中的一個錯誤(又一個錯誤)。我強烈建議使用最小化的示例提交錯誤報告。 – Till
@Till這似乎是一個不錯的選擇,但我在哪裏發送錯誤報告。我的意思是發送電子郵件到蘋果或在蘋果論壇發帖? –
關於[蘋果網站bug雷達服務](https://bugreport.apple.com)。另外,在[OpenRadar](http://openradar.appspot.com/)上也可能是一個好主意。 – Till