. IB, UIViewController . loadView!
loadView .
, viewDidLoad. :
- (void)loadView {
CGRect frame = [[UIScreen mainScreen] applicationFrame];
baseView = [[UIView alloc] initWithFrame:frame];
[self setView:baseView];
[baseView release];
}
! . . viewDidLoad , .
- (void)viewDidLoad {
[super viewDidLoad];
msg = [[UILabel alloc] initWithFrame:CGRectMake(0, 200, 320, 50)];
[msg setText:@"Your profile is empty!"];
[[self view] addSubview:msg];
[msg release];
}
:)