MGNewDTNearPeopleCell.h 970 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MGNewDTNearPeopleCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/18.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MGNewDTNearlistModel.h"//附近的人model
  10. #import "MGDynamicTopicModel.h"//动态model
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface MGNewDTNearPeopleCell : UITableViewCell
  13. @property(nonatomic, assign) MGNEWDT_TYPE dtType;//类型
  14. @property(nonatomic, strong) UIImageView *headImgView;
  15. @property(nonatomic, strong) UILabel *nickNameL;
  16. @property(nonatomic, strong) UIView *line;
  17. //话题
  18. @property(nonatomic, strong) UILabel *contentL;
  19. @property(nonatomic, strong) UIImageView *rightImgView;
  20. //附近的人
  21. @property(nonatomic, strong) UILabel *timeL;
  22. @property(nonatomic, strong) UILabel *distanceL;
  23. @property(nonatomic, strong) UIImageView *sexImgView;
  24. @property(nonatomic, strong) QMUIButton *certImgView;
  25. -(void)resetModelWithModel:(id)model type:(MGNEWDT_TYPE)dtType;
  26. @end
  27. NS_ASSUME_NONNULL_END