こんにちは私は、さまざまなコンポーネントの高さと幅をパーセンテージで計算することにより、すべての方向に対して1つのコードを作成しようとしています。縦向きの場合は320x460フレームになりますが、横向きモードに変更すると問題が発生します。同じサイズになりますが、実際には460x320になります。
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
NSLog(@"%f-%f",self.view.frame.size.width,self.view.frame.size.height);
}
他の機能も試しましたが、まだ成功していません
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{
NSLog(@"%f-%f",self.view.frame.size.width,self.view.frame.size.height);
}