| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // FollowerTableViewCell.h
- // BuguLive
- //
- // Created by fanwe2014 on 16/6/18.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^ReloadCellData)(NSInteger index);
- @protocol loadAgainDelegate <NSObject>
- //重新加载某一段
- - (void)loadAgainSection:(int)section withHasFonce:(int)hasFonce;
- @end
- @class SenderModel;
- @interface FollowerTableViewCell : UITableViewCell
- @property (nonatomic, weak) id<loadAgainDelegate>delegate;
- @property (strong, nonatomic) IBOutlet UIButton *joinBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *sexImgView;
- @property (weak, nonatomic) IBOutlet UIImageView *rankImgView;
- @property (weak, nonatomic) IBOutlet UILabel *commentLabel;
- //@property (weak, nonatomic) IBOutlet UIImageView *rightImgView;
- @property (weak, nonatomic) IBOutlet UIView *lineView;
- @property (nonatomic, strong) NetHttpsManager *httpManager;
- @property (nonatomic, copy) NSString *user_id;
- @property (nonatomic, assign) int section;
- @property (nonatomic, assign) int cellType;
- @property (nonatomic, assign) int hasFonce;
- @property (nonatomic, copy) ReloadCellData reloadCellData;
- - (void)creatCellWithModel:(SenderModel *)model WithRow:(int)row;
- @end
|