luozhiping

# commit podspec

Pod::Spec.new do |s|
s.name = 'HHPhotoPicker'
s.version= "0.0.1"
s.summary = '和缓相册选择器'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'git@code.hh-medic.com:hh_public/HHPhotoPickerPro.git'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hh_client@hh-medic.com' => 'luozhiping@hh-medic.com' }
s.source = { :git => 'https://code.hh-medic.com/hh_public/HHPhotoPickerPro', :branch => 'develop' }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.source_files = 'HHPhotoPicker.framework/Headers/*.*'
s.vendored_frameworks = 'HHPhotoPicker.framework'
s.frameworks = 'SystemConfiguration', 'AVFoundation', 'Accelerate'
s.libraries = 'c++','resolv'
s.ios.deployment_target = '9.0'
s.pod_target_xcconfig = {
'OTHER_LDFLAGS' => '-ObjC',
'ENABLE_BITCODE' => 'NO',
'ARCHS' => ['arm64']
}
end
... ...
# 和缓最新相册选择器接入文档
# 1,使用pod方式集成:
pod "HHDoctor", :git => "https://code.hh-medic.com/hh_public/hh.iOS.photopicker.git", :branch => "develop"
pod "HHPhotoPicker", :git => "https://code.hh-medic.com/hh_public/HHPhotoPickerPro.git", :branch => "develop"
# 2,导入头文件
import HHPhotoPicker
... ...