CNBPerAuthManager.m
631 Bytes
//
// CNBPerAuthManager.m
// CNLiveBPersonalVerificationModule
//
// Created by 殷巧娟 on 2020/4/11.
//
#import "CNBPerAuthManager.h"
@interface CNBPerAuthManager ()
@end
@implementation CNBPerAuthManager
+ (instancetype)shareManager {
static CNBPerAuthManager *manager = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
manager = [[self alloc] init];
});
return manager;
}
- (instancetype)init {
if (self = [super init]) {
self.instSelectedArray = [NSMutableArray array];
self.circleDic = [NSMutableDictionary dictionary];
}
return self;
}
@end