CellForReplyTableViewCell.h 868 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // CellForReplyTableViewCell.h
  3. // MarryU
  4. //
  5. // Created by 志刚杨 on 2017/6/29.
  6. // Copyright © 2017年 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CYDReplyModel.h"
  10. @interface CellForReplyTableViewCell : UITableViewCell
  11. @property(nonatomic, strong) UIImageView *avatar;
  12. @property(nonatomic, strong) UILabel *nicename;
  13. @property(nonatomic, strong) UILabel *body;
  14. @property(nonatomic, strong) UILabel *addtime;
  15. @property(nonatomic, strong) UILabel *city;
  16. @property(nonatomic, strong) UILabel *age;
  17. @property(nonatomic, strong) UIButton *deleteBtn;
  18. @property(nonatomic, strong) UIView *line;
  19. @property(nonatomic, strong) MGGroupUserInfo *model;
  20. @property (nonatomic,strong)NSLayoutConstraint *cstHeightlbContent;
  21. @property(nonatomic, copy) void (^clickDeleteBlock)(BOOL isDelete);
  22. -(void)setModel:(MGGroupUserInfo *)model;
  23. @end