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