JXGroupMemberCell.h 386 B

1234567891011121314151617181920
  1. //
  2. // JXGroupMemberCell.h
  3. // shiku_im
  4. //
  5. // Created by IMAC on 2019/10/11.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXGroupMemberCell : UICollectionViewCell
  11. @property (nonatomic,strong)UIImageView *imageView;
  12. @property (nonatomic,strong)JXLabel *label;
  13. - (void)buildNewImageview;
  14. @end
  15. NS_ASSUME_NONNULL_END