Oddbean new post about | logout
 Morninggg, Beave! ☕🌻 
 I hope you had a good start to your day. ☺️ 
  //
//  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
    }
} 
 480 567 (base 12) to base 5
A: 20331214