Skip to content

Instantly share code, notes, and snippets.

@kwylez
Created September 24, 2010 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwylez/595390 to your computer and use it in GitHub Desktop.
Save kwylez/595390 to your computer and use it in GitHub Desktop.
- (void)loadView {
UIView *mainView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
self.view = mainView;
[mainView release];
UITableView *tblView = [[UITableView alloc] initWithFrame:CGRectMake(0 55, 320, 300) style:UITableViewStylePlain];
tblView.dataSource = self;
tblView.delegate = self;
[self.view addSubView:tblView];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment