由于SDK不支持bitcode,需要工程在工程TARGET Build Setting中设置Enable Bitcode设置为NO
platform :ios, '12.0'
source 'https://github.com/CocoaPods/Specs.git'
# source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git' 国内源使用该种方式指定
source 'http://39.96.8.150:10080/l405023944/LenzSDK_iOS.git'
target 'Demo' do
pod 'LenzSDK' ,'~> 1.0.0'
end
导入头文件
#import <LenzSDK/LenzCameraSDK.h>
使用SDK
[LenzCameraSDK showCameraSDKWithParams:dict presentVC:self complete:^(NSDictionary * _Nonnull dict) {
//数据回调,业务使用
}];