Keine Beschreibung

GroupCell.swift 797B

    // // GroupCell.swift // Paiai_iOS // // Created by FFIB on 16/4/4. // Copyright © 2016年 FFIB. All rights reserved. // import UIKit import PaiaiDataKit import PaiaiUIKit final class GroupCell: UITableViewCell { // MARK: Storyboard property @IBOutlet weak var groupImageView: UIImageView! @IBOutlet weak var groupNameLabel: UILabel! @IBOutlet weak var createTimeLabel: UILabel! @IBOutlet weak var photoNumLabel: UILabel! // MARK: init interface func setInfo(_ info: GroupItem) { groupImageView.setImage(info.groupAvatar, placeholder: UIImage(named: "Group\(info.groupDefaultAvatar)")) groupNameLabel.text = info.groupName createTimeLabel.text = info.createAt photoNumLabel.text = "有\(info.group_photo_num)张照片" } }