StudyViewController.swift 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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 StudyViewController: BaseViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  10. @IBOutlet weak var collectionView: UICollectionView!
  11. @IBOutlet weak var viewMenu4: UIView!
  12. @IBOutlet weak var viewMenu3: UIView!
  13. @IBOutlet weak var viewMenu2: UIView!
  14. @IBOutlet weak var viewMenu1: UIView!
  15. @IBOutlet weak var viewTop: UIView!
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. self.title = "我的学习"
  19. initNavLeftBackButton()
  20. //添加header 无header去掉 需要创建 UICollectionReusableView
  21. collectionView.register(UINib(nibName: "StudyCollectionReusableView", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "StudyCollectionReusableView")
  22. collectionView.register(UINib(nibName: "StudyCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "StudyCollectionViewCell")
  23. collectionView.delegate = self
  24. collectionView.dataSource = self
  25. collectionView.showsVerticalScrollIndicator = false
  26. collectionView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  27. self!.currentPage = 1
  28. self!.loadData()
  29. })
  30. collectionView.mj_header?.lastUpdatedTimeKey = "NewsListViewController"
  31. collectionView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  32. self!.currentPage += 1
  33. self!.loadData()
  34. })
  35. //设置header 大小 无header去掉
  36. let collectionLayout = collectionView.collectionViewLayout as! UICollectionViewFlowLayout
  37. collectionLayout.headerReferenceSize = CGSize(width: ScreenWidth, height: 44)
  38. collectionView.mj_header?.beginRefreshing()
  39. }
  40. // MARK: =============加载数据===============
  41. func loadData() {
  42. let url = RequestURL.onlineList
  43. let params = NSMutableDictionary()
  44. params.setValue("1", forKey: "isRec")
  45. params.setValue("FFFFFF", forKey: "typeId")
  46. loadDataListForCollectionView(url: url, params: params, collectionView: collectionView, tag: 1001)
  47. }
  48. override func returnData(tag: Int) {
  49. if tag == 1001 {
  50. collectionView.reloadData()
  51. }
  52. }
  53. override func returnError(tag: Int, type: String) {
  54. }
  55. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  56. @IBAction func btnMenuClick(_ sender: AnyObject) {
  57. switch (sender as! UIButton).tag {
  58. case 1001: // 在线学习
  59. appDelegate.navController.pushViewController(StudyTypeViewController(), animated: true)
  60. break
  61. case 1002: // 线下培训
  62. appDelegate.navController.pushViewController(UnderLineTrainViewController(), animated: true)
  63. break
  64. case 1003: // 我的课程
  65. appDelegate.navController.pushViewController(MyClassViewController(), animated: true)
  66. break
  67. case 1004: // 知识库
  68. appDelegate.navController.pushViewController(KnowledgeBaseViewController(), animated: true)
  69. break
  70. case 1005: //
  71. break
  72. case 1006: //
  73. break
  74. default:
  75. break
  76. }
  77. }
  78. //返回分区个数
  79. func numberOfSections(in collectionView: UICollectionView) -> Int {
  80. return 1
  81. }
  82. //返回每个分区的item个数
  83. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  84. return self.arrData.count
  85. }
  86. //定义每个UICollectionView 的大小
  87. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  88. return CGSize(width: ScreenWidth / 2, height: (ScreenWidth - 30) / 2 / 170 * 103 + 68)
  89. }
  90. //初始化header
  91. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  92. var reusableView: StudyCollectionReusableView!
  93. if kind == UICollectionView.elementKindSectionHeader {
  94. reusableView = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "StudyCollectionReusableView", for: indexPath) as! StudyCollectionReusableView
  95. if reusableView.subviews.count < 1 {
  96. //reusableView.addSubview(viewTop);
  97. }
  98. } else {
  99. reusableView = StudyCollectionReusableView()
  100. }
  101. return reusableView
  102. }
  103. //初始化cell
  104. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  105. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "StudyCollectionViewCell", for: indexPath) as! StudyCollectionViewCell
  106. cell.initCell(rowIndex: indexPath.row, dic: self.arrData[indexPath.row] as! NSDictionary)
  107. return cell
  108. }
  109. //定义每个UICollectionView 的间距
  110. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
  111. return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  112. }
  113. //定义每个UICollectionView 纵向的间距
  114. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
  115. return 0
  116. }
  117. //选中
  118. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  119. let vc = StudyDetailViewController()
  120. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  121. appDelegate.navController.pushViewController(vc, animated: true)
  122. }
  123. override func viewWillAppear(_ animated: Bool) {
  124. super.viewWillAppear(animated)
  125. appDelegate.setNavigationBarHidden(isHidden: false)
  126. self.tabBarController?.title = "我的学习"
  127. }
  128. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  129. super.init(nibName: "StudyViewController", bundle: nil)
  130. }
  131. required init?(coder aDecoder: NSCoder) {
  132. fatalError("init(coder:) has not been implemented")
  133. }
  134. }