StudyCollectionViewCell.swift 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // StudyCollectionViewCell.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/25.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class StudyCollectionViewCell: UICollectionViewCell {
  10. @IBOutlet weak var viewContent: UIView!
  11. @IBOutlet weak var lblRemark: UILabel!
  12. @IBOutlet weak var lblTitle: UILabel!
  13. @IBOutlet weak var img: UIImageView!
  14. override func awakeFromNib() {
  15. super.awakeFromNib()
  16. // Initialization code
  17. viewContent.setSize(width: (ScreenWidth - 30) / 2, height: (ScreenWidth - 30) / 2 / 170 * 103 + 68)
  18. img.setSizeHeight(height: (ScreenWidth - 30) / 2 / 170 * 103)
  19. viewContent.setCornerRadius(size: 12)
  20. }
  21. func initCell(rowIndex: Int, dic: NSDictionary) {
  22. if rowIndex % 2 == 0 {
  23. viewContent.marginLeft(left: 10)
  24. } else {
  25. viewContent.marginLeft(left: 5)
  26. }
  27. img.loadImage(imgUrl: dic.getString(key: "image"), defaultImage: "")
  28. lblTitle.text = dic.getString(key: "title")
  29. let count = "\(dic.getInt(key: "click_num"))+"
  30. lblRemark.attributedText = CommonViewUntils.getAttributedString(str: "\(count)人学过", left: 0, right: count.length() + 1, color: CommonUntils.getUIColorFromRGB(rgbValue: 0xffb400, alpha: 1.0), otherColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x999999, alpha: 1.0))
  31. }
  32. }