MGNewDTNearByViewController.h 523 B

12345678910111213141516171819202122232425
  1. //
  2. // MGNewDTNearByViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/11.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "MGNewDTNearPeopleCell.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MGNewDTNearByViewController : BGBaseViewController<UITableViewDelegate,UITableViewDataSource>
  12. @property(nonatomic, strong) UITableView *tableView;
  13. -(instancetype)initWithType:(MGNEWDT_TYPE)type;
  14. @property(nonatomic, assign) MGNEWDT_TYPE type;
  15. @end
  16. NS_ASSUME_NONNULL_END