BogoNewsViewController.h 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // BogoNewsViewController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/12.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import <UIKit/UIKit.h>
  10. #import "BGConversationSegmentController.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @class SFriendObj;
  13. @protocol ConversationListViewDelegate <NSObject>
  14. @optional
  15. - (void)clickFriendItem:(SFriendObj *)obj; //点击某行
  16. - (void)reloadChatBadge:(int)selectItem; //删除对话时修改角标
  17. - (void)updateChatFriendBadge:(int)unReadNum; //修改角标
  18. @end
  19. @interface BogoNewsViewController :BGConversationSegmentController
  20. @property (nonatomic, strong) UITableView *mTableView;
  21. @property (nonatomic, strong) NSMutableArray *conversationArr;
  22. @property (nonatomic, assign) BOOL isHaveLive; //只有一半的情况
  23. @property (nonatomic, weak) id<ConversationListViewDelegate> delegate;
  24. - (void)updateTableViewFrame;
  25. @end
  26. NS_ASSUME_NONNULL_END