BGConversationServiceController.h 767 B

123456789101112131415161718192021222324252627
  1. //
  2. // BGConversationServiceController.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/18.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseChatController.h"
  9. @class SFriendObj;
  10. typedef void (^BackOrGoNextVCBlock)(int tag);
  11. @interface BGConversationServiceController : BGBaseChatController
  12. @property (copy, nonatomic) BackOrGoNextVCBlock backOrGoNextVCBlock;
  13. @property (nonatomic, strong) SFriendObj *mChatFriend;
  14. + (BGConversationServiceController *)makeChatVCWith:(SFriendObj *)chattag;
  15. + (BGConversationServiceController *)makeChatVCWith:(SFriendObj *)chattag isHalf:(BOOL)mbhalf;
  16. + (BGConversationServiceController *)createIMMsgVCWithHalfWith:(SFriendObj *)friend_Obj form:(UIViewController *)full_VC isRelive:(BOOL)sender;
  17. @end