// // PBIMCenter.h // PBSDK // // Created by mbp on 2024/12/13. // #import NS_ASSUME_NONNULL_BEGIN @protocol PBIMCenterDelegate @end @interface PBIMCenterCfg: NSObject /// IM appId @property (nonatomic, copy) NSString *appId; @end @interface PBIMCenter : NSObject @property (nonatomic, weak ) id delegate; + (PBIMCenter *)shared; + (void)initCenter; @end NS_ASSUME_NONNULL_END