我试图在长时间的休息之后接手奥杰-C和皮涅茨,因此,Im 重读Apress 起点-3发展。
现在,我 struggl辛地争取在以下几个方面发挥领导作用:
#import "BlueViewController.h"
............
@synthesize blueViewController;
......
- (void)viewDidLoad {
BlueViewController *blueController = [[BlueViewController alloc]
initWithNibName:@"BlueView" bundle:nil];
self.blueViewController = blueController;
[self.view insertSubview:blueController.view atIndex:0];
//Why don t we use the following instead of the above?
//[self.view insertSubview:self.blueViewController.view atIndex:0]?
[blueController release];
[superViewDidLoad];
}
对我来说,似乎更合乎逻辑的是,由于我们刚刚指定了蓝色主计长来自食其力,我们应当使用后者而不是前者。 例子背后的理由是什么? 我的错误是什么?