想要实现,类似于微信的 消息界面中
tableView
左边是用户头像,加上 header和subtitle,
右边,上面是时间,下面是是否静音的图标
先去:
Swift中的UITableView中cell左边显示图片头像
搜:
swift tableview image
参考:
uitableview – Adding an Image into a cell – Stack Overflow
ios – How to add custom imageview in tableview cell in Swift? – Stack Overflow
最后试试:
cell.imageView?.image = UIImage(named:"add_white_24x24.png")
然后可以显示头像了:
再去: