//
|
// ESVideoSDK.m
|
// ESVideoPhoneSDKDemo
|
//
|
// Created by 陈嘉乐 on 2020/6/11.
|
// Copyright © 2020 eTouchSky. All rights reserved.
|
//
|
|
#import "ESVideoSDK.h"
|
#import "GDHDLUtlis.h"
|
|
@interface ESVideoSDK()
|
|
@property (nonatomic,strong) ESVideoPhone *es;
|
|
|
@end
|
|
@implementation ESVideoSDK
|
|
static ESVideoSDK* _instance = nil;
|
|
|
|
+(instancetype) shareInstance
|
{
|
static dispatch_once_t onceToken ;
|
dispatch_once(&onceToken, ^{
|
_instance = [[super allocWithZone:NULL] init] ;
|
|
}) ;
|
|
return _instance ;
|
}
|
|
-(void)initSDK
|
{
|
// _es = [[ESVideoPhone alloc]initESVideoPhoneWithFrame:CGRectMake(0, 57, APP_SCREEN_WIDTH, 211) delegate:d imagecallBack:snapImageCallback];
|
}
|
|
@end
|