BogoNewsLikesViewController.h 564 B

1234567891011121314151617181920212223242526
  1. //
  2. // BogoNewsLikesViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/5/7.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. typedef enum : NSUInteger {
  10. BOGONEWS_TYPE_LIKES, //点赞
  11. BOGONEWS_TYPE_COMMENT, //评论
  12. } BOGONEWS_TYPE;
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface BogoNewsLikesViewController : BGBaseViewController<UITableViewDelegate,UITableViewDataSource>
  15. @property(nonatomic, assign) BOGONEWS_TYPE newType;
  16. -(instancetype)initWithNewsType:(BOGONEWS_TYPE)newType;
  17. @end
  18. NS_ASSUME_NONNULL_END