iOS 点击cell展开或关闭列表
2017-11-28 本文已影响38人
夏天爱西瓜汁
2016.11.8
首先定义一个变量,isOpen,表示是否展开
默认是关闭的,即isOpen = NO;
定义一个变量,selectedIndex,表示点击的是哪个cell
每条数据在一个数组中,遍历这个数组,
selectedIndex =
[NSIndexPathindexPathForRow:iinSection:0];
2016.11.8
首先定义一个变量,isOpen,表示是否展开
默认是关闭的,即isOpen = NO;
定义一个变量,selectedIndex,表示点击的是哪个cell
每条数据在一个数组中,遍历这个数组,
selectedIndex =
[NSIndexPathindexPathForRow:iinSection:0];