25 lines
623 B
Objective-C
Executable File
25 lines
623 B
Objective-C
Executable File
//
|
|
// SPMessageListCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/2.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPMessageListCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *contentLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
|
|
@property (weak, nonatomic) IBOutlet UIView *numBgView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *numLab;
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *nameLabTopCon;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|