ページ全体から端の 10px のマージンを差し引いたページに UIScroll ビューを配置しようとしています。これは私がやったことです。ただし、デバイスの回転に合わせて UIScrollView のサイズを変更し、10px のマージンを維持することも必要です。これまでの私のコードは次のとおりです。
// Get the screen dimensions, considering the status bar
scrollWidth = self.getScreenSize.width // evaluates to 1004 in landscape & 748 in portrait
scrollHeight = self.getScreenSize.height // evaluates to 728 in landscape & 984 in portrait
scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(10,10,scrollWidth,scrollHeight)];
[scrollView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];
... other stuff to load scrollview content ...
[self.view addSubview:scrollView];
[scrollView setAutoresizingMask.....] 行を削除すると、scrollView は完全に収まりますが、デバイスの回転には反応しません。
私は何を間違っていますか?