123456789101112131415161718192021222324252627 |
- import UIKit
- import PaiaiDataKit
- import PaiaiUIKit
- final class MessageSystemCell: UITableViewCell {
- @IBOutlet weak var time: UILabel!
- @IBOutlet weak var content: UILabel!
- @IBOutlet weak var name: UILabel!
- @IBOutlet weak var userImage: UIImageView!
-
- func setInfo(_ info: MessageListItem) {
- name.text = info.title
- content.text = info.content
- }
- }
|