ShoppingMallCollectionViewCell.swift 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 ShoppingMallCollectionViewCell: UICollectionViewCell {
  10. @IBOutlet weak var view2: UIView!
  11. @IBOutlet weak var lblMoney: UILabel!
  12. @IBOutlet weak var viewContent: UIView!
  13. @IBOutlet weak var lblRemark: UILabel!
  14. @IBOutlet weak var lblTitle: UILabel!
  15. @IBOutlet weak var img: UIImageView!
  16. override func awakeFromNib() {
  17. super.awakeFromNib()
  18. // Initialization code
  19. viewContent.setSize(width: (ScreenWidth - 30) / 2, height: (ScreenWidth - 30) / 2 + 58)
  20. img.setSizeHeight(height: (ScreenWidth - 30) / 2)
  21. viewContent.setCornerRadius(size: 12)
  22. view2.marginTop(top: 0, view: img)
  23. }
  24. func initCell(rowIndex: Int, dic: NSDictionary) {
  25. if rowIndex % 2 == 0 {
  26. viewContent.marginLeft(left: 10)
  27. } else {
  28. viewContent.marginLeft(left: 5)
  29. }
  30. lblTitle.text = dic.getString(key: "name")
  31. lblRemark.text = "销量:\(dic.getInt(key: "sales_num")) | 数量:\(dic.getInt(key: "num"))"
  32. img.loadImage(imgUrl: dic.getString(key: "image"), defaultImage: "")
  33. let strPrice = "¥\(dic.getDouble(key: "price"))"
  34. lblMoney.attributedText = CommonViewUntils.getAttributedStringForFont(str: strPrice, rangs: [NSRange.init(location: 0, length: 1), NSRange.init(location: 1, length: strPrice.length() - 1)], fonts: [UIFont.systemFont(ofSize: 10), UIFont.systemFont(ofSize: 14)])
  35. }
  36. }