本文主要是介绍UITableView的常用代理方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
//设置行高
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
}
//分区
- (NSInteger)numberOfSectionsInTableV
{
}
//设置每个区有多少行共有多少行
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
}
//设置区域的名称
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
{
}
//是否允许行移动
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
}
//响应点击事件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
}
//小按钮的响应事件
- (void)tableView:(UITableView *)tableView accessoryButtonTappedFor
{
}
//删除按钮的名字
-(NSString*)tableView:(UITableView *)tableView titleForDeleteConfirmati
{
}
//设置滑动,
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
}
-(UITableViewCellEditingSt
{
//
//
}
设置CELL的样式
//
//
//
//
这篇关于UITableView的常用代理方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!