123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // StudyCollectionViewCell.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/3/25.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class StudyCollectionViewCell: UICollectionViewCell {
- @IBOutlet weak var viewContent: UIView!
- @IBOutlet weak var lblRemark: UILabel!
- @IBOutlet weak var lblTitle: UILabel!
- @IBOutlet weak var img: UIImageView!
- override func awakeFromNib() {
- super.awakeFromNib()
- // Initialization code
- viewContent.setSize(width: (ScreenWidth - 30) / 2, height: (ScreenWidth - 30) / 2 / 170 * 103 + 68)
- img.setSizeHeight(height: (ScreenWidth - 30) / 2 / 170 * 103)
- viewContent.setCornerRadius(size: 12)
- }
- func initCell(rowIndex: Int, dic: NSDictionary) {
- if rowIndex % 2 == 0 {
- viewContent.marginLeft(left: 10)
- } else {
- viewContent.marginLeft(left: 5)
- }
- img.loadImage(imgUrl: dic.getString(key: "image"), defaultImage: "")
- lblTitle.text = dic.getString(key: "title")
- let count = "\(dic.getInt(key: "click_num"))+"
- 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))
- }
- }
|