ios tableview返回的行数怎么设置
2个回答
展开全部
就是你打算让他有几行就返回多少,假设你要返回10行,就
return 10;
返回的行数就是你打算让这个表显示出几行的内容~
首先要 viewcontroller<UITabaleViewDatasource,UITableViewDelegate>,
然后
table.datasource = self;
table.delegate = self;
在
#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 10;//默认只有一个section,需要10行
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//indexPath包含 section,row两个信息
UITableViewCell *cell..//设置cell的属性
return cell;//返回每一行的cell
}
return 10;
返回的行数就是你打算让这个表显示出几行的内容~
首先要 viewcontroller<UITabaleViewDatasource,UITableViewDelegate>,
然后
table.datasource = self;
table.delegate = self;
在
#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 10;//默认只有一个section,需要10行
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//indexPath包含 section,row两个信息
UITableViewCell *cell..//设置cell的属性
return cell;//返回每一行的cell
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询