STCell.h 493 B

1234567891011121314151617181920212223
  1. /**
  2. 给msgVC设置的。左边是imageView。textLabel和detail上下分布
  3. */
  4. #import <UIKit/UIKit.h>
  5. @interface STCell : UITableViewCell
  6. /**系统消息的model
  7. */
  8. @property(nonatomic,strong)NSDictionary* model;
  9. /**回复与赞的model
  10. */
  11. @property(nonatomic,strong)NSDictionary* modelReply;
  12. +(STCell*)cellForTableView:(UITableView*)tableView;
  13. @end
  14. /**
  15. 如果回复cell和系统消息cell布局不同。可以设置不同的model。然后。判断model来进行layoutsubview
  16. */