1234567891011121314151617181920212223 |
- //
- // ChatMsgCollectionCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #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;
- @end
- NS_ASSUME_NONNULL_END
|