BGConversationSegmentController.h 929 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BGConversationSegmentController.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/22.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JSBadgeView.h"
  10. @class SFriendObj;
  11. typedef void (^GoNextVCBlock)(int tag, SFriendObj *friend_Obj);
  12. @interface BGConversationSegmentController : BGBaseViewController
  13. @property (nonatomic, assign) BOOL mbhalf; //只有一半的情况
  14. @property (nonatomic, strong) JSBadgeView *badgeTrade;
  15. @property (nonatomic, retain) JSBadgeView *badgeFriend;
  16. @property (nonatomic, strong) JSBadgeView *badgeStranger;
  17. @property (copy, nonatomic) GoNextVCBlock goNextVCBlock;
  18. + (void)showIMChatInVCWithHalf:(UIViewController *)vc inView:(UIView *)inView;
  19. + (BGConversationSegmentController *)createIMChatVCWithHalf:(UIViewController *)full_VC isRelive:(BOOL)sender;
  20. - (void)goNextVCBlock:(int)tag:(SFriendObj *)friend_Obj;
  21. - (void)loadBtnBadageData;
  22. @end