亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS 實現類似QQ分組樣式的兩種方式

發布時間:2020-09-10 10:01:41 來源:腳本之家 閱讀:153 作者:USimpleLife 欄目:移動開發

思路

思路很簡單,對模型數據操作或則控制界面顯示

先看下json部分數據

"chapterDtoList": [{
      "token": null,
      "id": 1295,
      "chapterName": "第一章",
      "parentId": 0,
      "chapterLevel": 0,
      "attachmentUrl": "",
      "description": null,
      "startDateTimestamp": null,
      "endDateTimestamp": null,
      "startDate": 1490889600000,
      "endDate": 1491062400000,
      "browseCount": 0,
      "workId": null,
      "chapterStatus": 3,
      "hadRead": 0,
      "subChapterList": [{
        "token": null,
        "id": 1296,
        "chapterName": "第一節",
        "parentId": 1295,
        "chapterLevel": 1,
        "attachmentUrl": "",
        "description": null,
        "startDateTimestamp": null,
        "endDateTimestamp": null,
        "startDate": null,
        "endDate": null,
        "browseCount": 0,
        "workId": null,
        "chapterStatus": null,
        "hadRead": 0,
        "subChapterList": [],
        "classUserReadInfo": []
      },

這種數據對應的一般都是個tableView, 然后根據章節分開,最終界面如下:

iOS 實現類似QQ分組樣式的兩種方式

分析

這里采用UITableViewStylePlain樣式,chapterDtoList對應章,subChapterList對應節。章的話我們使用headerView來做,節的話我們使用cell來做。然后只需要給headerView添加一個點擊手勢,點擊的時候給對應的模型添加標識,從而去控制章節的收合。

方法一:

對模型數組進行操作,我們可以將返回的json數據轉化為兩個模型數組chapterListArray和tempChapterListArray,通過控制subChapterList的count來實現。界面的模型數據統一使用tempChapterListArray,展開與合并就等價于是否將“章數組“中的”節數組“賦值為nil

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  YJTOnlineTaskDetailModel *onlineTaskDetailModel = self.tempChapterListArray[section];
  return onlineTaskDetailModel.subChapterList.count;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  YJTOnlineChapeterCell *headerView = [tableView dequeueReusableCellWithIdentifier:onlineChapeterCell];
  YJTOnlineTaskDetailModel *onlineTaskDetailModel = self.chapterListArray[section];
  headerView.backgroundColor = [UIColor whiteColor];
  headerView.onlineTaskDetailModel = onlineTaskDetailModel;
  if (section == 0) {
    headerView.tipsLableHeight.constant = 30;
  }else {
    headerView.tipsLableHeight.constant = 0;
  }
  [headerView whenTapWithBlock:^{
    onlineTaskDetailModel.isSelected = !onlineTaskDetailModel.isSelected;
    YJTOnlineTaskDetailModel *detailModel = self.tempChapterListArray[section];
    if (detailModel.subChapterList == nil) {
      detailModel.subChapterList = onlineTaskDetailModel.subChapterList;
    }else {
      detailModel.subChapterList = nil;
    }
    [self.tableView reloadData];
  }];
  return headerView;
}

方法二:

上面的方法是通過控制模型數組來實現的,我們也可以采用控制界面的顯示,從而達到我們的要求。既然我們在點擊HeadView的時候已經標記過對應的模型數據是否展開,那么我們完全可以通過控制界面對應分組的個數來實現。當然也可以通過控制rowHeight來到達效果。相比之下,該方法簡單明了些。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  YJTOnlineTaskDetailModel *onlineTaskDetailModel = self.chapterListArray[section];
  return onlineTaskDetailModel.isSelected ? onlineTaskDetailModel.subChapterList.count : 0;
}
 [headerView whenTapWithBlock:^{
    onlineTaskDetailModel.isSelected = !onlineTaskDetailModel.isSelected;
    [self.tableView reloadData];
  }];

總結

以上所述是小編給大家介紹的iOS 實現類似QQ分組樣式的兩種方式,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涟水县| 江口县| 镶黄旗| 电白县| 韶山市| 武汉市| 教育| 罗定市| 吐鲁番市| 惠水县| 旅游| 抚宁县| 宁都县| 读书| 巴彦淖尔市| 介休市| 铅山县| 汕头市| 隆回县| 绵阳市| 江永县| 云浮市| 沁阳市| 临颍县| 泰安市| 嘉定区| 杭锦旗| 新晃| 清涧县| 天峨县| 铅山县| 交城县| 中西区| 孝昌县| 喀喇沁旗| 双江| 平南县| 阜新市| 洛阳市| 长岭县| 东宁县|