Advertisement
Guest User

Untitled

a guest
Apr 5th, 2013
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (void)loadView
  2. {
  3.     [super loadView];
  4.    
  5.     NSArray *nibs = [[NSArray alloc] initWithObjects:
  6.                      [[NSBundle mainBundle] loadNibNamed:@"Facsimile" owner:self options:nil],
  7.                      [[NSBundle mainBundle] loadNibNamed:@"Email" owner:self options:nil],
  8.                      [[NSBundle mainBundle] loadNibNamed:@"Memorandum" owner:self options:nil],
  9.                      [[NSBundle mainBundle] loadNibNamed:@"ProjectMemo" owner:self options:nil], nil];
  10.    
  11.  
  12.     self.view = [nibs objectAtIndex:0];
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement