在我的应用程序中,我UITableView
有很多. 现在我想做这个分页首先必须包含. 我是概念分页的新手。我不知道如何开始这个我参考了一些教程但没有用。subview
UIScrollView
cells
UITableView
10 cells
任何人都可以帮助我如何开始分页UITableView
。
这就是创建UITableView
和拥有一些委托方法的方式
self.tableView=[[UITableView alloc] initWithFrame:CGRectMake(25,150,730, [listofItems count]*160) style:UITableViewStylePlain];
self.tableView.delegate=self;
self.tableView.dataSource=self;
self.tableView.scrollEnabled = NO;
self.tableView.separatorColor = [UIColor clearColor];
[testscroll addSubview:self.tableView];
[self.tableView reloadData];