MyClassViewController.swift 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //
  2. // MyClassViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/5/13.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MyClassViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. let arrTitle = ["最近学习", "我的培训"] //,"下载管理"
  12. let arrImage = ["ion_study_08", "ion_study_09"] //,"ion_study_10"
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "我的课程"
  16. initNavLeftBackButton()
  17. tableView.register(UINib(nibName: "CommonMyMenuTableViewCell", bundle: nil), forCellReuseIdentifier: "CommonMyMenuTableViewCell")
  18. tableView.delegate = self
  19. tableView.dataSource = self
  20. tableView.separatorStyle = .none
  21. tableView.showsVerticalScrollIndicator = false
  22. tableView.estimatedRowHeight = 100
  23. }
  24. // MARK: TABLEVLEW 实现
  25. func numberOfSections(in tableView: UITableView) -> Int {
  26. return 1
  27. }
  28. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  29. return arrTitle.count
  30. }
  31. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  32. return 15
  33. }
  34. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  35. return 58
  36. }
  37. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  38. let cell = tableView.dequeueReusableCell(withIdentifier: "CommonMyMenuTableViewCell", for: indexPath as IndexPath) as! CommonMyMenuTableViewCell
  39. cell.lblTitle.text = arrTitle[indexPath.row]
  40. cell.btnLeftImage.setImage(UIImage(named: arrImage[indexPath.row]), for: .normal)
  41. cell.lblRight.isHidden = true
  42. cell.imgRightContent.isHidden = true
  43. return cell
  44. }
  45. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  46. if arrTitle[indexPath.row] == "最近学习" {
  47. toViewController(viewController: StudyRecordViewController())
  48. } else if arrTitle[indexPath.row] == "我的培训" {
  49. toViewController(viewController: UnderLineTrainRecordViewController())
  50. } else if arrTitle[indexPath.row] == "下载管理" {
  51. }
  52. }
  53. override func viewWillAppear(_ animated: Bool) {
  54. super.viewWillAppear(animated)
  55. }
  56. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  57. super.init(nibName: "MyClassViewController", bundle: nil)
  58. }
  59. required init?(coder aDecoder: NSCoder) {
  60. fatalError("init(coder:) has not been implemented")
  61. }
  62. }