123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // EMGlobalVariables.m
- // ChatDemo-UI3.0
- //
- // Created by XieYajie on 2018/12/19.
- // Copyright © 2018 XieYajie. All rights reserved.
- //
- #import "EMGlobalVariables.h"
- BOOL gIsInitializedSDK = NO;
- BOOL gIsCalling = NO;
- static EMGlobalVariables *shared = nil;
- @implementation EMGlobalVariables
- + (instancetype)shareGlobal
- {
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- shared = [[EMGlobalVariables alloc] init];
- });
-
- return shared;
- }
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- //
- }
-
- return self;
- }
- @end
|