您好,登錄后才能下訂單哦!
小編給大家分享一下如何實現iOS中Cell的Section展開和收起,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
首先,先上圖,讓大家看看效果
相信大家對于TableViewd數據的設置都熟悉,這方面就不多說的,重點的還是來看:
1.如何實現cell的Section的展開和收起的效果
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [self.tableView deselectRowAtIndexPath:indexPath animated:NO]; currentRow = indexPath.row; NSDictionary *sectionDic = self.dataSource[indexPath.section]; NSArray *cellArray = sectionDic[@"sub"]; //cell當前的數據 NSDictionary *cellData = cellArray[indexPath.row]; NSString *key = [NSString stringWithFormat:@"%@", cellData[@"chapterID"]]; CellModel *chapterModel = [self.cellOpen valueForKey:key]; chapterModel.isShow = !chapterModel.isShow; [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic]; }
當用戶點擊到某一個cell時候,需要判斷cell是否是展開狀態,如果張開或者收起就調用
復制代碼 代碼如下:
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
讓cell的section能夠重新加載刷新;
2.如何添加cell的Section
2.1設置section的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { NSDictionary *sectionDic = self.dataSource[indexPath.section]; NSArray *cellArray = sectionDic[@"sub"]; //cell當前的數據 NSDictionary *cellData = cellArray[indexPath.row]; NSString *key = [NSString stringWithFormat:@"%@", cellData[@"chapterID"]]; CellModel *model = [self.cellOpen valueForKey:key]; if (model.isShow) { return (model.pois.count+1)*60; } else { return 60; } }
上面的代碼是設置section的高度,主要是以cell的isshow作為標記,讓section的能夠隨數據的改變而變動
3.如果要在一個cell上再加一個cell,實現cell內嵌cell,需要在哪里加?
答案:當然是在cell的HeaderSection或者FooterSection上加上cell,這樣就能實現cell內嵌cell。
看完了這篇文章,相信你對“如何實現iOS中Cell的Section展開和收起”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。