BogoSearchHistoryCell.h 577 B

1234567891011121314151617181920212223242526
  1. //
  2. // BogoSearchHistoryCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/6.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoSearchHistoryCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgWidthConstraint;
  12. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  13. @property (weak, nonatomic) IBOutlet UILabel *nickNameL;
  14. @property (weak, nonatomic) IBOutlet UILabel *idLabel;
  15. @property(nonatomic, strong) LivingModel *model;
  16. @end
  17. NS_ASSUME_NONNULL_END