RankingListViewController.swift 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. //
  2. // RankingListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/16.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class RankingListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  14. viewNav.initView(title: "明星排行榜") {[weak self] (index, _) in
  15. if index == 0 {
  16. self!.handleBack()
  17. }
  18. }
  19. self.view.addSubview(viewNav)
  20. tableView.marginTop(top: 0, view: viewNav)
  21. tableView.setSizeHeight(height: ScreenHeight - viewNav.bottom())
  22. let view = (CommonViewUntils.getViewForXIB(xibName: "RankingListHeaderView") as! RankingListHeaderView)
  23. let strs = ["http://5b0988e595225.cdn.sohucs.com/q_70,c_zoom,w_640/images/20181020/0c031822ed4f4d41b7cd60424f27b999.jpeg", "http://5b0988e595225.cdn.sohucs.com/q_70,c_zoom,w_640/images/20181020/0c031822ed4f4d41b7cd60424f27b999.jpeg", "http://homesitetask.zbjimg.com/homesite/task/1.jpg/origine/3ff4a910-9b6c-4b1c-bf25-ef14baaf970f"]
  24. view.initView(strNames: ["小小小", "大大大", "中中中"], strIcons: strs)
  25. tableView.tableHeaderView = view
  26. tableView.register(UINib(nibName: "RankingListTableViewCell", bundle: nil), forCellReuseIdentifier: "RankingListTableViewCell")
  27. tableView.delegate = self
  28. tableView.dataSource = self
  29. tableView.separatorStyle = .none
  30. tableView.showsVerticalScrollIndicator = false
  31. tableView.estimatedRowHeight = 100
  32. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  33. self!.currentPage = 1
  34. self!.loadData()
  35. })
  36. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  37. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  38. self!.currentPage += 1
  39. self!.loadData()
  40. })
  41. tableView.mj_header?.beginRefreshing()
  42. }
  43. // MARK: =============加载数据===============
  44. func loadData() {
  45. for i in 0 ..< 10 {
  46. self.arrData.add(i)
  47. }
  48. returnData(tag: 1001)
  49. tableView.mj_header?.endRefreshing()
  50. tableView.mj_footer?.endRefreshing()
  51. // let url = RequestURL.bookList;
  52. // let params = NSMutableDictionary()
  53. // params.setValue("", forKey: "subjectId")
  54. // params.setValue("", forKey: "showTimeSort")
  55. // params.setValue("", forKey: "priceSort")
  56. // loadDataList(url: url, params: params, tableView: self.tableView,tag:1001)
  57. }
  58. override func returnData(tag: Int) {
  59. if tag == 1001 {
  60. tableView.reloadData()
  61. }
  62. }
  63. override func returnError(tag: Int, type: String) {
  64. }
  65. // MARK: TABLEVLEW 实现
  66. func numberOfSections(in tableView: UITableView) -> Int {
  67. return 1
  68. }
  69. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  70. return self.arrData.count
  71. }
  72. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  73. return 87
  74. }
  75. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  76. let cell = tableView.dequeueReusableCell(withIdentifier: "RankingListTableViewCell", for: indexPath as IndexPath) as! RankingListTableViewCell
  77. cell.lblName.text = "李某某\(indexPath.row)"
  78. cell.imgIcon.loadImage(imgUrl: "http://homesitetask.zbjimg.com/homesite/task/1.jpg/origine/3ff4a910-9b6c-4b1c-bf25-ef14baaf970f", defaultImage: "")
  79. cell.imgIcon.setCornerRadius()
  80. cell.lblNo.text = "\((indexPath.row + 4))"
  81. cell.lblRight.setColorFontString(str: "16(核卡)", range: NSRange.init(location: 0, length: 2), defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: UIColor.red, defauntFont: 10, currentFont: 15)
  82. return cell
  83. }
  84. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  85. // let view = UIViewController()
  86. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  87. // self.navigationController?.pushViewController(view, animated: true)
  88. }
  89. override func viewWillAppear(_ animated: Bool) {
  90. super.viewWillAppear(animated)
  91. appDelegate.setNavigationBarHidden(isHidden: true)
  92. }
  93. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  94. super.init(nibName: "RankingListViewController", bundle: nil)
  95. }
  96. required init?(coder aDecoder: NSCoder) {
  97. fatalError("init(coder:) has not been implemented")
  98. }
  99. }