NearbyCell.h 734 B

1234567891011121314151617181920212223242526
  1. //
  2. // NearbyCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/27.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NearbyVideoModel.h"
  10. @interface NearbyCell : UICollectionViewCell
  11. @property(nonatomic,strong)NearbyVideoModel *model;
  12. @property (weak, nonatomic) IBOutlet UIImageView *coverIV;
  13. @property (weak, nonatomic) IBOutlet UIImageView *iconIV;
  14. @property (weak, nonatomic) IBOutlet UILabel *unameL;
  15. @property (weak, nonatomic) IBOutlet UIImageView *locIV;
  16. @property (weak, nonatomic) IBOutlet UILabel *distanceL;
  17. @property (weak, nonatomic) IBOutlet UIButton *videoCoinBtn;
  18. @property (weak, nonatomic) IBOutlet UILabel *videoTitleL;
  19. @property(nonatomic,assign)BOOL isSelfLoc;
  20. @end