| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // BGDynamicCell.h
- // BuguLive
- //
- // Created by fanwe2014 on 2017/3/15.
- // Copyright © 2017年 xfg. All rights reserved. nameLabel
- //
- #import <UIKit/UIKit.h>
- #import "PersonCenterListModel.h"
- @class BGDynamicCell;
- @protocol DynamicCellDelegate <NSObject>
- - (void)onPressZanBtnOnDynamicCell:(BGDynamicCell *)cell andTag:(int)tag;
- - (void)onPressImageView:(BGDynamicCell *)cell andTag:(int )tag;
- @end
- @interface BGDynamicCell : UITableViewCell<TTTAttributedLabelDelegate>
- @property(nonatomic,strong)UIImageView *headView;
- @property(nonatomic,strong)UIButton *deleteBtn;
- @property(nonatomic,strong)UIView *bodyView;
- @property(nonatomic,strong)UIView *zanBarView;
- @property(nonatomic,strong)UIView *footView;
- @property(nonatomic,strong)UILabel *fromName;
- @property(nonatomic,strong)PersonCenterListModel *data;
- @property(nonatomic,strong)UIImageView *zanBtn;
- @property(nonatomic,strong)UIImageView *replyBtn;
- @property(nonatomic,strong)NSDictionary *dynamicPower;
- @property(nonatomic,weak)id<DynamicCellDelegate> DDelegate;
- @property(nonatomic,strong)NSMutableArray *imgArray;
- @property(nonatomic,strong)NSMutableArray *imgViewArray;
- @property(nonatomic,strong)UIImageView *iconView;
- @property(nonatomic,strong)UILabel *nameLabel;
- @property(nonatomic,strong)UIImageView *topView;
- @property(nonatomic,strong)UILabel *timeLabel;
- @property(nonatomic,strong)UILabel *placeLabel;
- @property(nonatomic,strong)UILabel *redbagLabel;
- @property (nonatomic,assign)int row;
- -(void)setData:(PersonCenterListModel *)data andRow:(int)row;
- @end
|