Advertisement
Guest User

UiTableview

a guest
Sep 21st, 2012
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 100, 100); style:UITableViewStylePlain];  
  2. [self.view addSubview:tableView];
  3. tableView.delegate = self;
  4. tableView.dataSource = self;
  5. [tableView reloadData];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement