XLFormPhotoView.podspec 959 B

12345678910111213141516171819
  1. Pod::Spec.new do |s|
  2. s.name = 'XLFormPhotoView'
  3. s.version = '3.3.0'
  4. s.license = { :type => 'MIT' }
  5. s.summary = '在XLForm的基础上增加了自定义Cell类型,此Cell封装了TZImagePicker项目,以适配XLForm'
  6. s.description = <<-DESC
  7. TZImagePicker:https://github.com/banchichen/TZImagePickerController
  8. XLForm:https://github.com/xmartlabs/XLForm
  9. 检出代码后,xcode运行可在Custom Row里看到效果,例子在XLFormPhotoView/Examples/Objective-C/Examples/CustomRows/TZImagePicker/目录下
  10. DESC
  11. s.homepage = 'https://github.com/qd-hzc/XLFormPhotoView'
  12. s.authors = { '尹彬' => 'ybkk1027@gmail.com' }
  13. s.source = { :git => 'https://github.com/qd-hzc/XLFormPhotoView.git', :tag => s.version }
  14. s.source_files = 'XLForm/XL/**/*.{h,m}'
  15. s.requires_arc = true
  16. s.ios.deployment_target = '7.0'
  17. s.ios.frameworks = 'UIKit', 'Foundation', 'CoreGraphics'
  18. s.resource = 'XLForm/XLForm.bundle'
  19. end