delegate and datasource methods for UITableView

后端 未结 12 1669
礼貌的吻别
礼貌的吻别 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:49

    Go to the link, it will describe about all the basics of UITableView.

    Primary Methods of UITableView are:

    – tableView:cellForRowAtIndexPath: // required method

    – tableView:numberOfRowsInSection: // required method

    – numberOfSectionsInTableView:
    
    – sectionIndexTitlesForTableView:
    
    – tableView:sectionForSectionIndexTitle:atIndex:
    
    – tableView:titleForHeaderInSection:
    
    – tableView:titleForFooterInSection:
    

    The required one are those whom you must have to include in the code. Don't forget to link the Table delegate and datasource with File Owner.

提交回复
热议问题