BogoNewsSystemViewController.h 659 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BogoNewsSystemViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/5/14.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BGConversationSegmentController.h"
  9. #import <UIKit/UIKit.h>
  10. @class SFriendObj;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface BogoNewsSystemViewController : BGConversationSegmentController
  13. @property (nonatomic, strong) UITableView *mTableView;
  14. @property (nonatomic, strong) NSMutableArray *conversationArr;
  15. @property (nonatomic, assign) BOOL isHaveLive; //只有一半的情况
  16. //@property (nonatomic, weak) id<ConversationListViewDelegate> delegate;
  17. - (void)updateTableViewFrame;
  18. @end
  19. NS_ASSUME_NONNULL_END