| 1234567891011121314151617181920212223242526 |
- //
- // NearbyCell.h
- // YBVideo
- //
- // Created by YunBao on 2018/7/27.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NearbyVideoModel.h"
- @interface NearbyCell : UICollectionViewCell
- @property(nonatomic,strong)NearbyVideoModel *model;
- @property (weak, nonatomic) IBOutlet UIImageView *coverIV;
- @property (weak, nonatomic) IBOutlet UIImageView *iconIV;
- @property (weak, nonatomic) IBOutlet UILabel *unameL;
- @property (weak, nonatomic) IBOutlet UIImageView *locIV;
- @property (weak, nonatomic) IBOutlet UILabel *distanceL;
- @property (weak, nonatomic) IBOutlet UIButton *videoCoinBtn;
- @property (weak, nonatomic) IBOutlet UILabel *videoTitleL;
- @property(nonatomic,assign)BOOL isSelfLoc;
- @end
|