BGConversationListController.h 872 B

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