ChatMsgCollectionCell.h 598 B

1234567891011121314151617181920212223
  1. //
  2. // ChatMsgCollectionCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatMsgCollectionCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *cell0IconImg;
  12. @property (weak, nonatomic) IBOutlet UILabel *cell0ReadNumLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *cell0TitleLabel;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constant;
  15. @property (weak, nonatomic) IBOutlet UIView *cell0MengCengView;
  16. @end
  17. NS_ASSUME_NONNULL_END