ScrollView (contentScrollView) があり、後で各ページに UIViewController を持つ 20 ページを含める必要があります。
UIViewControllers ビューを contentScrollView に追加すると、これが得られます (右上隅のボタンは MainViewController からのものであるため、問題には影響しません)。
contentScrollView があるMainViewControllerクラスでこのコードを取得しました。
Slide1ViewController*test = [[Slide1ViewController alloc] init];
test.view.frame = CGRectMake(0, 0, 1024, 768);
[self.contentScrollView addSubview:[test view]];
フレームを設定した直後に、このような背景を追加すると:
test.view.backgroundColor = [UIColor blackColor];
次に、そのバーが上部にない黒い背景を取得しますが、Slide1ViewController.xib にあるラベルは表示されません。
誰かが私を助けてくれることを願っています。