1234567891011121314151617181920212223242526 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgCollectionCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *cell0IconImg;
- @property (weak, nonatomic) IBOutlet UILabel *cell0ReadNumLabel;
- @property (weak, nonatomic) IBOutlet UILabel *cell0TitleLabel;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constant;
- @property (weak, nonatomic) IBOutlet UIView *cell0MengCengView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imagH;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imagW;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *titleConstant;
- @end
- NS_ASSUME_NONNULL_END
|