其他分享
首页 > 其他分享> > IOS中IndexPath

IOS中IndexPath

作者:互联网

在tableview中,indexPath可以理解为一个包含了两个信息的参数,row(第几行)和section(第几分区);
比如在tableView中我们创建了3个分区(从0到2),每个分区有五个tableViewCell,也就是五行(从0到4),那么对于任意一个cell我怎么知道它是第几分区的第几行呢?比如:indexPath.section=2,indexPath.row=1,那么就是第三分区的第二个cell,同理:第一分区的第二个cell为indexPath.section=0,indexPath.row=1;

 

标签:IndexPath,indexPath,section,IOS,几行,cell,分区,row
来源: https://www.cnblogs.com/huaan011/p/14952310.html