ChatTradeCell.h 805 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ChatTradeCell.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/22.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol IMCellTradeDelegate <NSObject>
  10. @end
  11. @interface ChatTradeCell : UITableViewCell
  12. @property (nonatomic, weak) id<IMCellTradeDelegate> delegate;
  13. @property (weak, nonatomic) IBOutlet UIImageView *mheadimg;
  14. @property (weak, nonatomic) IBOutlet UILabel *mname;
  15. @property (weak, nonatomic) IBOutlet UILabel *mtime;
  16. @property (weak, nonatomic) IBOutlet UILabel *mmsg;
  17. @property (weak, nonatomic) IBOutlet UIImageView *mdownImg;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *mMsg_LabRight_Constraint;
  19. @property (nonatomic, copy) NSString *contentFlag; // cell是否展开 0未展开 1展开
  20. - (CGFloat)judge:(NSString *)msg;
  21. @end