YBUserListCell.h 545 B

123456789101112131415161718192021222324
  1. //
  2. // YBUserListCell.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/12/3.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YBUserListModel.h"
  10. @interface YBUserListCell : UICollectionViewCell
  11. @property(nonatomic,strong)UIImageView *imageV;
  12. @property(nonatomic,strong)UIImageView *levelimage;
  13. @property(nonatomic,strong)YBUserListModel *model;
  14. @property(nonatomic,strong)UIImageView *kuang;
  15. +(YBUserListCell *)collectionview:(UICollectionView *)collectionview andIndexpath:(NSIndexPath *)indexpath;
  16. @end