- (void)viewDidLoad {
BlueViewController *blueController = [[BlueViewController alloc] [email protected]"BlueView" bundle:nil];
self.blueViewController = blueController; //blueViewController set to var above
[self.view insertSubview:blueController.view atIndex:0];
[blueController release];
[super viewDidLoad];
}
このコードはわかりません。どのように私は、サブビューblueControllerを挿入してself.blueViewControllerではないのですか?サブビューの挿入 - iPhone
また、私は自己を使用しないとどうしますか?自己がなぜ使われているのかは分かりません。現在のView ControllerのblueViewControllerプロパティをblueControllerインスタンスに設定していると解釈しますが、なぜそれを行うのですか?私が読んでいる本は、そのようなことを詳しく説明していません。これはかなり猿です。