StudyRecordViewController.swift 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. //
  2. // StudyViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/22.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class StudyRecordViewController: BaseViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  10. @IBOutlet weak var collectionView: UICollectionView!
  11. @IBOutlet weak var viewTop: UIView!
  12. var currentType = 0
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. initNavLeftBackButton()
  16. self.title = "我的学习"
  17. collectionView.register(UINib(nibName: "StudyCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "StudyCollectionViewCell")
  18. collectionView.delegate = self
  19. collectionView.dataSource = self
  20. collectionView.showsVerticalScrollIndicator = false
  21. collectionView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  22. self!.currentPage = 1
  23. self!.loadData()
  24. })
  25. collectionView.mj_header?.lastUpdatedTimeKey = "NewsListViewController"
  26. collectionView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  27. self!.currentPage += 1
  28. self!.loadData()
  29. })
  30. }
  31. // MARK: =============加载数据===============
  32. let arrType = NSMutableArray()
  33. func loadType() {
  34. if arrType.count > 0 {
  35. returnData(tag: 1001)
  36. return
  37. }
  38. let url = RequestURL.studyTypeList
  39. let params = NSMutableDictionary()
  40. params.setValue(0, forKey: "type")
  41. loadDataList(url: url, params: params, tag: 1001, array: arrType)
  42. }
  43. func loadData() {
  44. let url = RequestURL.nearStudyList
  45. let params = NSMutableDictionary()
  46. params.setValue("0", forKey: "type")
  47. params.setValue(arrType.getString(index: currentType, key: "id"), forKey: "typeId")
  48. loadDataListForCollectionView(url: url, params: params, collectionView: collectionView, tag: 1002)
  49. }
  50. override func returnData(tag: Int) {
  51. if tag == 1001 {
  52. if arrType.count < 1 {
  53. SVProgressHUD.showError(withStatus: "学习分类获取出错,请联系客服!")
  54. return
  55. }
  56. var arrTitle = [String]()
  57. for dic in self.arrType {
  58. arrTitle.append((dic as! NSDictionary).getString(key: "name"))
  59. }
  60. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: 3, width: ScreenWidth, height: 45), titles: arrTitle, defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094f5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) { [weak self](index) in
  61. self!.currentType = index
  62. self!.collectionView.mj_header?.beginRefreshing()
  63. }
  64. self.viewTop.removeAll()
  65. self.viewTop.addSubview(segment)
  66. self.collectionView.mj_header?.beginRefreshing()
  67. } else if tag == 1002 {
  68. collectionView.reloadData()
  69. }
  70. }
  71. override func returnError(tag: Int, type: String) {
  72. }
  73. //返回分区个数
  74. func numberOfSections(in collectionView: UICollectionView) -> Int {
  75. return 1
  76. }
  77. //返回每个分区的item个数
  78. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  79. return self.arrData.count
  80. }
  81. //定义每个UICollectionView 的大小
  82. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  83. return CGSize(width: ScreenWidth / 2, height: (ScreenWidth - 30) / 2 / 170 * 103 + 68)
  84. }
  85. //初始化cell
  86. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  87. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "StudyCollectionViewCell", for: indexPath) as! StudyCollectionViewCell
  88. cell.initCell(rowIndex: indexPath.row, dic: self.arrData[indexPath.row] as! NSDictionary)
  89. return cell
  90. }
  91. //定义每个UICollectionView 的间距
  92. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
  93. return UIEdgeInsets(top: 20, left: 0, bottom: 0, right: 0)
  94. }
  95. //定义每个UICollectionView 纵向的间距
  96. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
  97. return 0
  98. }
  99. //选中
  100. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  101. let vc = StudyDetailViewController()
  102. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  103. appDelegate.navController.pushViewController(vc, animated: true)
  104. }
  105. override func viewWillAppear(_ animated: Bool) {
  106. super.viewWillAppear(animated)
  107. //loadType();
  108. collectionView.mj_header?.beginRefreshing()
  109. }
  110. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  111. super.init(nibName: "StudyRecordViewController", bundle: nil)
  112. }
  113. required init?(coder aDecoder: NSCoder) {
  114. fatalError("init(coder:) has not been implemented")
  115. }
  116. }