delegate and datasource methods for UITableView

后端 未结 12 1665
礼貌的吻别
礼貌的吻别 2020-12-13 00:50

Can anyone list delegate methods and data source methods for UITableView?

Are delegates and data sources methods are same for UITableView?<

12条回答
  •  一个人的身影
    2020-12-13 01:34

       tableView:accessoryButtonTappedForRowWithIndexPath:   
       tableView:didDeselectRowAtIndexPath:   
       tableView:didEndEditingRowAtIndexPath:   
       tableView:didSelectRowAtIndexPath:   
       tableView:editingStyleForRowAtIndexPath:   
       tableView:heightForFooterInSection:   
       tableView:heightForHeaderInSection:   
       tableView:heightForRowAtIndexPath:  
       tableView:indentationLevelForRowAtIndexPath:   
       tableView:shouldIndentWhileEditingRowAtIndexPath:   
       tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:   
       tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:   
       tableView:viewForFooterInSection:   
       tableView:viewForHeaderInSection:   
       tableView:willBeginEditingRowAtIndexPath:   
       tableView:willDeselectRowAtIndexPath:   
       tableView:willDisplayCell:forRowAtIndexPath:   
       tableView:willSelectRowAtIndexPath:  
    

    have a look

提交回复
热议问题