暂无描述

GroupCell.swift 815B

    // // GroupCell.swift // PaiAi // // Created by zhengjianfei on 16/4/4. // Copyright © 2016年 FFIB. All rights reserved. // import UIKit final class GroupCell: UITableViewCell { // MARK: Storyboard property @IBOutlet var groupImageView: UIImageView! @IBOutlet var groupNameLabel: UILabel! @IBOutlet var createTimeLabel: UILabel! @IBOutlet weak var photoNumLabel: UILabel! // MARK: init interface func setInfo(_ info: GroupItem) { groupImageView.setImageWithNullableURL(info.group_avatar, placeholderImage: UIImage(named: "Group\(info.group_default_avatar)")) groupNameLabel.text = info.group_name createTimeLabel.text = info.create_at?.getTimeString(format: "YYYY-MM-dd HH:MM") photoNumLabel.text = "有\(info.group_photo_num)张照片" } }