PBIMCenter.h 471 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // PBIMCenter.h
  3. // PBSDK
  4. //
  5. // Created by mbp on 2024/12/13.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol PBIMCenterDelegate <NSObject>
  10. @end
  11. @interface PBIMCenterCfg: NSObject
  12. /// IM appId
  13. @property (nonatomic, copy) NSString *appId;
  14. @end
  15. @interface PBIMCenter : NSObject
  16. @property (nonatomic, weak ) id <PBIMCenterDelegate> delegate;
  17. + (PBIMCenter *)shared;
  18. + (void)initWithAppKey:(NSString*)appKey;
  19. @end
  20. NS_ASSUME_NONNULL_END