Commit 89549c8fc483ba6b2256ae6792eeeafca5c65652

Authored by yinqiaojuan
1 parent 52c6e31a

添加 DZNEmptyDataSet

CNLiveTripartiteManagement.podspec
... ... @@ -35,6 +35,10 @@ Pod::Spec.new do |s|
35 35 # flImage.dependency 'FLAnimatedImage', '1.0.12'
36 36 #flImage.source_files = 'CNLiveTripartiteManagement/Classes/FLAnimatedImage/*'
37 37 #end
  38 + s.subspec 'DZNEmptyDataSet' do |emptyData|
  39 + emptyData.dependency 'DZNEmptyDataSet', '1.8.1'
  40 + emptyData.source_files = 'CNLiveTripartiteManagement/Classes/DZNEmptyDataSet/*'
  41 + end
38 42 s.subspec 'FMDB' do |fmdb|
39 43 fmdb.dependency 'FMDB', '2.7.5'
40 44 fmdb.source_files = 'CNLiveTripartiteManagement/Classes/FMDB/*'
... ...
CNLiveTripartiteManagement/Classes/DZNEmptyDataSet/README.md 0 → 100644
  1 +# CNLiveTripartiteManagement
  2 +
  3 +[![CI Status](https://img.shields.io/travis/殷巧娟/CNLiveTripartiteManagement.svg?style=flat)](https://travis-ci.org/殷巧娟/CNLiveTripartiteManagement)
  4 +[![Version](https://img.shields.io/cocoapods/v/CNLiveTripartiteManagement.svg?style=flat)](https://cocoapods.org/pods/CNLiveTripartiteManagement)
  5 +[![License](https://img.shields.io/cocoapods/l/CNLiveTripartiteManagement.svg?style=flat)](https://cocoapods.org/pods/CNLiveTripartiteManagement)
  6 +[![Platform](https://img.shields.io/cocoapods/p/CNLiveTripartiteManagement.svg?style=flat)](https://cocoapods.org/pods/CNLiveTripartiteManagement)
  7 +
  8 +## Example
  9 +
  10 +To run the example project, clone the repo, and run `pod install` from the Example directory first.
  11 +
  12 +## Requirements
  13 +
  14 +## Installation
  15 +
  16 +CNLiveTripartiteManagement is available through [CocoaPods](https://cocoapods.org). To install
  17 +it, simply add the following line to your Podfile:
  18 +
  19 +```ruby
  20 +pod 'CNLiveTripartiteManagement'
  21 +```
  22 +
  23 +## Author
  24 +
  25 +殷巧娟, 1427945373@qq.com
  26 +
  27 +## License
  28 +
  29 +CNLiveTripartiteManagement is available under the MIT license. See the LICENSE file for more info.
... ...
Example/CNLiveTripartiteManagement.xcodeproj/project.pbxproj
... ... @@ -373,6 +373,7 @@
373 373 "${PODS_ROOT}/Target Support Files/Pods-CNLiveTripartiteManagement_Example/Pods-CNLiveTripartiteManagement_Example-frameworks.sh",
374 374 "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework",
375 375 "${BUILT_PRODUCTS_DIR}/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework",
  376 + "${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework",
376 377 "${BUILT_PRODUCTS_DIR}/FMDB/FMDB.framework",
377 378 "${BUILT_PRODUCTS_DIR}/HappyDNS/HappyDNS.framework",
378 379 "${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework",
... ... @@ -399,6 +400,7 @@
399 400 outputPaths = (
400 401 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AFNetworking.framework",
401 402 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveTripartiteManagement.framework",
  403 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DZNEmptyDataSet.framework",
402 404 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FMDB.framework",
403 405 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/HappyDNS.framework",
404 406 "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework",
... ...