Files
mier_ios/SweetParty/主类/Message/Controller/SPMessageListCell.h

25 lines
623 B
C
Raw Permalink Normal View History

2025-08-11 10:43:19 +08:00
//
// 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