I hope you had a good start to your day. ☺️

Reply to this note

Please Login to reply.

Discussion

//

// ProfileHeader.swift

// MyProject

//

// Created by Zhao Yanjun on 2021/6/15.

//

import UIKit

class ProfileHeader: UITableViewCell {

@IBOutlet weak var imageView: UIImageView!

@IBOutlet weak var nameLabel: UILabel!

func configure(with user: User) {

imageView.image = user.avatar

nameLabel.text = user.name

}

}