Commit ec85a636d265ff2f4c2d16f6939d08c9a0c51beb

Authored by 毕珂
0 parents

0.0.0

Showing 87 changed files with 3836 additions and 0 deletions
DSBaseControlsModuleF.podspec 0 → 100644
  1 +++ a/DSBaseControlsModuleF.podspec
  1 +Pod::Spec.new do |s|
  2 +
  3 + s.name = "DSBaseControlsModuleF"
  4 + s.version = "0.0.9"
  5 + s.summary = "DSBaseControlsModuleF"
  6 + s.homepage = "http://bj.gitlab.cnlive.com/DSIOSTeam"
  7 + s.authors = { "DSIOSTeam" => "694092596@qq.com" }
  8 + s.license = "MIT"
  9 + s.source = { :git => 'http://bj.gitlab.cnlive.com/DSIOSTeam/DSBaseControlsModuleF.git', :tag => s.version.to_s }
  10 + s.ios.deployment_target = '9.0'
  11 + s.vendored_frameworks = "DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework"
  12 +
  13 + s.frameworks = 'Foundation', 'UIKit'
  14 + s.dependency 'QMUIKit', '4.0.2'
  15 + s.dependency 'Masonry', '1.1.0'
  16 + s.dependency 'SDWebImage', '~> 5.2.3'
  17 + s.dependency 'DSBaseModuleF'
  18 + s.dependency 'DSExtensionModuleF'
  19 + s.dependency 'DSToolsModuleF'
  20 +
  21 +end
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/DSBaseControlsModule 0 → 100755
No preview for this file type
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/DSBaseViewController.bundle/DS_BCM_nav_back@2x.png 0 → 100644

496 Bytes

DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/DSBaseViewController.bundle/DS_BCM_nav_back@3x.png 0 → 100644

733 Bytes

DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMBaseViewController.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMBaseViewController.h
  1 +//
  2 +// DSBCMBaseViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/5/7.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +// 公开基类
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import <Foundation/Foundation.h>
  11 +#import "DSNavButton.h"
  12 +
  13 +UIKIT_EXTERN const CGFloat kTopNavLeftRightOffset;
  14 +
  15 +NS_ASSUME_NONNULL_BEGIN
  16 +
  17 +@interface DSBCMBaseViewController : UIViewController
  18 +
  19 +#pragma mark - 通用属性
  20 +
  21 +@property (nonatomic,copy,nullable) NSDictionary * baseMessage;
  22 +/// 控制器唯一标识
  23 +@property (nonatomic,copy,nonnull,readonly) NSString * uniqueIdentity;
  24 +
  25 +#pragma mark - 通用方法
  26 +
  27 +/// 获取数据方法 切换用户后,回到此界面会重新调用此方法
  28 +-(void)requestDataMethod;
  29 +
  30 +#pragma mark - 顶部导航
  31 +
  32 +@property (nonatomic,strong) UIView * topNavView;//高度为 get_system_nav_height()
  33 +@property (nonatomic,strong) UILabel * titleLab;
  34 +@property (nonatomic,strong,nullable) NSArray<DSNavButton*> * leftNavBtns;
  35 +@property (nonatomic,strong,nullable) NSArray<DSNavButton*> * rightNavBtns;
  36 +@property (nonatomic,strong) UIImageView * topLine;
  37 +@property (nonatomic,assign) CGFloat topNavViewHeight;//topNavView的高度 默认高度为 get_system_nav_height()
  38 +@property (nonatomic,assign) CGFloat topNavViewSubUIContentOffsetY;//顶部导航内容(不带topLine)偏移量Y 初始值为0
  39 +
  40 +/**
  41 + 添加左边返回按钮(特殊情况时使用)
  42 + */
  43 +-(void)addLeftBackNavBtn;
  44 +
  45 +/**
  46 + 左边导航按钮事件
  47 + */
  48 +-(void)leftNavBtnAction;
  49 +
  50 +#pragma mark - 底部导航
  51 +
  52 +@property (nonatomic,strong) UIView * bottomNavView;//高度为 0
  53 +@property (nonatomic,strong) UIImageView * bottomLine;
  54 +@property (nonatomic,assign) CGFloat bottomNavViewHeight;//bottomNavView的高度 默认高度为 0
  55 +@property (nonatomic,assign) CGFloat bottomLineOffsetY;//底部导航分割线偏移量Y 初始值为0
  56 +#pragma mark - 是否禁止右滑返回
  57 +
  58 +/**
  59 + 是否禁止右滑返回
  60 + */
  61 +@property (nonatomic,assign) BOOL popGestureRecognizerEnable;
  62 +
  63 +/**
  64 + 侧滑返回指定控制器
  65 + */
  66 +@property (nonatomic,weak) UIViewController * interactivePopViewController;
  67 +
  68 +/**
  69 + 在导航中删除指定控制器
  70 +
  71 + @param controller 控制器
  72 + */
  73 +-(void)removeControllerInNavigation:(UIViewController*)controller;
  74 +
  75 +/**
  76 + 在导航中删除指定控制器数组
  77 +
  78 + @param controllers 控制器数组
  79 + */
  80 +-(void)removeControllersInNavigation:(NSArray<UIViewController*>*)controllers;
  81 +
  82 +#pragma mark - 状态栏
  83 +
  84 +@property (nonatomic,assign) UIStatusBarStyle statusBarStyle;//状态栏样式
  85 +@property (nonatomic,assign) BOOL statusBarHidden;//状态栏是否隐藏
  86 +@property (nonatomic,assign) UIStatusBarAnimation statusBarUpdateAnimation;//状态栏更新动画
  87 +
  88 +/**
  89 + 状态栏是否隐藏(带动画)
  90 +
  91 + @param hidden 是否隐藏
  92 + @param animation 动画类型
  93 + */
  94 +-(void)setStatusBarHidden:(BOOL)hidden withAnimation:(UIStatusBarAnimation)animation;
  95 +
  96 +@end
  97 +
  98 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMCollectionReusableView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMCollectionReusableView.h
  1 +//
  2 +// DSBCMCollectionReusableView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/12/26.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSBCMCollectionReusableView : UICollectionReusableView
  13 +
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMCollectionView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMCollectionView.h
  1 +//
  2 +// DSBCMCollectionView.h
  3 +//
  4 +//
  5 +// Created by BIKE on 2018/7/11.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +@interface DSBCMCollectionView : UICollectionView
  12 +
  13 +#pragma mark - 手势
  14 +
  15 +/**
  16 + 点击手势
  17 + */
  18 +@property (nonatomic,strong) UITapGestureRecognizer * csTapGestureRecognizer;
  19 +
  20 +@end
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMCollectionViewCell.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMCollectionViewCell.h
  1 +//
  2 +// DSBCMCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/12/5.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSBCMCollectionViewCell : UICollectionViewCell
  13 +
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMScrollView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMScrollView.h
  1 +//
  2 +// DSBCMScrollView.h
  3 +//
  4 +//
  5 +// Created by BIKE on 2018/7/11.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +@interface DSBCMScrollView : UIScrollView
  12 +
  13 +#pragma mark - 手势
  14 +
  15 +/**
  16 + 点击手势
  17 + */
  18 +@property (nonatomic,strong) UITapGestureRecognizer * csTapGestureRecognizer;
  19 +
  20 +@end
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTabBar.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTabBar.h
  1 +//
  2 +// DSBCMTabBar.h
  3 +// com.cnlive.pro.CNLiveNetAdd
  4 +//
  5 +// Created by zhaolin on 2019/9/16.
  6 +// Copyright © 2019 cnlive. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSBCMTabBar : UIView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTabBarButton.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTabBarButton.h
  1 +//
  2 +// DSBCMTabBarButton.h
  3 +// com.cnlive.pro.CNLiveNetAdd
  4 +//
  5 +// Created by zhaolin on 2019/9/16.
  6 +// Copyright © 2019 cnlive. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSBCMTabBarButton : UIButton
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTabBarViewController.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTabBarViewController.h
  1 +//
  2 +// DSBCMTabBarViewController.h
  3 +// com.cnlive.pro.CNLiveNetAdd
  4 +//
  5 +// Created by zhaolin on 2019/9/16.
  6 +// Copyright © 2019 cnlive. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseControlsModule/DSBCMBaseViewController.h>
  10 +#import "DSBCMTabBar.h"
  11 +@class DSBCMTabBarViewController;
  12 +
  13 +@protocol DSBCMTabBarViewControllerDelegate <NSObject>
  14 +
  15 +@optional
  16 +
  17 +/// 切换index代理 实现了这个代理后 切换index必须用调用tabBar.displayIndex=switchIndex才能切换显示界面
  18 +/// @param tabBar DSBCMTabBarViewController
  19 +/// @param switchIndex 切换后index
  20 +/// @param fromIndex 切换前index
  21 +-(void)tabBar:(nonnull DSBCMTabBarViewController*)tabBar switchIndex:(NSUInteger)switchIndex fromIndex:(NSUInteger)fromIndex;
  22 +
  23 +@end
  24 +
  25 +NS_ASSUME_NONNULL_BEGIN
  26 +
  27 +@interface DSBCMTabBarViewController : DSBCMBaseViewController
  28 +
  29 +#pragma mark - 代理
  30 +
  31 +@property (nonatomic,weak) id<DSBCMTabBarViewControllerDelegate> delegate;
  32 +
  33 +#pragma mark - 属性
  34 +
  35 +/// 默认颜色
  36 +@property (nonatomic,strong) UIColor * normalColor;
  37 +/// 选中颜色
  38 +@property (nonatomic,strong) UIColor * selectColor;
  39 +/// 所有的子控制器
  40 +@property (nonatomic,strong,readonly) NSMutableArray<UIViewController*> * viewControllers;
  41 +/// 当前显示的索引
  42 +@property (nonatomic,assign) NSUInteger displayIndex;
  43 +/// 当前显示的子控制器
  44 +@property (nonatomic,weak,readonly) UIViewController * displayViewController;
  45 +
  46 +#pragma mark - UI
  47 +
  48 +/**
  49 + DSTabBar
  50 + */
  51 +@property (nonatomic,strong) DSBCMTabBar * tabBar;
  52 +
  53 +#pragma mark - 消息数
  54 +
  55 +/// 消息默认大小 默认15,15
  56 +@property (nonatomic,assign) CGSize messageSize;
  57 +/// 消息字号 默认10
  58 +@property (nonatomic,strong) UIFont * messageFont;
  59 +/// 消息背景颜色 默认[UIColor redColor]
  60 +@property (nonatomic,strong) UIColor * messageBgColor;
  61 +/// 消息字体颜色 默认[UIColor whiteColor]
  62 +@property (nonatomic,strong) UIColor * messageTitleColor;
  63 +/// 消息字左右与背景间距 默认4
  64 +@property (nonatomic,assign) CGFloat messageTitleLRInset;
  65 +/// 消息x/y偏移量 默认-4,4
  66 +@property (nonatomic,assign) CGPoint messagePositionOffset;
  67 +
  68 +/// 设置消息数
  69 +/// @param messageCount 消息数
  70 +/// @param index 对应索引
  71 +-(void)settingMessageCount:(NSUInteger)messageCount index:(NSUInteger)index;
  72 +
  73 +#pragma mark - 添加/删除/修改子控制器
  74 +
  75 +/**
  76 + 添加子控制器
  77 +
  78 + @param childController 子控制器 标题就是导航标题
  79 + @param normalImage 普通样式图片
  80 + @param selectImage 选中样式图片
  81 + @return 添加结果 YES成功 NO失败
  82 + */
  83 +-(BOOL)addChildViewController:(nonnull UIViewController *)childController noralImage:(nullable UIImage*)normalImage selectImage:(nullable UIImage*)selectImage;
  84 +
  85 +/// 插入子控制器
  86 +/// @param childController 子控制器 标题就是导航标题
  87 +/// @param normalImage 普通样式图片
  88 +/// @param selectImage 选中样式图片
  89 +/// @param index 插入index
  90 +/// @return 添加结果 YES成功 NO失败
  91 +-(BOOL)insertChildViewController:(nonnull UIViewController *)childController noralImage:(nullable UIImage*)normalImage selectImage:(nullable UIImage*)selectImage index:(NSUInteger)index;
  92 +
  93 +/**
  94 + 删除子控制器
  95 +
  96 + @param childController 子控制器
  97 + @return 删除结果 YES成功 NO失败
  98 + */
  99 +-(BOOL)removeChildViewController:(nonnull UIViewController *)childController;
  100 +
  101 +/**
  102 + 删除子控制器(用索引)
  103 +
  104 + @param index 子控制器索引
  105 + @return 删除结果 YES成功 NO失败
  106 + */
  107 +-(BOOL)removeChildViewControllerAtIndex:(NSUInteger)index;
  108 +
  109 +/// 修改子控制器
  110 +/// @param childController 子控制器 标题就是导航标题
  111 +/// @param normalImage 普通样式图片
  112 +/// @param selectImage 选中样式图片
  113 +/// @param index 修改index
  114 +/// @return 修改结果 YES成功 NO失败
  115 +-(BOOL)changeChildViewController:(nonnull UIViewController *)childController noralImage:(nullable UIImage*)normalImage selectImage:(nullable UIImage*)selectImage index:(NSUInteger)index;
  116 +
  117 +@end
  118 +
  119 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTableView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTableView.h
  1 +//
  2 +// DSBCMTableView.h
  3 +//
  4 +//
  5 +// Created by BIKE on 2018/7/11.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +@interface DSBCMTableView : UITableView
  12 +
  13 +#pragma mark - 手势
  14 +
  15 +/**
  16 + 点击手势
  17 + */
  18 +@property (nonatomic,strong) UITapGestureRecognizer * csTapGestureRecognizer;
  19 +
  20 +@end
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTableViewCell.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTableViewCell.h
  1 +//
  2 +// DSBCMTableViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/11/27.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSBCMTableViewCell : UITableViewCell
  13 +
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTableViewHeaderFooterView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMTableViewHeaderFooterView.h
  1 +//
  2 +// DSBCMTableViewHeaderFooterView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/11/27.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSBCMTableViewHeaderFooterView : UITableViewHeaderFooterView
  13 +
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBCMView.h
  1 +//
  2 +// DSBCMView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/11/26.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSBCMView : UIView
  13 +
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBaseControlsModule-umbrella.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBaseControlsModule-umbrella.h
  1 +#ifdef __OBJC__
  2 +#import <UIKit/UIKit.h>
  3 +#else
  4 +#ifndef FOUNDATION_EXPORT
  5 +#if defined(__cplusplus)
  6 +#define FOUNDATION_EXPORT extern "C"
  7 +#else
  8 +#define FOUNDATION_EXPORT extern
  9 +#endif
  10 +#endif
  11 +#endif
  12 +
  13 +#import "DSBaseControlsModuleHeader.h"
  14 +#import "DSBCMBaseViewController.h"
  15 +#import "DSNavButton.h"
  16 +#import "UIImage+DSBaseViewController.h"
  17 +#import "DSBCMCollectionReusableView.h"
  18 +#import "DSBCMCollectionView.h"
  19 +#import "DSBCMCollectionViewCell.h"
  20 +#import "DSEmptyView.h"
  21 +#import "UIView+DSEmptyView.h"
  22 +#import "DSImageView+DSBaseControlsModule.h"
  23 +#import "DSImageView.h"
  24 +#import "DSPercentDrivenInteractiveTransition.h"
  25 +#import "DSTransitionAnimater.h"
  26 +#import "DSTransitionEnum.h"
  27 +#import "DSViewControllerNaviDelegate.h"
  28 +#import "NSObject+DSNavExtension.h"
  29 +#import "UIViewController+DSNavExtension.h"
  30 +#import "DSBCMScrollView.h"
  31 +#import "DSBCMTabBar.h"
  32 +#import "DSBCMTabBarButton.h"
  33 +#import "DSBCMTabBarViewController.h"
  34 +#import "DSBCMTableView.h"
  35 +#import "DSBCMTableViewCell.h"
  36 +#import "DSBCMTableViewHeaderFooterView.h"
  37 +#import "DSBCMView.h"
  38 +
  39 +FOUNDATION_EXPORT double DSBaseControlsModuleVersionNumber;
  40 +FOUNDATION_EXPORT const unsigned char DSBaseControlsModuleVersionString[];
  41 +
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBaseControlsModuleHeader.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSBaseControlsModuleHeader.h
  1 +//
  2 +// DSToolsModuleHeader.h
  3 +// DSToolsModule
  4 +//
  5 +// Created by zhaolin on 2020/2/20.
  6 +//
  7 +
  8 +#ifndef DSToolsModuleHeader_h
  9 +#define DSToolsModuleHeader_h
  10 +
  11 +#if __has_include("DSBCMBaseViewController.h")
  12 +#import "DSBCMBaseViewController.h"
  13 +#endif
  14 +
  15 +#if __has_include("DSBCMCollectionView.h")
  16 +#import "DSBCMCollectionView.h"
  17 +#import "DSBCMCollectionReusableView.h"
  18 +#import "DSBCMCollectionViewCell.h"
  19 +#endif
  20 +
  21 +#if __has_include("DSEmptyView.h")
  22 +#import "DSEmptyView.h"
  23 +#import "UIView+DSEmptyView.h"
  24 +#endif
  25 +
  26 +#if __has_include("DSImageView.h")
  27 +#import "DSImageView.h"
  28 +#import "DSImageView+DSBaseControlsModule.h"
  29 +#endif
  30 +
  31 +#if __has_include("DSTransitionEnum.h")
  32 +#import "DSTransitionEnum.h"
  33 +#import "NSObject+DSNavExtension.h"
  34 +#import "UIViewController+DSNavExtension.h"
  35 +#endif
  36 +
  37 +#if __has_include("DSBCMScrollView.h")
  38 +#import "DSBCMScrollView.h"
  39 +#endif
  40 +
  41 +#if __has_include("DSBCMTabBarViewController.h")
  42 +#import "DSBCMTabBarViewController.h"
  43 +#import "DSBCMTabBar.h"
  44 +#import "DSBCMTabBarButton.h"
  45 +#endif
  46 +
  47 +#if __has_include("DSBCMTableView.h")
  48 +#import "DSBCMTableView.h"
  49 +#import "DSBCMTableViewCell.h"
  50 +#import "DSBCMTableViewHeaderFooterView.h"
  51 +#endif
  52 +
  53 +#if __has_include("DSBCMView.h")
  54 +#import "DSBCMView.h"
  55 +#endif
  56 +
  57 +#endif /* DSToolsModuleHeader_h */
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSEmptyView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSEmptyView.h
  1 +//
  2 +// DSEmptyView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/11/16.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSEmptyView : UIView
  13 +
  14 +/// 加入间距
  15 +@property (nonatomic,assign) UIEdgeInsets inset;
  16 +
  17 +#pragma mark - 空白图片
  18 +
  19 +/// 空白图片
  20 +@property (nonatomic,strong,nullable) UIImage * emptyImage;
  21 +/// 空白页图片大小 默认size(100, 100)
  22 +@property (nonatomic,assign) CGSize emptyImageViewSize;
  23 +
  24 +#pragma mark - 提示
  25 +
  26 +/// 提示信息
  27 +@property (nonatomic,copy,nullable) NSString * remind;
  28 +/// 提示信息(富文本) 与remind互斥
  29 +@property (nonatomic,copy,nullable) NSAttributedString * attr_remind;
  30 +/// 提示对icon底部的间距 默认6
  31 +@property (nonatomic,assign) CGFloat remindLabTopMargin;
  32 +/// 提示大小 默认size(300, 25)
  33 +@property (nonatomic,assign) CGSize remindLabSize;
  34 +/// 提示字颜色 默认按000000
  35 +@property (nonatomic,strong,nullable) UIColor * remindLabTitleColor;
  36 +/// 提示字号 默认按14
  37 +@property (nonatomic,strong,nullable) UIFont * remindLabTitleFont;
  38 +
  39 +#pragma mark - 副提示
  40 +
  41 +/// 副提示信息
  42 +@property (nonatomic,copy,nullable) NSString * hint;
  43 +/// 提示信息(富文本) 与hint互斥
  44 +@property (nonatomic,copy,nullable) NSAttributedString * attr_hint;
  45 +/// 副提示对提示底部的间距 距上4
  46 +@property (nonatomic,assign) CGFloat hintLabTopMargin;
  47 +/// 副提示大小 默认size(300, 25)
  48 +@property (nonatomic,assign) CGSize hintLabSize;
  49 +/// 副提示字颜色 默认按AFAFAF
  50 +@property (nonatomic,strong,nullable) UIColor * hintLabTitleColor;
  51 +/// 副提示字号 默认按12
  52 +@property (nonatomic,strong,nullable) UIFont * hintLabTitleFont;
  53 +
  54 +#pragma mark - 处理按钮
  55 +
  56 +/// 处理按钮标题
  57 +@property (nonatomic,copy,nullable) NSString * disposeBtnTitle;
  58 +/// 提示信息(富文本) 与disposeBtnTitle互斥
  59 +@property (nonatomic,copy,nullable) NSAttributedString * attr_disposeBtnTitle;
  60 +/// 处理按钮对副提示底部的间距 距上15
  61 +@property (nonatomic,assign) CGFloat disposeBtnTopMargin;
  62 +/// 处理按钮大小 默认size(150, 35)
  63 +@property (nonatomic,assign) CGSize disposeBtnSize;
  64 +/// 处理按钮颜色 默认按[UIColor clearColor]
  65 +@property (nonatomic,strong,nullable) UIColor * disposeBtnColor;
  66 +/// 处理按钮边框颜色 默认按ff725c
  67 +@property (nonatomic,strong,nullable) UIColor * disposeBtnStrokeColor;
  68 +/// 处理按钮字颜色 默认按ff725c
  69 +@property (nonatomic,strong,nullable) UIColor * disposeBtnTitleColor;
  70 +/// 处理按钮字号 默认按13
  71 +@property (nonatomic,strong,nullable) UIFont * disposeBtnTitleFont;
  72 +/// 处理按钮角度 默认0即高度的一半 小于0代表不切角
  73 +@property (nonatomic,assign) CGFloat disposeBtnRadius;
  74 +
  75 +#pragma mark - 回调
  76 +
  77 +/**
  78 + 点击处理按钮返回
  79 + */
  80 +@property (nonatomic,copy) void (^tapDisposeBtnCallBack)(void);
  81 +
  82 +@end
  83 +
  84 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSImageView+DSBaseControlsModule.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSImageView+DSBaseControlsModule.h
  1 +//
  2 +// DSImageView+DSBaseControlsModule.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by zhaolin on 2020/1/17.
  6 +// Copyright © 2020 CNLive. All rights reserved.
  7 +//
  8 +
  9 +#import "DSImageView.h"
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSImageView (DSBaseControlsModule)
  14 +
  15 +#pragma mark - 加载图片
  16 +
  17 +/**
  18 + 小等缩略图
  19 + */
  20 +-(void)setSmallerThumbImageWithURL:(nullable NSString*)imageUrl;
  21 +-(void)setSmallerThumbImageWithURL:(nullable NSString*)imageUrl complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  22 +-(void)setSmallerThumbImageWithURL:(nullable NSString*)imageUrl placeholderImage:(nullable UIImage*)placeholderImage;
  23 +-(void)setSmallerThumbImageWithURL:(nullable NSString*)imageUrl placeholderImage:(nullable UIImage*)placeholderImage complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  24 +
  25 +/**
  26 + 中等缩略图
  27 + */
  28 +-(void)setThumbImageWithURL:(nullable NSString*)imageUrl;
  29 +-(void)setThumbImageWithURL:(nullable NSString*)imageUrl complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  30 +-(void)setThumbImageWithURL:(nullable NSString*)imageUrl placeholderImage:(nullable UIImage*)placeholderImage;
  31 +-(void)setThumbImageWithURL:(nullable NSString*)imageUrl placeholderImage:(nullable UIImage*)placeholderImage complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  32 +
  33 +/**
  34 + 大等缩略图
  35 + */
  36 +-(void)setLargerThumbImageWithURL:(nullable NSString*)imageUrl;
  37 +-(void)setLargerThumbImageWithURL:(nullable NSString*)imageUrl complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  38 +-(void)setLargerThumbImageWithURL:(nullable NSString*)imageUrl placeholderImage:(nullable UIImage*)placeholderImage;
  39 +-(void)setLargerThumbImageWithURL:(nullable NSString*)imageUrl placeholderImage:(nullable UIImage*)placeholderImage complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  40 +
  41 +/**
  42 + 原图
  43 + */
  44 +-(void)setOriginalImageWithUrl:(nullable NSString*)imageUrl;
  45 +-(void)setOriginalImageWithUrl:(nullable NSString*)imageUrl isPreThumbImage:(BOOL)isPreThumbImage;
  46 +-(void)setOriginalImageWithUrl:(nullable NSString*)imageUrl isPreThumbImage:(BOOL)isPreThumbImage complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  47 +-(void)setOriginalImageWithUrl:(nullable NSString*)imageUrl isPreThumbImage:(BOOL)isPreThumbImage placeholderImage:(nullable UIImage*)placeholderImage;
  48 +-(void)setOriginalImageWithUrl:(nullable NSString*)imageUrl isPreThumbImage:(BOOL)isPreThumbImage placeholderImage:(nullable UIImage*)placeholderImage complete:(nullable void (^)(UIImage * image, NSURL * imageURL))complete;
  49 +
  50 +@end
  51 +
  52 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSImageView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSImageView.h
  1 +//
  2 +// DSImageView.h
  3 +//
  4 +//
  5 +// Created by BIKE on 2018/7/11.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <SDWebImage/SDWebImage.h>
  10 +
  11 +@interface DSImageView : SDAnimatedImageView
  12 +
  13 +@end
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSNavButton.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSNavButton.h
  1 +//
  2 +// DSNavButton.h
  3 +//
  4 +//
  5 +// Created by BIKE on 2018/7/12.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +/**
  12 + 当图片和标题同时存在时 图片相对于标题的位置
  13 +
  14 + - DSImagePositionLeft: 左边
  15 + - DSImagePositionTop: 上边
  16 + - DSImagePositionRight: 右边
  17 + - DSImagePositionBottom: 下边
  18 + */
  19 +typedef NS_ENUM(NSUInteger, DSImagePosition) {
  20 + DSImagePositionLeft = 0,
  21 + DSImagePositionTop,
  22 + DSImagePositionRight,
  23 + DSImagePositionBottom,
  24 +};
  25 +
  26 +@interface DSNavButton : UIControl
  27 +
  28 +/***************************************************************************************************
  29 + 默认frame = CGRectMake(自动排列间距0, get_system_statusBar_height(), get_system_nav_ui_height(), get_system_nav_ui_height())
  30 + ***************************************************************************************************/
  31 +
  32 +#pragma mark - 图片init
  33 +
  34 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image;
  35 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image imageSize:(CGSize)imageSize;
  36 +
  37 +#pragma mark - 标题init
  38 +
  39 +-(nonnull instancetype)initWithTitle:(nonnull NSString*)title;
  40 +-(nonnull instancetype)initWithTitle:(nonnull NSString*)title font:(nonnull UIFont*)font;
  41 +-(nonnull instancetype)initWithTitle:(nonnull NSString*)title titleColor:(nonnull UIColor*)titleColor;
  42 +-(nonnull instancetype)initWithTitle:(nonnull NSString*)title font:(nonnull UIFont*)font titleColor:(nonnull UIColor*)titleColor;
  43 +
  44 +#pragma mark - 图片&标题init
  45 +
  46 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image title:(nonnull NSString*)title;
  47 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image title:(nonnull NSString*)title imagePosition:(DSImagePosition)imagePosition;
  48 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image imageSize:(CGSize)imageSize title:(nonnull NSString*)title;
  49 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image imageSize:(CGSize)imageSize title:(nonnull NSString*)title imagePosition:(DSImagePosition)imagePosition;
  50 +-(nonnull instancetype)initWithImage:(nonnull UIImage *)image imageSize:(CGSize)imageSize title:(nonnull NSString*)title font:(nonnull UIFont*)font titleColor:(nonnull UIColor*)titleColor imagePosition:(DSImagePosition)imagePosition;
  51 +
  52 +#pragma mark - 标题属性
  53 +
  54 +/// 标题
  55 +@property (nonatomic,copy,nonnull) NSString * title;
  56 +/// 标题大小
  57 +@property (nonatomic,strong,nonnull) UIFont * font;
  58 +/// 标题颜色
  59 +@property (nonatomic,strong,nonnull) UIColor * titleColor;
  60 +
  61 +#pragma mark - 图片属性
  62 +
  63 +/// 图片
  64 +@property (nonatomic,strong,nonnull) UIImage * image;
  65 +/// 图片大小
  66 +@property (nonatomic,assign) CGSize imageSize;
  67 +/// 图片颜色
  68 +@property (nonatomic,strong,nullable) UIColor * imageColor;
  69 +/// 图片位置
  70 +@property (nonatomic,assign) DSImagePosition imagePosition;
  71 +
  72 +@end
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSPercentDrivenInteractiveTransition.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSPercentDrivenInteractiveTransition.h
  1 +//
  2 +// DSPercentDrivenInteractiveTransition.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/12/23.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPercentDrivenInteractiveTransition : UIPercentDrivenInteractiveTransition
  14 +
  15 +//#pragma mark - 属性
  16 +//
  17 +///// 返回手势是否可用 默认可用
  18 +//@property (nonatomic,assign) BOOL panGestureEnble;
  19 +///// 是否是手势返回
  20 +//@property (nonatomic,assign) BOOL interation;
  21 +///// 返回的VC
  22 +//@property (nonatomic,weak) UIViewController * backVC;
  23 +//
  24 +//#pragma mark - 添加返回手势
  25 +//
  26 +///// 当前添加手势的控制器
  27 +//@property (nonatomic,weak,readonly) UIViewController * pgViewController;
  28 +//
  29 +///// 给传入的控制器添加手势
  30 +///// @param viewController 控制器
  31 +//-(void)addPanGestureForViewController:(UIViewController *)viewController;
  32 +
  33 +@end
  34 +
  35 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSTransitionAnimater.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSTransitionAnimater.h
  1 +//
  2 +// DSTransitionAnimater.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/12/23.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +#import "DSTransitionEnum.h"
  12 +
  13 +NS_ASSUME_NONNULL_BEGIN
  14 +
  15 +@interface DSTransitionAnimater : NSObject// <UIViewControllerAnimatedTransitioning>
  16 +
  17 +//#pragma mark - 属性
  18 +//
  19 +///// 是否是手势返回
  20 +//@property (nonatomic,assign) BOOL interation;
  21 +//
  22 +//#pragma mark - 创建方法
  23 +//
  24 +///// 创建方法
  25 +///// @param type 过场动画的方式
  26 +///// @param direction 过场动画的方向
  27 +//-(instancetype)initWithTransitionType:(DSTransitionAnimaterType)type transitionAnimaterDirection:(DSTransitionAnimaterDirection)direction;
  28 +//
  29 +//#pragma mark - 回调
  30 +//
  31 +///// 返回成功回调
  32 +//@property (nonatomic,copy) void (^finishBackCallBack)(void);
  33 +
  34 +@end
  35 +
  36 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSTransitionEnum.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSTransitionEnum.h
  1 +//
  2 +// DSTransitionEnum.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/12/24.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#ifndef DSTransitionEnum_h
  10 +#define DSTransitionEnum_h
  11 +
  12 +typedef NS_ENUM(NSUInteger, DSTransitionAnimaterDirection) {//过场动画的方向
  13 + DSTransitionAnimaterDirectionRight = 0,
  14 + DSTransitionAnimaterDirectionLeft,
  15 + DSTransitionAnimaterDirectionBottom,
  16 + DSTransitionAnimaterDirectionTop
  17 +};
  18 +
  19 +//typedef NS_ENUM(NSUInteger, DSTransitionAnimaterType) {//过场动画类型
  20 +// DSTransitionAnimaterTypePush = 0,
  21 +// DSTransitionAnimaterTypePop
  22 +//};
  23 +
  24 +#endif /* DSTransitionEnum_h */
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSViewControllerNaviDelegate.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/DSViewControllerNaviDelegate.h
  1 +//
  2 +// DSViewControllerNaviDelegate.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/12/23.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +#import "DSTransitionAnimater.h"
  12 +#import "DSPercentDrivenInteractiveTransition.h"
  13 +#import "DSTransitionEnum.h"
  14 +
  15 +NS_ASSUME_NONNULL_BEGIN
  16 +
  17 +@interface DSViewControllerNaviDelegate : NSObject <UINavigationControllerDelegate>
  18 +
  19 +//#pragma mark - 属性
  20 +//
  21 +///// 交互对象
  22 +//@property (nonatomic,strong) DSPercentDrivenInteractiveTransition * transition;
  23 +///// 动画方向 默认DSTransitionAnimaterDirectionRight
  24 +//@property (nonatomic,assign) DSTransitionAnimaterDirection animaterDirection;
  25 +
  26 +@end
  27 +
  28 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/NSObject+DSNavExtension.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/NSObject+DSNavExtension.h
  1 +//
  2 +// NSObject+DSNavExtension.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by zhaolin on 2020/1/17.
  6 +// Copyright © 2020 CNLive. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +#import "DSTransitionEnum.h"
  12 +
  13 +NS_ASSUME_NONNULL_BEGIN
  14 +
  15 +@interface NSObject (DSNavExtension)
  16 +
  17 +#pragma mark - 获取当前导航
  18 +
  19 +@property (nonatomic,weak,readonly) UINavigationController * CNavigationController;
  20 +
  21 +#pragma mark - 导航跳转
  22 +
  23 +/**
  24 + push跳转(带viewController.hidesBottomBarWhenPushed = YES;)
  25 +
  26 + @param viewController viewController
  27 + @param animated animated
  28 + */
  29 +-(void)dsPushViewController:(UIViewController *)viewController animated:(BOOL)animated;
  30 +
  31 +/// push跳转(带viewController.hidesBottomBarWhenPushed = YES; 带方向)
  32 +/// @param viewController viewController
  33 +/// @param animated animated
  34 +/// @param animaterDirection 过场动画的方向
  35 +-(void)dsPushViewController:(UIViewController *)viewController animated:(BOOL)animated animaterDirection:(DSTransitionAnimaterDirection)animaterDirection;
  36 +
  37 +/**
  38 + pop返回
  39 +
  40 + @param animated animated
  41 + */
  42 +-(void)dsPopViewControllerAnimated:(BOOL)animated;
  43 +
  44 +@end
  45 +
  46 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/UIImage+DSBaseViewController.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/UIImage+DSBaseViewController.h
  1 +//
  2 +// UIImage+DSBaseViewController.h
  3 +// DSBaseControlsModule
  4 +//
  5 +// Created by zhaolin on 2020/2/17.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface UIImage (DSBaseViewController)
  13 +
  14 +/// 图片获取
  15 +/// @param imageName 图片名称
  16 ++(UIImage*)imageWithBaseViewControllerImageName:(NSString*)imageName;
  17 +
  18 +@end
  19 +
  20 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/UIView+DSEmptyView.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/UIView+DSEmptyView.h
  1 +//
  2 +// UIView+DSEmptyView.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by zhaolin on 2020/1/17.
  6 +// Copyright © 2020 CNLive. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSEmptyView.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface UIView (DSEmptyView)
  15 +
  16 +#pragma mark - 空白界面
  17 +
  18 +/// 空白界面
  19 +@property (nonatomic,strong,nullable) DSEmptyView * emptyView;
  20 +
  21 +/// 是否有空白界面
  22 +@property (nonatomic,assign) BOOL isHaveEmpty;
  23 +
  24 +/// 显示空白界面
  25 +/// @param emptyImage 空白图片
  26 +/// @param remind 空白提示
  27 +/// @param hint 空白副提示
  28 +/// @param disposeBtnTitle 处理按钮标题
  29 +/// @param tapDisposeBtnCallBack 点击处理返回
  30 +-(void)displayEmptyView:(nullable UIImage*)emptyImage remind:(nullable NSString*)remind hint:(nullable NSString*)hint disposeBtnTitle:(nullable NSString*)disposeBtnTitle tapDisposeBtnCallBack:(nullable void (^)(void))tapDisposeBtnCallBack;
  31 +
  32 +/// 显示空白界面(带插入边距)
  33 +/// @param emptyImage 空白图片
  34 +/// @param remind 空白提示
  35 +/// @param hint 空白副提示
  36 +/// @param disposeBtnTitle 处理按钮标题
  37 +/// @param inset 插入边距
  38 +/// @param tapDisposeBtnCallBack 点击处理返回
  39 +-(void)displayEmptyView:(nullable UIImage*)emptyImage remind:(nullable NSString*)remind hint:(nullable NSString*)hint disposeBtnTitle:(nullable NSString*)disposeBtnTitle inset:(UIEdgeInsets)inset tapDisposeBtnCallBack:(nullable void (^)(void))tapDisposeBtnCallBack;
  40 +
  41 +/// 给空白界面添加约束 约束为与父视图上下左右inset
  42 +-(void)addEmptyViewLayout;
  43 +
  44 +/// 删除没有数据界面
  45 +-(void)removeEmptyView;
  46 +
  47 +@end
  48 +
  49 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/UIViewController+DSNavExtension.h 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Headers/UIViewController+DSNavExtension.h
  1 +//
  2 +// UIViewController+DSNavExtension.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/12/23.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +//#import "DSViewControllerNaviDelegate.h"
  11 +#import "DSTransitionEnum.h"
  12 +
  13 +NS_ASSUME_NONNULL_BEGIN
  14 +
  15 +@interface UIViewController (DSNavExtension)
  16 +
  17 +#pragma mark - 属性
  18 +
  19 +/// push转场动画的方向
  20 +@property (nonatomic,assign) DSTransitionAnimaterDirection animaterDirection;
  21 +
  22 +//#pragma mark - 属性
  23 +//
  24 +///// 是否用自定义的转场动画
  25 +//@property (nonatomic,assign) BOOL isUseCsTransition;
  26 +///// 导航自定义转场动画实现代理类
  27 +//@property (nonatomic,strong,nullable) DSViewControllerNaviDelegate * naviDelegate;
  28 +//
  29 +//#pragma mark - 方法
  30 +//
  31 +///// 自定义跳转方法
  32 +///// @param viewController viewController
  33 +///// @param animated animated
  34 +///// @param animaterDirection 动画方向
  35 +//-(void)csPushViewController:(UIViewController *)viewController animated:(BOOL)animated animaterDirection:(DSTransitionAnimaterDirection)animaterDirection;
  36 +//
  37 +///// 自定义返回方法
  38 +///// @param animated animated 动画方向为自定义跳转方法时定义的方向
  39 +//-(void)csPopViewControllerAnimated:(BOOL)animated;
  40 +
  41 +@end
  42 +
  43 +NS_ASSUME_NONNULL_END
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Info.plist 0 → 100644
No preview for this file type
DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Modules/module.modulemap 0 → 100644
  1 +++ a/DSBaseControlsModuleF/Frameworks/DSBaseControlsModule.framework/Modules/module.modulemap
  1 +framework module DSBaseControlsModule {
  2 + umbrella header "DSBaseControlsModule-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/DSBaseControlsModuleF.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 0DE03DBC60D799BAE012C8C3 /* Pods_DSBaseControlsModuleF_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 43A47DE7FC1C518065EDD049 /* Pods_DSBaseControlsModuleF_Example.framework */; };
  11 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  12 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
  13 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  14 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
  15 + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
  16 + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* DSAppDelegate.m */; };
  17 + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* DSViewController.m */; };
  18 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
  19 + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
  20 + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  21 + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  22 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
  23 + 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
  24 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
  25 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
  26 + F15163532DFD44207486F8C3 /* Pods_DSBaseControlsModuleF_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0605171C76B0530A9232F7D /* Pods_DSBaseControlsModuleF_Tests.framework */; };
  27 +/* End PBXBuildFile section */
  28 +
  29 +/* Begin PBXContainerItemProxy section */
  30 + 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = 6003F582195388D10070C39A /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = 6003F589195388D20070C39A;
  35 + remoteInfo = DSBaseControlsModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 1370E3EB1CF82523DA3FDD02 /* Pods-DSBaseControlsModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseControlsModuleF_Tests.debug.xcconfig"; path = "Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  41 + 17527818362F48C5418CBEA8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  42 + 3E50EAE83897D54685EDAF3A /* DSBaseControlsModuleF.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = DSBaseControlsModuleF.podspec; path = ../DSBaseControlsModuleF.podspec; sourceTree = "<group>"; };
  43 + 43A47DE7FC1C518065EDD049 /* Pods_DSBaseControlsModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSBaseControlsModuleF_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  44 + 6003F58A195388D20070C39A /* DSBaseControlsModuleF_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSBaseControlsModuleF_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  45 + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  46 + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  47 + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  48 + 6003F595195388D20070C39A /* DSBaseControlsModuleF-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSBaseControlsModuleF-Info.plist"; sourceTree = "<group>"; };
  49 + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  50 + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  51 + 6003F59B195388D20070C39A /* DSBaseControlsModuleF-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DSBaseControlsModuleF-Prefix.pch"; sourceTree = "<group>"; };
  52 + 6003F59C195388D20070C39A /* DSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSAppDelegate.h; sourceTree = "<group>"; };
  53 + 6003F59D195388D20070C39A /* DSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSAppDelegate.m; sourceTree = "<group>"; };
  54 + 6003F5A5195388D20070C39A /* DSViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSViewController.h; sourceTree = "<group>"; };
  55 + 6003F5A6195388D20070C39A /* DSViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSViewController.m; sourceTree = "<group>"; };
  56 + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  57 + 6003F5AE195388D20070C39A /* DSBaseControlsModuleF_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DSBaseControlsModuleF_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  58 + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  59 + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  60 + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  61 + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
  62 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
  63 + 6FBCD5D61DEF9516B61AFB52 /* Pods-DSBaseControlsModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseControlsModuleF_Example.release.xcconfig"; path = "Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  64 + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  65 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  66 + 8B6594792F2DF537E06CB5C3 /* Pods-DSBaseControlsModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseControlsModuleF_Example.debug.xcconfig"; path = "Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  67 + 97880124228F30273250269C /* Pods-DSBaseControlsModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseControlsModuleF_Tests.release.xcconfig"; path = "Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  68 + A20AC2BDBADB8D0FBE6ED1A3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  69 + E0605171C76B0530A9232F7D /* Pods_DSBaseControlsModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSBaseControlsModuleF_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  70 +/* End PBXFileReference section */
  71 +
  72 +/* Begin PBXFrameworksBuildPhase section */
  73 + 6003F587195388D20070C39A /* Frameworks */ = {
  74 + isa = PBXFrameworksBuildPhase;
  75 + buildActionMask = 2147483647;
  76 + files = (
  77 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
  78 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
  79 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
  80 + 0DE03DBC60D799BAE012C8C3 /* Pods_DSBaseControlsModuleF_Example.framework in Frameworks */,
  81 + );
  82 + runOnlyForDeploymentPostprocessing = 0;
  83 + };
  84 + 6003F5AB195388D20070C39A /* Frameworks */ = {
  85 + isa = PBXFrameworksBuildPhase;
  86 + buildActionMask = 2147483647;
  87 + files = (
  88 + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
  89 + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
  90 + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
  91 + F15163532DFD44207486F8C3 /* Pods_DSBaseControlsModuleF_Tests.framework in Frameworks */,
  92 + );
  93 + runOnlyForDeploymentPostprocessing = 0;
  94 + };
  95 +/* End PBXFrameworksBuildPhase section */
  96 +
  97 +/* Begin PBXGroup section */
  98 + 0BE0582DEE11023AD6E6D590 /* Pods */ = {
  99 + isa = PBXGroup;
  100 + children = (
  101 + 8B6594792F2DF537E06CB5C3 /* Pods-DSBaseControlsModuleF_Example.debug.xcconfig */,
  102 + 6FBCD5D61DEF9516B61AFB52 /* Pods-DSBaseControlsModuleF_Example.release.xcconfig */,
  103 + 1370E3EB1CF82523DA3FDD02 /* Pods-DSBaseControlsModuleF_Tests.debug.xcconfig */,
  104 + 97880124228F30273250269C /* Pods-DSBaseControlsModuleF_Tests.release.xcconfig */,
  105 + );
  106 + name = Pods;
  107 + path = Pods;
  108 + sourceTree = "<group>";
  109 + };
  110 + 6003F581195388D10070C39A = {
  111 + isa = PBXGroup;
  112 + children = (
  113 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
  114 + 6003F593195388D20070C39A /* Example for DSBaseControlsModuleF */,
  115 + 6003F5B5195388D20070C39A /* Tests */,
  116 + 6003F58C195388D20070C39A /* Frameworks */,
  117 + 6003F58B195388D20070C39A /* Products */,
  118 + 0BE0582DEE11023AD6E6D590 /* Pods */,
  119 + );
  120 + sourceTree = "<group>";
  121 + };
  122 + 6003F58B195388D20070C39A /* Products */ = {
  123 + isa = PBXGroup;
  124 + children = (
  125 + 6003F58A195388D20070C39A /* DSBaseControlsModuleF_Example.app */,
  126 + 6003F5AE195388D20070C39A /* DSBaseControlsModuleF_Tests.xctest */,
  127 + );
  128 + name = Products;
  129 + sourceTree = "<group>";
  130 + };
  131 + 6003F58C195388D20070C39A /* Frameworks */ = {
  132 + isa = PBXGroup;
  133 + children = (
  134 + 6003F58D195388D20070C39A /* Foundation.framework */,
  135 + 6003F58F195388D20070C39A /* CoreGraphics.framework */,
  136 + 6003F591195388D20070C39A /* UIKit.framework */,
  137 + 6003F5AF195388D20070C39A /* XCTest.framework */,
  138 + 43A47DE7FC1C518065EDD049 /* Pods_DSBaseControlsModuleF_Example.framework */,
  139 + E0605171C76B0530A9232F7D /* Pods_DSBaseControlsModuleF_Tests.framework */,
  140 + );
  141 + name = Frameworks;
  142 + sourceTree = "<group>";
  143 + };
  144 + 6003F593195388D20070C39A /* Example for DSBaseControlsModuleF */ = {
  145 + isa = PBXGroup;
  146 + children = (
  147 + 6003F59C195388D20070C39A /* DSAppDelegate.h */,
  148 + 6003F59D195388D20070C39A /* DSAppDelegate.m */,
  149 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
  150 + 6003F5A5195388D20070C39A /* DSViewController.h */,
  151 + 6003F5A6195388D20070C39A /* DSViewController.m */,
  152 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
  153 + 6003F5A8195388D20070C39A /* Images.xcassets */,
  154 + 6003F594195388D20070C39A /* Supporting Files */,
  155 + );
  156 + name = "Example for DSBaseControlsModuleF";
  157 + path = DSBaseControlsModuleF;
  158 + sourceTree = "<group>";
  159 + };
  160 + 6003F594195388D20070C39A /* Supporting Files */ = {
  161 + isa = PBXGroup;
  162 + children = (
  163 + 6003F595195388D20070C39A /* DSBaseControlsModuleF-Info.plist */,
  164 + 6003F596195388D20070C39A /* InfoPlist.strings */,
  165 + 6003F599195388D20070C39A /* main.m */,
  166 + 6003F59B195388D20070C39A /* DSBaseControlsModuleF-Prefix.pch */,
  167 + );
  168 + name = "Supporting Files";
  169 + sourceTree = "<group>";
  170 + };
  171 + 6003F5B5195388D20070C39A /* Tests */ = {
  172 + isa = PBXGroup;
  173 + children = (
  174 + 6003F5BB195388D20070C39A /* Tests.m */,
  175 + 6003F5B6195388D20070C39A /* Supporting Files */,
  176 + );
  177 + path = Tests;
  178 + sourceTree = "<group>";
  179 + };
  180 + 6003F5B6195388D20070C39A /* Supporting Files */ = {
  181 + isa = PBXGroup;
  182 + children = (
  183 + 6003F5B7195388D20070C39A /* Tests-Info.plist */,
  184 + 6003F5B8195388D20070C39A /* InfoPlist.strings */,
  185 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
  186 + );
  187 + name = "Supporting Files";
  188 + sourceTree = "<group>";
  189 + };
  190 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
  191 + isa = PBXGroup;
  192 + children = (
  193 + 3E50EAE83897D54685EDAF3A /* DSBaseControlsModuleF.podspec */,
  194 + A20AC2BDBADB8D0FBE6ED1A3 /* README.md */,
  195 + 17527818362F48C5418CBEA8 /* LICENSE */,
  196 + );
  197 + name = "Podspec Metadata";
  198 + sourceTree = "<group>";
  199 + };
  200 +/* End PBXGroup section */
  201 +
  202 +/* Begin PBXNativeTarget section */
  203 + 6003F589195388D20070C39A /* DSBaseControlsModuleF_Example */ = {
  204 + isa = PBXNativeTarget;
  205 + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseControlsModuleF_Example" */;
  206 + buildPhases = (
  207 + DBCB44BE926CBEBBC18ECA07 /* [CP] Check Pods Manifest.lock */,
  208 + 6003F586195388D20070C39A /* Sources */,
  209 + 6003F587195388D20070C39A /* Frameworks */,
  210 + 6003F588195388D20070C39A /* Resources */,
  211 + BACE9490C1C41B1403358B02 /* [CP] Embed Pods Frameworks */,
  212 + );
  213 + buildRules = (
  214 + );
  215 + dependencies = (
  216 + );
  217 + name = DSBaseControlsModuleF_Example;
  218 + productName = DSBaseControlsModuleF;
  219 + productReference = 6003F58A195388D20070C39A /* DSBaseControlsModuleF_Example.app */;
  220 + productType = "com.apple.product-type.application";
  221 + };
  222 + 6003F5AD195388D20070C39A /* DSBaseControlsModuleF_Tests */ = {
  223 + isa = PBXNativeTarget;
  224 + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseControlsModuleF_Tests" */;
  225 + buildPhases = (
  226 + C0642B484A1CDABAFF0B843B /* [CP] Check Pods Manifest.lock */,
  227 + 6003F5AA195388D20070C39A /* Sources */,
  228 + 6003F5AB195388D20070C39A /* Frameworks */,
  229 + 6003F5AC195388D20070C39A /* Resources */,
  230 + );
  231 + buildRules = (
  232 + );
  233 + dependencies = (
  234 + 6003F5B4195388D20070C39A /* PBXTargetDependency */,
  235 + );
  236 + name = DSBaseControlsModuleF_Tests;
  237 + productName = DSBaseControlsModuleFTests;
  238 + productReference = 6003F5AE195388D20070C39A /* DSBaseControlsModuleF_Tests.xctest */;
  239 + productType = "com.apple.product-type.bundle.unit-test";
  240 + };
  241 +/* End PBXNativeTarget section */
  242 +
  243 +/* Begin PBXProject section */
  244 + 6003F582195388D10070C39A /* Project object */ = {
  245 + isa = PBXProject;
  246 + attributes = {
  247 + CLASSPREFIX = DS;
  248 + LastUpgradeCheck = 0720;
  249 + ORGANIZATIONNAME = "694092596@qq.com";
  250 + TargetAttributes = {
  251 + 6003F5AD195388D20070C39A = {
  252 + TestTargetID = 6003F589195388D20070C39A;
  253 + };
  254 + };
  255 + };
  256 + buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "DSBaseControlsModuleF" */;
  257 + compatibilityVersion = "Xcode 3.2";
  258 + developmentRegion = English;
  259 + hasScannedForEncodings = 0;
  260 + knownRegions = (
  261 + en,
  262 + Base,
  263 + );
  264 + mainGroup = 6003F581195388D10070C39A;
  265 + productRefGroup = 6003F58B195388D20070C39A /* Products */;
  266 + projectDirPath = "";
  267 + projectRoot = "";
  268 + targets = (
  269 + 6003F589195388D20070C39A /* DSBaseControlsModuleF_Example */,
  270 + 6003F5AD195388D20070C39A /* DSBaseControlsModuleF_Tests */,
  271 + );
  272 + };
  273 +/* End PBXProject section */
  274 +
  275 +/* Begin PBXResourcesBuildPhase section */
  276 + 6003F588195388D20070C39A /* Resources */ = {
  277 + isa = PBXResourcesBuildPhase;
  278 + buildActionMask = 2147483647;
  279 + files = (
  280 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
  281 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
  282 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
  283 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
  284 + );
  285 + runOnlyForDeploymentPostprocessing = 0;
  286 + };
  287 + 6003F5AC195388D20070C39A /* Resources */ = {
  288 + isa = PBXResourcesBuildPhase;
  289 + buildActionMask = 2147483647;
  290 + files = (
  291 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
  292 + );
  293 + runOnlyForDeploymentPostprocessing = 0;
  294 + };
  295 +/* End PBXResourcesBuildPhase section */
  296 +
  297 +/* Begin PBXShellScriptBuildPhase section */
  298 + BACE9490C1C41B1403358B02 /* [CP] Embed Pods Frameworks */ = {
  299 + isa = PBXShellScriptBuildPhase;
  300 + buildActionMask = 2147483647;
  301 + files = (
  302 + );
  303 + inputPaths = (
  304 + "${PODS_ROOT}/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-frameworks.sh",
  305 + "${BUILT_PRODUCTS_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework",
  306 + );
  307 + name = "[CP] Embed Pods Frameworks";
  308 + outputPaths = (
  309 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DSBaseControlsModuleF.framework",
  310 + );
  311 + runOnlyForDeploymentPostprocessing = 0;
  312 + shellPath = /bin/sh;
  313 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-frameworks.sh\"\n";
  314 + showEnvVarsInLog = 0;
  315 + };
  316 + C0642B484A1CDABAFF0B843B /* [CP] Check Pods Manifest.lock */ = {
  317 + isa = PBXShellScriptBuildPhase;
  318 + buildActionMask = 2147483647;
  319 + files = (
  320 + );
  321 + inputFileListPaths = (
  322 + );
  323 + inputPaths = (
  324 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  325 + "${PODS_ROOT}/Manifest.lock",
  326 + );
  327 + name = "[CP] Check Pods Manifest.lock";
  328 + outputFileListPaths = (
  329 + );
  330 + outputPaths = (
  331 + "$(DERIVED_FILE_DIR)/Pods-DSBaseControlsModuleF_Tests-checkManifestLockResult.txt",
  332 + );
  333 + runOnlyForDeploymentPostprocessing = 0;
  334 + shellPath = /bin/sh;
  335 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  336 + showEnvVarsInLog = 0;
  337 + };
  338 + DBCB44BE926CBEBBC18ECA07 /* [CP] Check Pods Manifest.lock */ = {
  339 + isa = PBXShellScriptBuildPhase;
  340 + buildActionMask = 2147483647;
  341 + files = (
  342 + );
  343 + inputFileListPaths = (
  344 + );
  345 + inputPaths = (
  346 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  347 + "${PODS_ROOT}/Manifest.lock",
  348 + );
  349 + name = "[CP] Check Pods Manifest.lock";
  350 + outputFileListPaths = (
  351 + );
  352 + outputPaths = (
  353 + "$(DERIVED_FILE_DIR)/Pods-DSBaseControlsModuleF_Example-checkManifestLockResult.txt",
  354 + );
  355 + runOnlyForDeploymentPostprocessing = 0;
  356 + shellPath = /bin/sh;
  357 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  358 + showEnvVarsInLog = 0;
  359 + };
  360 +/* End PBXShellScriptBuildPhase section */
  361 +
  362 +/* Begin PBXSourcesBuildPhase section */
  363 + 6003F586195388D20070C39A /* Sources */ = {
  364 + isa = PBXSourcesBuildPhase;
  365 + buildActionMask = 2147483647;
  366 + files = (
  367 + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */,
  368 + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */,
  369 + 6003F59A195388D20070C39A /* main.m in Sources */,
  370 + );
  371 + runOnlyForDeploymentPostprocessing = 0;
  372 + };
  373 + 6003F5AA195388D20070C39A /* Sources */ = {
  374 + isa = PBXSourcesBuildPhase;
  375 + buildActionMask = 2147483647;
  376 + files = (
  377 + 6003F5BC195388D20070C39A /* Tests.m in Sources */,
  378 + );
  379 + runOnlyForDeploymentPostprocessing = 0;
  380 + };
  381 +/* End PBXSourcesBuildPhase section */
  382 +
  383 +/* Begin PBXTargetDependency section */
  384 + 6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
  385 + isa = PBXTargetDependency;
  386 + target = 6003F589195388D20070C39A /* DSBaseControlsModuleF_Example */;
  387 + targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
  388 + };
  389 +/* End PBXTargetDependency section */
  390 +
  391 +/* Begin PBXVariantGroup section */
  392 + 6003F596195388D20070C39A /* InfoPlist.strings */ = {
  393 + isa = PBXVariantGroup;
  394 + children = (
  395 + 6003F597195388D20070C39A /* en */,
  396 + );
  397 + name = InfoPlist.strings;
  398 + sourceTree = "<group>";
  399 + };
  400 + 6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
  401 + isa = PBXVariantGroup;
  402 + children = (
  403 + 6003F5B9195388D20070C39A /* en */,
  404 + );
  405 + name = InfoPlist.strings;
  406 + sourceTree = "<group>";
  407 + };
  408 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
  409 + isa = PBXVariantGroup;
  410 + children = (
  411 + 71719F9E1E33DC2100824A3D /* Base */,
  412 + );
  413 + name = LaunchScreen.storyboard;
  414 + sourceTree = "<group>";
  415 + };
  416 +/* End PBXVariantGroup section */
  417 +
  418 +/* Begin XCBuildConfiguration section */
  419 + 6003F5BD195388D20070C39A /* Debug */ = {
  420 + isa = XCBuildConfiguration;
  421 + buildSettings = {
  422 + ALWAYS_SEARCH_USER_PATHS = NO;
  423 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  424 + CLANG_CXX_LIBRARY = "libc++";
  425 + CLANG_ENABLE_MODULES = YES;
  426 + CLANG_ENABLE_OBJC_ARC = YES;
  427 + CLANG_WARN_BOOL_CONVERSION = YES;
  428 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  429 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  430 + CLANG_WARN_EMPTY_BODY = YES;
  431 + CLANG_WARN_ENUM_CONVERSION = YES;
  432 + CLANG_WARN_INT_CONVERSION = YES;
  433 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  434 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  435 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  436 + COPY_PHASE_STRIP = NO;
  437 + ENABLE_TESTABILITY = YES;
  438 + GCC_C_LANGUAGE_STANDARD = gnu99;
  439 + GCC_DYNAMIC_NO_PIC = NO;
  440 + GCC_OPTIMIZATION_LEVEL = 0;
  441 + GCC_PREPROCESSOR_DEFINITIONS = (
  442 + "DEBUG=1",
  443 + "$(inherited)",
  444 + );
  445 + GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  446 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  447 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  448 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  449 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  450 + GCC_WARN_UNUSED_FUNCTION = YES;
  451 + GCC_WARN_UNUSED_VARIABLE = YES;
  452 + IPHONEOS_DEPLOYMENT_TARGET = 9.3;
  453 + ONLY_ACTIVE_ARCH = YES;
  454 + SDKROOT = iphoneos;
  455 + TARGETED_DEVICE_FAMILY = "1,2";
  456 + };
  457 + name = Debug;
  458 + };
  459 + 6003F5BE195388D20070C39A /* Release */ = {
  460 + isa = XCBuildConfiguration;
  461 + buildSettings = {
  462 + ALWAYS_SEARCH_USER_PATHS = NO;
  463 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  464 + CLANG_CXX_LIBRARY = "libc++";
  465 + CLANG_ENABLE_MODULES = YES;
  466 + CLANG_ENABLE_OBJC_ARC = YES;
  467 + CLANG_WARN_BOOL_CONVERSION = YES;
  468 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  469 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  470 + CLANG_WARN_EMPTY_BODY = YES;
  471 + CLANG_WARN_ENUM_CONVERSION = YES;
  472 + CLANG_WARN_INT_CONVERSION = YES;
  473 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  474 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  475 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  476 + COPY_PHASE_STRIP = YES;
  477 + ENABLE_NS_ASSERTIONS = NO;
  478 + GCC_C_LANGUAGE_STANDARD = gnu99;
  479 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  480 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  481 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  482 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  483 + GCC_WARN_UNUSED_FUNCTION = YES;
  484 + GCC_WARN_UNUSED_VARIABLE = YES;
  485 + IPHONEOS_DEPLOYMENT_TARGET = 9.3;
  486 + SDKROOT = iphoneos;
  487 + TARGETED_DEVICE_FAMILY = "1,2";
  488 + VALIDATE_PRODUCT = YES;
  489 + };
  490 + name = Release;
  491 + };
  492 + 6003F5C0195388D20070C39A /* Debug */ = {
  493 + isa = XCBuildConfiguration;
  494 + baseConfigurationReference = 8B6594792F2DF537E06CB5C3 /* Pods-DSBaseControlsModuleF_Example.debug.xcconfig */;
  495 + buildSettings = {
  496 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  497 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  498 + GCC_PREFIX_HEADER = "DSBaseControlsModuleF/DSBaseControlsModuleF-Prefix.pch";
  499 + INFOPLIST_FILE = "DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist";
  500 + MODULE_NAME = ExampleApp;
  501 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  502 + PRODUCT_NAME = "$(TARGET_NAME)";
  503 + SWIFT_VERSION = 4.0;
  504 + WRAPPER_EXTENSION = app;
  505 + };
  506 + name = Debug;
  507 + };
  508 + 6003F5C1195388D20070C39A /* Release */ = {
  509 + isa = XCBuildConfiguration;
  510 + baseConfigurationReference = 6FBCD5D61DEF9516B61AFB52 /* Pods-DSBaseControlsModuleF_Example.release.xcconfig */;
  511 + buildSettings = {
  512 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  513 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  514 + GCC_PREFIX_HEADER = "DSBaseControlsModuleF/DSBaseControlsModuleF-Prefix.pch";
  515 + INFOPLIST_FILE = "DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist";
  516 + MODULE_NAME = ExampleApp;
  517 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  518 + PRODUCT_NAME = "$(TARGET_NAME)";
  519 + SWIFT_VERSION = 4.0;
  520 + WRAPPER_EXTENSION = app;
  521 + };
  522 + name = Release;
  523 + };
  524 + 6003F5C3195388D20070C39A /* Debug */ = {
  525 + isa = XCBuildConfiguration;
  526 + baseConfigurationReference = 1370E3EB1CF82523DA3FDD02 /* Pods-DSBaseControlsModuleF_Tests.debug.xcconfig */;
  527 + buildSettings = {
  528 + BUNDLE_LOADER = "$(TEST_HOST)";
  529 + FRAMEWORK_SEARCH_PATHS = (
  530 + "$(PLATFORM_DIR)/Developer/Library/Frameworks",
  531 + "$(inherited)",
  532 + "$(DEVELOPER_FRAMEWORKS_DIR)",
  533 + );
  534 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  535 + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
  536 + GCC_PREPROCESSOR_DEFINITIONS = (
  537 + "DEBUG=1",
  538 + "$(inherited)",
  539 + );
  540 + INFOPLIST_FILE = "Tests/Tests-Info.plist";
  541 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  542 + PRODUCT_NAME = "$(TARGET_NAME)";
  543 + SWIFT_VERSION = 4.0;
  544 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DSBaseControlsModuleF_Example.app/DSBaseControlsModuleF_Example";
  545 + WRAPPER_EXTENSION = xctest;
  546 + };
  547 + name = Debug;
  548 + };
  549 + 6003F5C4195388D20070C39A /* Release */ = {
  550 + isa = XCBuildConfiguration;
  551 + baseConfigurationReference = 97880124228F30273250269C /* Pods-DSBaseControlsModuleF_Tests.release.xcconfig */;
  552 + buildSettings = {
  553 + BUNDLE_LOADER = "$(TEST_HOST)";
  554 + FRAMEWORK_SEARCH_PATHS = (
  555 + "$(PLATFORM_DIR)/Developer/Library/Frameworks",
  556 + "$(inherited)",
  557 + "$(DEVELOPER_FRAMEWORKS_DIR)",
  558 + );
  559 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  560 + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
  561 + INFOPLIST_FILE = "Tests/Tests-Info.plist";
  562 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  563 + PRODUCT_NAME = "$(TARGET_NAME)";
  564 + SWIFT_VERSION = 4.0;
  565 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DSBaseControlsModuleF_Example.app/DSBaseControlsModuleF_Example";
  566 + WRAPPER_EXTENSION = xctest;
  567 + };
  568 + name = Release;
  569 + };
  570 +/* End XCBuildConfiguration section */
  571 +
  572 +/* Begin XCConfigurationList section */
  573 + 6003F585195388D10070C39A /* Build configuration list for PBXProject "DSBaseControlsModuleF" */ = {
  574 + isa = XCConfigurationList;
  575 + buildConfigurations = (
  576 + 6003F5BD195388D20070C39A /* Debug */,
  577 + 6003F5BE195388D20070C39A /* Release */,
  578 + );
  579 + defaultConfigurationIsVisible = 0;
  580 + defaultConfigurationName = Release;
  581 + };
  582 + 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseControlsModuleF_Example" */ = {
  583 + isa = XCConfigurationList;
  584 + buildConfigurations = (
  585 + 6003F5C0195388D20070C39A /* Debug */,
  586 + 6003F5C1195388D20070C39A /* Release */,
  587 + );
  588 + defaultConfigurationIsVisible = 0;
  589 + defaultConfigurationName = Release;
  590 + };
  591 + 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseControlsModuleF_Tests" */ = {
  592 + isa = XCConfigurationList;
  593 + buildConfigurations = (
  594 + 6003F5C3195388D20070C39A /* Debug */,
  595 + 6003F5C4195388D20070C39A /* Release */,
  596 + );
  597 + defaultConfigurationIsVisible = 0;
  598 + defaultConfigurationName = Release;
  599 + };
  600 +/* End XCConfigurationList section */
  601 + };
  602 + rootObject = 6003F582195388D10070C39A /* Project object */;
  603 +}
Example/DSBaseControlsModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:DSBaseControlsModuleF.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
Example/DSBaseControlsModuleF.xcodeproj/xcshareddata/xcschemes/DSBaseControlsModuleF-Example.xcscheme 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF.xcodeproj/xcshareddata/xcschemes/DSBaseControlsModuleF-Example.xcscheme
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "0720"
  4 + version = "1.3">
  5 + <BuildAction
  6 + parallelizeBuildables = "YES"
  7 + buildImplicitDependencies = "YES">
  8 + <BuildActionEntries>
  9 + <BuildActionEntry
  10 + buildForTesting = "YES"
  11 + buildForRunning = "YES"
  12 + buildForProfiling = "YES"
  13 + buildForArchiving = "YES"
  14 + buildForAnalyzing = "YES">
  15 + <BuildableReference
  16 + BuildableIdentifier = "primary"
  17 + BlueprintIdentifier = "6003F589195388D20070C39A"
  18 + BuildableName = "DSBaseControlsModuleF_Example.app"
  19 + BlueprintName = "DSBaseControlsModuleF_Example"
  20 + ReferencedContainer = "container:DSBaseControlsModuleF.xcodeproj">
  21 + </BuildableReference>
  22 + </BuildActionEntry>
  23 + </BuildActionEntries>
  24 + </BuildAction>
  25 + <TestAction
  26 + buildConfiguration = "Debug"
  27 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  28 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  29 + shouldUseLaunchSchemeArgsEnv = "YES">
  30 + <Testables>
  31 + <TestableReference
  32 + skipped = "NO">
  33 + <BuildableReference
  34 + BuildableIdentifier = "primary"
  35 + BlueprintIdentifier = "6003F5AD195388D20070C39A"
  36 + BuildableName = "DSBaseControlsModuleF_Tests.xctest"
  37 + BlueprintName = "DSBaseControlsModuleF_Tests"
  38 + ReferencedContainer = "container:DSBaseControlsModuleF.xcodeproj">
  39 + </BuildableReference>
  40 + </TestableReference>
  41 + </Testables>
  42 + <MacroExpansion>
  43 + <BuildableReference
  44 + BuildableIdentifier = "primary"
  45 + BlueprintIdentifier = "6003F589195388D20070C39A"
  46 + BuildableName = "DSBaseControlsModuleF_Example.app"
  47 + BlueprintName = "DSBaseControlsModuleF_Example"
  48 + ReferencedContainer = "container:DSBaseControlsModuleF.xcodeproj">
  49 + </BuildableReference>
  50 + </MacroExpansion>
  51 + <AdditionalOptions>
  52 + </AdditionalOptions>
  53 + </TestAction>
  54 + <LaunchAction
  55 + buildConfiguration = "Debug"
  56 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  57 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  58 + launchStyle = "0"
  59 + useCustomWorkingDirectory = "NO"
  60 + ignoresPersistentStateOnLaunch = "NO"
  61 + debugDocumentVersioning = "YES"
  62 + debugServiceExtension = "internal"
  63 + allowLocationSimulation = "YES">
  64 + <BuildableProductRunnable
  65 + runnableDebuggingMode = "0">
  66 + <BuildableReference
  67 + BuildableIdentifier = "primary"
  68 + BlueprintIdentifier = "6003F589195388D20070C39A"
  69 + BuildableName = "DSBaseControlsModuleF_Example.app"
  70 + BlueprintName = "DSBaseControlsModuleF_Example"
  71 + ReferencedContainer = "container:DSBaseControlsModuleF.xcodeproj">
  72 + </BuildableReference>
  73 + </BuildableProductRunnable>
  74 + <AdditionalOptions>
  75 + </AdditionalOptions>
  76 + </LaunchAction>
  77 + <ProfileAction
  78 + buildConfiguration = "Release"
  79 + shouldUseLaunchSchemeArgsEnv = "YES"
  80 + savedToolIdentifier = ""
  81 + useCustomWorkingDirectory = "NO"
  82 + debugDocumentVersioning = "YES">
  83 + <BuildableProductRunnable
  84 + runnableDebuggingMode = "0">
  85 + <BuildableReference
  86 + BuildableIdentifier = "primary"
  87 + BlueprintIdentifier = "6003F589195388D20070C39A"
  88 + BuildableName = "DSBaseControlsModuleF_Example.app"
  89 + BlueprintName = "DSBaseControlsModuleF_Example"
  90 + ReferencedContainer = "container:DSBaseControlsModuleF.xcodeproj">
  91 + </BuildableReference>
  92 + </BuildableProductRunnable>
  93 + </ProfileAction>
  94 + <AnalyzeAction
  95 + buildConfiguration = "Debug">
  96 + </AnalyzeAction>
  97 + <ArchiveAction
  98 + buildConfiguration = "Release"
  99 + revealArchiveInOrganizer = "YES">
  100 + </ArchiveAction>
  101 +</Scheme>
Example/DSBaseControlsModuleF.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "group:DSBaseControlsModuleF.xcodeproj">
  6 + </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
  10 +</Workspace>
Example/DSBaseControlsModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>IDEDidComputeMac32BitWarning</key>
  6 + <true/>
  7 +</dict>
  8 +</plist>
Example/DSBaseControlsModuleF/Base.lproj/LaunchScreen.storyboard 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/Base.lproj/LaunchScreen.storyboard
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
  3 + <device id="retina4_7" orientation="portrait">
  4 + <adaptation id="fullscreen"/>
  5 + </device>
  6 + <dependencies>
  7 + <deployment identifier="iOS"/>
  8 + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
  9 + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10 + </dependencies>
  11 + <scenes>
  12 + <!--View Controller-->
  13 + <scene sceneID="EHf-IW-A2E">
  14 + <objects>
  15 + <viewController id="01J-lp-oVM" sceneMemberID="viewController">
  16 + <layoutGuides>
  17 + <viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
  18 + <viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
  19 + </layoutGuides>
  20 + <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
  21 + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  22 + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  23 + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  24 + </view>
  25 + </viewController>
  26 + <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
  27 + </objects>
  28 + <point key="canvasLocation" x="53" y="375"/>
  29 + </scene>
  30 + </scenes>
  31 +</document>
Example/DSBaseControlsModuleF/Base.lproj/Main.storyboard 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/Base.lproj/Main.storyboard
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="whP-gf-Uak">
  3 + <device id="retina4_7" orientation="portrait">
  4 + <adaptation id="fullscreen"/>
  5 + </device>
  6 + <dependencies>
  7 + <deployment identifier="iOS"/>
  8 + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
  9 + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10 + </dependencies>
  11 + <scenes>
  12 + <!--View Controller-->
  13 + <scene sceneID="wQg-tq-qST">
  14 + <objects>
  15 + <viewController id="whP-gf-Uak" customClass="DSViewController" sceneMemberID="viewController">
  16 + <layoutGuides>
  17 + <viewControllerLayoutGuide type="top" id="uEw-UM-LJ8"/>
  18 + <viewControllerLayoutGuide type="bottom" id="Mvr-aV-6Um"/>
  19 + </layoutGuides>
  20 + <view key="view" contentMode="scaleToFill" id="TpU-gO-2f1">
  21 + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  22 + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  23 + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  24 + </view>
  25 + </viewController>
  26 + <placeholder placeholderIdentifier="IBFirstResponder" id="tc2-Qw-aMS" userLabel="First Responder" sceneMemberID="firstResponder"/>
  27 + </objects>
  28 + <point key="canvasLocation" x="305" y="433"/>
  29 + </scene>
  30 + </scenes>
  31 +</document>
Example/DSBaseControlsModuleF/DSAppDelegate.h 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/DSAppDelegate.h
  1 +//
  2 +// DSAppDelegate.h
  3 +// DSBaseControlsModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface DSAppDelegate : UIResponder <UIApplicationDelegate>
  12 +
  13 +@property (strong, nonatomic) UIWindow *window;
  14 +
  15 +@end
Example/DSBaseControlsModuleF/DSAppDelegate.m 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/DSAppDelegate.m
  1 +//
  2 +// DSAppDelegate.m
  3 +// DSBaseControlsModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +#import "DSAppDelegate.h"
  10 +
  11 +@implementation DSAppDelegate
  12 +
  13 +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  14 +{
  15 + // Override point for customization after application launch.
  16 + return YES;
  17 +}
  18 +
  19 +- (void)applicationWillResignActive:(UIApplication *)application
  20 +{
  21 + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
  22 + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
  23 +}
  24 +
  25 +- (void)applicationDidEnterBackground:(UIApplication *)application
  26 +{
  27 + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
  28 + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  29 +}
  30 +
  31 +- (void)applicationWillEnterForeground:(UIApplication *)application
  32 +{
  33 + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
  34 +}
  35 +
  36 +- (void)applicationDidBecomeActive:(UIApplication *)application
  37 +{
  38 + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  39 +}
  40 +
  41 +- (void)applicationWillTerminate:(UIApplication *)application
  42 +{
  43 + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  44 +}
  45 +
  46 +@end
Example/DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>CFBundleDevelopmentRegion</key>
  6 + <string>en</string>
  7 + <key>CFBundleDisplayName</key>
  8 + <string>${PRODUCT_NAME}</string>
  9 + <key>CFBundleExecutable</key>
  10 + <string>${EXECUTABLE_NAME}</string>
  11 + <key>CFBundleIdentifier</key>
  12 + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  13 + <key>CFBundleInfoDictionaryVersion</key>
  14 + <string>6.0</string>
  15 + <key>CFBundleName</key>
  16 + <string>${PRODUCT_NAME}</string>
  17 + <key>CFBundlePackageType</key>
  18 + <string>APPL</string>
  19 + <key>CFBundleShortVersionString</key>
  20 + <string>1.0</string>
  21 + <key>CFBundleSignature</key>
  22 + <string>????</string>
  23 + <key>CFBundleVersion</key>
  24 + <string>1.0</string>
  25 + <key>LSRequiresIPhoneOS</key>
  26 + <true/>
  27 + <key>UILaunchStoryboardName</key>
  28 + <string>LaunchScreen</string>
  29 + <key>UIMainStoryboardFile</key>
  30 + <string>Main</string>
  31 + <key>UIRequiredDeviceCapabilities</key>
  32 + <array>
  33 + <string>armv7</string>
  34 + </array>
  35 + <key>UISupportedInterfaceOrientations</key>
  36 + <array>
  37 + <string>UIInterfaceOrientationPortrait</string>
  38 + <string>UIInterfaceOrientationLandscapeLeft</string>
  39 + <string>UIInterfaceOrientationLandscapeRight</string>
  40 + </array>
  41 + <key>UISupportedInterfaceOrientations~ipad</key>
  42 + <array>
  43 + <string>UIInterfaceOrientationPortrait</string>
  44 + <string>UIInterfaceOrientationPortraitUpsideDown</string>
  45 + <string>UIInterfaceOrientationLandscapeLeft</string>
  46 + <string>UIInterfaceOrientationLandscapeRight</string>
  47 + </array>
  48 +</dict>
  49 +</plist>
Example/DSBaseControlsModuleF/DSBaseControlsModuleF-Prefix.pch 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/DSBaseControlsModuleF-Prefix.pch
  1 +//
  2 +// Prefix header
  3 +//
  4 +// The contents of this file are implicitly included at the beginning of every source file.
  5 +//
  6 +
  7 +#import <Availability.h>
  8 +
  9 +#ifndef __IPHONE_5_0
  10 +#warning "This project uses features only available in iOS SDK 5.0 and later."
  11 +#endif
  12 +
  13 +#ifdef __OBJC__
  14 + @import UIKit;
  15 + @import Foundation;
  16 +#endif
Example/DSBaseControlsModuleF/DSViewController.h 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/DSViewController.h
  1 +//
  2 +// DSViewController.h
  3 +// DSBaseControlsModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface DSViewController : UIViewController
  12 +
  13 +@end
Example/DSBaseControlsModuleF/DSViewController.m 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/DSViewController.m
  1 +//
  2 +// DSViewController.m
  3 +// DSBaseControlsModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +#import "DSViewController.h"
  10 +
  11 +@interface DSViewController ()
  12 +
  13 +@end
  14 +
  15 +@implementation DSViewController
  16 +
  17 +- (void)viewDidLoad
  18 +{
  19 + [super viewDidLoad];
  20 + // Do any additional setup after loading the view, typically from a nib.
  21 +}
  22 +
  23 +- (void)didReceiveMemoryWarning
  24 +{
  25 + [super didReceiveMemoryWarning];
  26 + // Dispose of any resources that can be recreated.
  27 +}
  28 +
  29 +@end
Example/DSBaseControlsModuleF/Images.xcassets/AppIcon.appiconset/Contents.json 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/Images.xcassets/AppIcon.appiconset/Contents.json
  1 +{
  2 + "images" : [
  3 + {
  4 + "idiom" : "iphone",
  5 + "size" : "20x20",
  6 + "scale" : "2x"
  7 + },
  8 + {
  9 + "idiom" : "iphone",
  10 + "size" : "20x20",
  11 + "scale" : "3x"
  12 + },
  13 + {
  14 + "idiom" : "iphone",
  15 + "size" : "29x29",
  16 + "scale" : "2x"
  17 + },
  18 + {
  19 + "idiom" : "iphone",
  20 + "size" : "29x29",
  21 + "scale" : "3x"
  22 + },
  23 + {
  24 + "idiom" : "iphone",
  25 + "size" : "40x40",
  26 + "scale" : "2x"
  27 + },
  28 + {
  29 + "idiom" : "iphone",
  30 + "size" : "40x40",
  31 + "scale" : "3x"
  32 + },
  33 + {
  34 + "idiom" : "iphone",
  35 + "size" : "60x60",
  36 + "scale" : "2x"
  37 + },
  38 + {
  39 + "idiom" : "iphone",
  40 + "size" : "60x60",
  41 + "scale" : "3x"
  42 + },
  43 + {
  44 + "idiom" : "ipad",
  45 + "size" : "20x20",
  46 + "scale" : "1x"
  47 + },
  48 + {
  49 + "idiom" : "ipad",
  50 + "size" : "20x20",
  51 + "scale" : "2x"
  52 + },
  53 + {
  54 + "idiom" : "ipad",
  55 + "size" : "29x29",
  56 + "scale" : "1x"
  57 + },
  58 + {
  59 + "idiom" : "ipad",
  60 + "size" : "29x29",
  61 + "scale" : "2x"
  62 + },
  63 + {
  64 + "idiom" : "ipad",
  65 + "size" : "40x40",
  66 + "scale" : "1x"
  67 + },
  68 + {
  69 + "idiom" : "ipad",
  70 + "size" : "40x40",
  71 + "scale" : "2x"
  72 + },
  73 + {
  74 + "idiom" : "ipad",
  75 + "size" : "76x76",
  76 + "scale" : "1x"
  77 + },
  78 + {
  79 + "idiom" : "ipad",
  80 + "size" : "76x76",
  81 + "scale" : "2x"
  82 + },
  83 + {
  84 + "idiom" : "ipad",
  85 + "size" : "83.5x83.5",
  86 + "scale" : "2x"
  87 + },
  88 + {
  89 + "idiom" : "ios-marketing",
  90 + "size" : "1024x1024",
  91 + "scale" : "1x"
  92 + }
  93 + ],
  94 + "info" : {
  95 + "version" : 1,
  96 + "author" : "xcode"
  97 + }
  98 +}
Example/DSBaseControlsModuleF/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
Example/DSBaseControlsModuleF/main.m 0 → 100644
  1 +++ a/Example/DSBaseControlsModuleF/main.m
  1 +//
  2 +// main.m
  3 +// DSBaseControlsModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +#import "DSAppDelegate.h"
  11 +
  12 +int main(int argc, char * argv[])
  13 +{
  14 + @autoreleasepool {
  15 + return UIApplicationMain(argc, argv, nil, NSStringFromClass([DSAppDelegate class]));
  16 + }
  17 +}
Example/Podfile 0 → 100644
  1 +++ a/Example/Podfile
  1 +use_frameworks!
  2 +
  3 +platform :ios, '8.0'
  4 +
  5 +target 'DSBaseControlsModuleF_Example' do
  6 + pod 'DSBaseControlsModuleF', :path => '../'
  7 +
  8 + target 'DSBaseControlsModuleF_Tests' do
  9 + inherit! :search_paths
  10 +
  11 +
  12 + end
  13 +end
Example/Podfile.lock 0 → 100644
  1 +++ a/Example/Podfile.lock
  1 +PODS:
  2 + - DSBaseControlsModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSBaseControlsModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSBaseControlsModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSBaseControlsModuleF: ef4dfe406c389d6b61a46a897aa58ab350a27ab1
  13 +
  14 +PODFILE CHECKSUM: 27d11c7b02997beb31ee3a6fea310fe76b329c3c
  15 +
  16 +COCOAPODS: 1.8.4
Example/Pods/Local Podspecs/DSBaseControlsModuleF.podspec.json 0 → 100644
  1 +++ a/Example/Pods/Local Podspecs/DSBaseControlsModuleF.podspec.json
  1 +{
  2 + "name": "DSBaseControlsModuleF",
  3 + "version": "0.1.0",
  4 + "summary": "A short description of DSBaseControlsModuleF.",
  5 + "description": "TODO: Add long description of the pod here.",
  6 + "homepage": "https://github.com/694092596@qq.com/DSBaseControlsModuleF",
  7 + "license": {
  8 + "type": "MIT",
  9 + "file": "LICENSE"
  10 + },
  11 + "authors": {
  12 + "694092596@qq.com": "694092596@qq.com"
  13 + },
  14 + "source": {
  15 + "git": "https://github.com/694092596@qq.com/DSBaseControlsModuleF.git",
  16 + "tag": "0.1.0"
  17 + },
  18 + "platforms": {
  19 + "ios": "8.0"
  20 + },
  21 + "source_files": "DSBaseControlsModuleF/Classes/**/*"
  22 +}
Example/Pods/Manifest.lock 0 → 100644
  1 +++ a/Example/Pods/Manifest.lock
  1 +PODS:
  2 + - DSBaseControlsModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSBaseControlsModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSBaseControlsModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSBaseControlsModuleF: ef4dfe406c389d6b61a46a897aa58ab350a27ab1
  13 +
  14 +PODFILE CHECKSUM: 27d11c7b02997beb31ee3a6fea310fe76b329c3c
  15 +
  16 +COCOAPODS: 1.8.4
Example/Pods/Pods.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 01B0552CBBE41A1B3D3D82A17F40ECA4 /* ReplaceMe.m in Sources */ = {isa = PBXBuildFile; fileRef = 35C5F41D4F7253E341B3CDACAE7B9F86 /* ReplaceMe.m */; };
  11 + 30DED7D1003C1A06E4E634136548DDE1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  12 + 7711D974AC1A4FCB0E0E09C5ACA76FA0 /* Pods-DSBaseControlsModuleF_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C0F655F9C555CFBF1A5ECD927C046C5 /* Pods-DSBaseControlsModuleF_Tests-dummy.m */; };
  13 + A30BA9B9E3029802F279160B6B432E90 /* DSBaseControlsModuleF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A8CF029FA850A0FD8C2312C7AC4BFA7 /* DSBaseControlsModuleF-dummy.m */; };
  14 + B69443B4C50B8F4BFE55F9788260F252 /* DSBaseControlsModuleF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB341DE6B87F931CD6B231EC4906F7E /* DSBaseControlsModuleF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  15 + D314F141DD27C3814DAEF7B24C302D4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  16 + D8E48A1C72F49A2C0C005DD4F9FF402B /* Pods-DSBaseControlsModuleF_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E921FF796034BB824264348BAB7AC350 /* Pods-DSBaseControlsModuleF_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  17 + D9A612CF4C6B2516F79EEFAC33694C39 /* Pods-DSBaseControlsModuleF_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A607E8B00DF32A7A11341DEF5DCDAC /* Pods-DSBaseControlsModuleF_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  18 + DB32C8FB7198A653D05333C7D51E7610 /* Pods-DSBaseControlsModuleF_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E81599A970778675212BA006D9B6E1 /* Pods-DSBaseControlsModuleF_Example-dummy.m */; };
  19 + FE7DA80FE2A215EBF17B7C3B571FD90A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  20 +/* End PBXBuildFile section */
  21 +
  22 +/* Begin PBXContainerItemProxy section */
  23 + 1C5A057E70096A0CE0456503498D8968 /* PBXContainerItemProxy */ = {
  24 + isa = PBXContainerItemProxy;
  25 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  26 + proxyType = 1;
  27 + remoteGlobalIDString = 0D566AAEB485B11933212A2B12287E4F;
  28 + remoteInfo = "Pods-DSBaseControlsModuleF_Example";
  29 + };
  30 + 20D299B57CF552B24176B20276C11F82 /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = A70F1D1C13AD1AEA874BD458BB1729B8;
  35 + remoteInfo = DSBaseControlsModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 053AEF57A7FF118659B2E0F893AB0FEC /* Pods-DSBaseControlsModuleF_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSBaseControlsModuleF_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  41 + 09F1896DD64534BCF9765D4C316096E6 /* Pods-DSBaseControlsModuleF_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSBaseControlsModuleF_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
  42 + 0A5A00A4B998D83F6FA5143FEA7F59C7 /* Pods_DSBaseControlsModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSBaseControlsModuleF_Example.framework; path = "Pods-DSBaseControlsModuleF_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  43 + 0F24AE2414BBA8895559270F379E3798 /* Pods-DSBaseControlsModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseControlsModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  44 + 22E2FCC8D6E2DE53C1562D377074B8C4 /* Pods-DSBaseControlsModuleF_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseControlsModuleF_Example-Info.plist"; sourceTree = "<group>"; };
  45 + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
  46 + 35C5F41D4F7253E341B3CDACAE7B9F86 /* ReplaceMe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReplaceMe.m; path = DSBaseControlsModuleF/Classes/ReplaceMe.m; sourceTree = "<group>"; };
  47 + 3AB341DE6B87F931CD6B231EC4906F7E /* DSBaseControlsModuleF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSBaseControlsModuleF-umbrella.h"; sourceTree = "<group>"; };
  48 + 44E81599A970778675212BA006D9B6E1 /* Pods-DSBaseControlsModuleF_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSBaseControlsModuleF_Example-dummy.m"; sourceTree = "<group>"; };
  49 + 48634088EDF1532F67513AF557B548F8 /* Pods-DSBaseControlsModuleF_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSBaseControlsModuleF_Example.modulemap"; sourceTree = "<group>"; };
  50 + 5470A615247B14141CFB80ED9FC899D8 /* Pods-DSBaseControlsModuleF_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DSBaseControlsModuleF_Example-frameworks.sh"; sourceTree = "<group>"; };
  51 + 55A607E8B00DF32A7A11341DEF5DCDAC /* Pods-DSBaseControlsModuleF_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSBaseControlsModuleF_Example-umbrella.h"; sourceTree = "<group>"; };
  52 + 5D6A6D3C50982E1E98783D5BC99D4949 /* Pods-DSBaseControlsModuleF_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseControlsModuleF_Tests-Info.plist"; sourceTree = "<group>"; };
  53 + 63D9C86DEF7BBB982A3CD7C55A4D0296 /* Pods-DSBaseControlsModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseControlsModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  54 + 6D81880BE12E00B568C0A2B73BADC9C2 /* Pods-DSBaseControlsModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseControlsModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  55 + 6F63629BB7FD3B14D31C6FD44C4BBEF7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  56 + 7A57C6E697B9241C800BD622F904872C /* DSBaseControlsModuleF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DSBaseControlsModuleF.modulemap; sourceTree = "<group>"; };
  57 + 7A8CF029FA850A0FD8C2312C7AC4BFA7 /* DSBaseControlsModuleF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DSBaseControlsModuleF-dummy.m"; sourceTree = "<group>"; };
  58 + 7C0F655F9C555CFBF1A5ECD927C046C5 /* Pods-DSBaseControlsModuleF_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSBaseControlsModuleF_Tests-dummy.m"; sourceTree = "<group>"; };
  59 + 802673E965E7778BB2C35A37B2F9F995 /* DSBaseControlsModuleF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DSBaseControlsModuleF.framework; path = DSBaseControlsModuleF.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  60 + 8E5125A46CF6EDD4DFC93A9609EB4B8E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  61 + 8FFD1C887114024F27E5DD632DEF7DCD /* Pods-DSBaseControlsModuleF_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseControlsModuleF_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
  62 + 9544DC06B875A5E7D2BECE233573ED1C /* Pods-DSBaseControlsModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseControlsModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  63 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  64 + A137A4880B06A9EC41E5E872EEC36376 /* Pods_DSBaseControlsModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSBaseControlsModuleF_Tests.framework; path = "Pods-DSBaseControlsModuleF_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  65 + AF961A4E9AF1A804607318532743E7EC /* DSBaseControlsModuleF.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DSBaseControlsModuleF.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  66 + C8826BF7410FE2F7C664371EE336A0F7 /* DSBaseControlsModuleF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DSBaseControlsModuleF.xcconfig; sourceTree = "<group>"; };
  67 + CA823AE09167AAF5A9C047B3D3FDC996 /* Pods-DSBaseControlsModuleF_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseControlsModuleF_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  68 + E921FF796034BB824264348BAB7AC350 /* Pods-DSBaseControlsModuleF_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSBaseControlsModuleF_Tests-umbrella.h"; sourceTree = "<group>"; };
  69 + F39A90B1275FDD7718AF5979A9B8EAA7 /* Pods-DSBaseControlsModuleF_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSBaseControlsModuleF_Tests.modulemap"; sourceTree = "<group>"; };
  70 + F527F186296F3CEE60B305EE710EF555 /* DSBaseControlsModuleF-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DSBaseControlsModuleF-Info.plist"; sourceTree = "<group>"; };
  71 + F73E53263220B7A55BDEC13DF56153F1 /* DSBaseControlsModuleF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSBaseControlsModuleF-prefix.pch"; sourceTree = "<group>"; };
  72 +/* End PBXFileReference section */
  73 +
  74 +/* Begin PBXFrameworksBuildPhase section */
  75 + 20A845BFECF5BEF3BA993F789246BDD1 /* Frameworks */ = {
  76 + isa = PBXFrameworksBuildPhase;
  77 + buildActionMask = 2147483647;
  78 + files = (
  79 + FE7DA80FE2A215EBF17B7C3B571FD90A /* Foundation.framework in Frameworks */,
  80 + );
  81 + runOnlyForDeploymentPostprocessing = 0;
  82 + };
  83 + 3E30E39F30623202586DEA4472582864 /* Frameworks */ = {
  84 + isa = PBXFrameworksBuildPhase;
  85 + buildActionMask = 2147483647;
  86 + files = (
  87 + D314F141DD27C3814DAEF7B24C302D4B /* Foundation.framework in Frameworks */,
  88 + );
  89 + runOnlyForDeploymentPostprocessing = 0;
  90 + };
  91 + 40CA2F9EF7573E761488FEF03621730E /* Frameworks */ = {
  92 + isa = PBXFrameworksBuildPhase;
  93 + buildActionMask = 2147483647;
  94 + files = (
  95 + 30DED7D1003C1A06E4E634136548DDE1 /* Foundation.framework in Frameworks */,
  96 + );
  97 + runOnlyForDeploymentPostprocessing = 0;
  98 + };
  99 +/* End PBXFrameworksBuildPhase section */
  100 +
  101 +/* Begin PBXGroup section */
  102 + 0E333DB53A7E3205B4BAD8C87B24DB60 /* Targets Support Files */ = {
  103 + isa = PBXGroup;
  104 + children = (
  105 + 97B85EE7318B04ED6EA3ED9665383653 /* Pods-DSBaseControlsModuleF_Example */,
  106 + 455ABDDCA8AD63154613682EA348F0A4 /* Pods-DSBaseControlsModuleF_Tests */,
  107 + );
  108 + name = "Targets Support Files";
  109 + sourceTree = "<group>";
  110 + };
  111 + 455ABDDCA8AD63154613682EA348F0A4 /* Pods-DSBaseControlsModuleF_Tests */ = {
  112 + isa = PBXGroup;
  113 + children = (
  114 + F39A90B1275FDD7718AF5979A9B8EAA7 /* Pods-DSBaseControlsModuleF_Tests.modulemap */,
  115 + 09F1896DD64534BCF9765D4C316096E6 /* Pods-DSBaseControlsModuleF_Tests-acknowledgements.markdown */,
  116 + 8FFD1C887114024F27E5DD632DEF7DCD /* Pods-DSBaseControlsModuleF_Tests-acknowledgements.plist */,
  117 + 7C0F655F9C555CFBF1A5ECD927C046C5 /* Pods-DSBaseControlsModuleF_Tests-dummy.m */,
  118 + 5D6A6D3C50982E1E98783D5BC99D4949 /* Pods-DSBaseControlsModuleF_Tests-Info.plist */,
  119 + E921FF796034BB824264348BAB7AC350 /* Pods-DSBaseControlsModuleF_Tests-umbrella.h */,
  120 + 0F24AE2414BBA8895559270F379E3798 /* Pods-DSBaseControlsModuleF_Tests.debug.xcconfig */,
  121 + 6D81880BE12E00B568C0A2B73BADC9C2 /* Pods-DSBaseControlsModuleF_Tests.release.xcconfig */,
  122 + );
  123 + name = "Pods-DSBaseControlsModuleF_Tests";
  124 + path = "Target Support Files/Pods-DSBaseControlsModuleF_Tests";
  125 + sourceTree = "<group>";
  126 + };
  127 + 95DEB9BB5738E56955BBD519725E87AD /* Pod */ = {
  128 + isa = PBXGroup;
  129 + children = (
  130 + AF961A4E9AF1A804607318532743E7EC /* DSBaseControlsModuleF.podspec */,
  131 + 8E5125A46CF6EDD4DFC93A9609EB4B8E /* LICENSE */,
  132 + 6F63629BB7FD3B14D31C6FD44C4BBEF7 /* README.md */,
  133 + );
  134 + name = Pod;
  135 + sourceTree = "<group>";
  136 + };
  137 + 97B85EE7318B04ED6EA3ED9665383653 /* Pods-DSBaseControlsModuleF_Example */ = {
  138 + isa = PBXGroup;
  139 + children = (
  140 + 48634088EDF1532F67513AF557B548F8 /* Pods-DSBaseControlsModuleF_Example.modulemap */,
  141 + 053AEF57A7FF118659B2E0F893AB0FEC /* Pods-DSBaseControlsModuleF_Example-acknowledgements.markdown */,
  142 + CA823AE09167AAF5A9C047B3D3FDC996 /* Pods-DSBaseControlsModuleF_Example-acknowledgements.plist */,
  143 + 44E81599A970778675212BA006D9B6E1 /* Pods-DSBaseControlsModuleF_Example-dummy.m */,
  144 + 5470A615247B14141CFB80ED9FC899D8 /* Pods-DSBaseControlsModuleF_Example-frameworks.sh */,
  145 + 22E2FCC8D6E2DE53C1562D377074B8C4 /* Pods-DSBaseControlsModuleF_Example-Info.plist */,
  146 + 55A607E8B00DF32A7A11341DEF5DCDAC /* Pods-DSBaseControlsModuleF_Example-umbrella.h */,
  147 + 9544DC06B875A5E7D2BECE233573ED1C /* Pods-DSBaseControlsModuleF_Example.debug.xcconfig */,
  148 + 63D9C86DEF7BBB982A3CD7C55A4D0296 /* Pods-DSBaseControlsModuleF_Example.release.xcconfig */,
  149 + );
  150 + name = "Pods-DSBaseControlsModuleF_Example";
  151 + path = "Target Support Files/Pods-DSBaseControlsModuleF_Example";
  152 + sourceTree = "<group>";
  153 + };
  154 + B9C4CD4B791A9E5F77C925AD69A06DD9 /* Products */ = {
  155 + isa = PBXGroup;
  156 + children = (
  157 + 802673E965E7778BB2C35A37B2F9F995 /* DSBaseControlsModuleF.framework */,
  158 + 0A5A00A4B998D83F6FA5143FEA7F59C7 /* Pods_DSBaseControlsModuleF_Example.framework */,
  159 + A137A4880B06A9EC41E5E872EEC36376 /* Pods_DSBaseControlsModuleF_Tests.framework */,
  160 + );
  161 + name = Products;
  162 + sourceTree = "<group>";
  163 + };
  164 + BCE97F9AC94DBA42C9C5109105F6F09E /* DSBaseControlsModuleF */ = {
  165 + isa = PBXGroup;
  166 + children = (
  167 + 35C5F41D4F7253E341B3CDACAE7B9F86 /* ReplaceMe.m */,
  168 + 95DEB9BB5738E56955BBD519725E87AD /* Pod */,
  169 + CFE8A93F07AA6C66C450B3EAF0568D09 /* Support Files */,
  170 + );
  171 + name = DSBaseControlsModuleF;
  172 + path = ../..;
  173 + sourceTree = "<group>";
  174 + };
  175 + C0834CEBB1379A84116EF29F93051C60 /* iOS */ = {
  176 + isa = PBXGroup;
  177 + children = (
  178 + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */,
  179 + );
  180 + name = iOS;
  181 + sourceTree = "<group>";
  182 + };
  183 + C24F45E86A0A006D8463E3AC663B9075 /* Development Pods */ = {
  184 + isa = PBXGroup;
  185 + children = (
  186 + BCE97F9AC94DBA42C9C5109105F6F09E /* DSBaseControlsModuleF */,
  187 + );
  188 + name = "Development Pods";
  189 + sourceTree = "<group>";
  190 + };
  191 + CF1408CF629C7361332E53B88F7BD30C = {
  192 + isa = PBXGroup;
  193 + children = (
  194 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  195 + C24F45E86A0A006D8463E3AC663B9075 /* Development Pods */,
  196 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
  197 + B9C4CD4B791A9E5F77C925AD69A06DD9 /* Products */,
  198 + 0E333DB53A7E3205B4BAD8C87B24DB60 /* Targets Support Files */,
  199 + );
  200 + sourceTree = "<group>";
  201 + };
  202 + CFE8A93F07AA6C66C450B3EAF0568D09 /* Support Files */ = {
  203 + isa = PBXGroup;
  204 + children = (
  205 + 7A57C6E697B9241C800BD622F904872C /* DSBaseControlsModuleF.modulemap */,
  206 + C8826BF7410FE2F7C664371EE336A0F7 /* DSBaseControlsModuleF.xcconfig */,
  207 + 7A8CF029FA850A0FD8C2312C7AC4BFA7 /* DSBaseControlsModuleF-dummy.m */,
  208 + F527F186296F3CEE60B305EE710EF555 /* DSBaseControlsModuleF-Info.plist */,
  209 + F73E53263220B7A55BDEC13DF56153F1 /* DSBaseControlsModuleF-prefix.pch */,
  210 + 3AB341DE6B87F931CD6B231EC4906F7E /* DSBaseControlsModuleF-umbrella.h */,
  211 + );
  212 + name = "Support Files";
  213 + path = "Example/Pods/Target Support Files/DSBaseControlsModuleF";
  214 + sourceTree = "<group>";
  215 + };
  216 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
  217 + isa = PBXGroup;
  218 + children = (
  219 + C0834CEBB1379A84116EF29F93051C60 /* iOS */,
  220 + );
  221 + name = Frameworks;
  222 + sourceTree = "<group>";
  223 + };
  224 +/* End PBXGroup section */
  225 +
  226 +/* Begin PBXHeadersBuildPhase section */
  227 + 69B14C4499D96B6DB9F31D70A652DE5E /* Headers */ = {
  228 + isa = PBXHeadersBuildPhase;
  229 + buildActionMask = 2147483647;
  230 + files = (
  231 + B69443B4C50B8F4BFE55F9788260F252 /* DSBaseControlsModuleF-umbrella.h in Headers */,
  232 + );
  233 + runOnlyForDeploymentPostprocessing = 0;
  234 + };
  235 + DBB898CFBE782194E30D2974D1AB6597 /* Headers */ = {
  236 + isa = PBXHeadersBuildPhase;
  237 + buildActionMask = 2147483647;
  238 + files = (
  239 + D9A612CF4C6B2516F79EEFAC33694C39 /* Pods-DSBaseControlsModuleF_Example-umbrella.h in Headers */,
  240 + );
  241 + runOnlyForDeploymentPostprocessing = 0;
  242 + };
  243 + F6C365E1C2B100FDB6BBC8B9C09192E3 /* Headers */ = {
  244 + isa = PBXHeadersBuildPhase;
  245 + buildActionMask = 2147483647;
  246 + files = (
  247 + D8E48A1C72F49A2C0C005DD4F9FF402B /* Pods-DSBaseControlsModuleF_Tests-umbrella.h in Headers */,
  248 + );
  249 + runOnlyForDeploymentPostprocessing = 0;
  250 + };
  251 +/* End PBXHeadersBuildPhase section */
  252 +
  253 +/* Begin PBXNativeTarget section */
  254 + 0D566AAEB485B11933212A2B12287E4F /* Pods-DSBaseControlsModuleF_Example */ = {
  255 + isa = PBXNativeTarget;
  256 + buildConfigurationList = 964F71B8C8B7577F8E87E820C271A17E /* Build configuration list for PBXNativeTarget "Pods-DSBaseControlsModuleF_Example" */;
  257 + buildPhases = (
  258 + DBB898CFBE782194E30D2974D1AB6597 /* Headers */,
  259 + 0BB392290A4662C8C6FA8D73F222ECF2 /* Sources */,
  260 + 40CA2F9EF7573E761488FEF03621730E /* Frameworks */,
  261 + D4D4DCBBB4C2F90C0F18DFD7CFAF0F07 /* Resources */,
  262 + );
  263 + buildRules = (
  264 + );
  265 + dependencies = (
  266 + C0310681F4E02F6046CB1985305B8B8B /* PBXTargetDependency */,
  267 + );
  268 + name = "Pods-DSBaseControlsModuleF_Example";
  269 + productName = "Pods-DSBaseControlsModuleF_Example";
  270 + productReference = 0A5A00A4B998D83F6FA5143FEA7F59C7 /* Pods_DSBaseControlsModuleF_Example.framework */;
  271 + productType = "com.apple.product-type.framework";
  272 + };
  273 + 3924DD1251ECD398614AC86729D768EE /* Pods-DSBaseControlsModuleF_Tests */ = {
  274 + isa = PBXNativeTarget;
  275 + buildConfigurationList = 2F0581742AE0FFB25690AC4F544B0EC1 /* Build configuration list for PBXNativeTarget "Pods-DSBaseControlsModuleF_Tests" */;
  276 + buildPhases = (
  277 + F6C365E1C2B100FDB6BBC8B9C09192E3 /* Headers */,
  278 + A37ADE3DA519FCBDC6892A8C1B733B5E /* Sources */,
  279 + 20A845BFECF5BEF3BA993F789246BDD1 /* Frameworks */,
  280 + D670B83917C38B345F314628EABCB7C1 /* Resources */,
  281 + );
  282 + buildRules = (
  283 + );
  284 + dependencies = (
  285 + 68A820D40D269D73AB3DF499A0049077 /* PBXTargetDependency */,
  286 + );
  287 + name = "Pods-DSBaseControlsModuleF_Tests";
  288 + productName = "Pods-DSBaseControlsModuleF_Tests";
  289 + productReference = A137A4880B06A9EC41E5E872EEC36376 /* Pods_DSBaseControlsModuleF_Tests.framework */;
  290 + productType = "com.apple.product-type.framework";
  291 + };
  292 + A70F1D1C13AD1AEA874BD458BB1729B8 /* DSBaseControlsModuleF */ = {
  293 + isa = PBXNativeTarget;
  294 + buildConfigurationList = FCB550258F630C38D8B6C913BE63C220 /* Build configuration list for PBXNativeTarget "DSBaseControlsModuleF" */;
  295 + buildPhases = (
  296 + 69B14C4499D96B6DB9F31D70A652DE5E /* Headers */,
  297 + 470A1456F3102A2EA4124677C2CF4091 /* Sources */,
  298 + 3E30E39F30623202586DEA4472582864 /* Frameworks */,
  299 + BF747CF1B0BE208D0C0B66220D873F68 /* Resources */,
  300 + );
  301 + buildRules = (
  302 + );
  303 + dependencies = (
  304 + );
  305 + name = DSBaseControlsModuleF;
  306 + productName = DSBaseControlsModuleF;
  307 + productReference = 802673E965E7778BB2C35A37B2F9F995 /* DSBaseControlsModuleF.framework */;
  308 + productType = "com.apple.product-type.framework";
  309 + };
  310 +/* End PBXNativeTarget section */
  311 +
  312 +/* Begin PBXProject section */
  313 + BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  314 + isa = PBXProject;
  315 + attributes = {
  316 + LastSwiftUpdateCheck = 1100;
  317 + LastUpgradeCheck = 1100;
  318 + };
  319 + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  320 + compatibilityVersion = "Xcode 3.2";
  321 + developmentRegion = en;
  322 + hasScannedForEncodings = 0;
  323 + knownRegions = (
  324 + en,
  325 + Base,
  326 + );
  327 + mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  328 + productRefGroup = B9C4CD4B791A9E5F77C925AD69A06DD9 /* Products */;
  329 + projectDirPath = "";
  330 + projectRoot = "";
  331 + targets = (
  332 + A70F1D1C13AD1AEA874BD458BB1729B8 /* DSBaseControlsModuleF */,
  333 + 0D566AAEB485B11933212A2B12287E4F /* Pods-DSBaseControlsModuleF_Example */,
  334 + 3924DD1251ECD398614AC86729D768EE /* Pods-DSBaseControlsModuleF_Tests */,
  335 + );
  336 + };
  337 +/* End PBXProject section */
  338 +
  339 +/* Begin PBXResourcesBuildPhase section */
  340 + BF747CF1B0BE208D0C0B66220D873F68 /* Resources */ = {
  341 + isa = PBXResourcesBuildPhase;
  342 + buildActionMask = 2147483647;
  343 + files = (
  344 + );
  345 + runOnlyForDeploymentPostprocessing = 0;
  346 + };
  347 + D4D4DCBBB4C2F90C0F18DFD7CFAF0F07 /* Resources */ = {
  348 + isa = PBXResourcesBuildPhase;
  349 + buildActionMask = 2147483647;
  350 + files = (
  351 + );
  352 + runOnlyForDeploymentPostprocessing = 0;
  353 + };
  354 + D670B83917C38B345F314628EABCB7C1 /* Resources */ = {
  355 + isa = PBXResourcesBuildPhase;
  356 + buildActionMask = 2147483647;
  357 + files = (
  358 + );
  359 + runOnlyForDeploymentPostprocessing = 0;
  360 + };
  361 +/* End PBXResourcesBuildPhase section */
  362 +
  363 +/* Begin PBXSourcesBuildPhase section */
  364 + 0BB392290A4662C8C6FA8D73F222ECF2 /* Sources */ = {
  365 + isa = PBXSourcesBuildPhase;
  366 + buildActionMask = 2147483647;
  367 + files = (
  368 + DB32C8FB7198A653D05333C7D51E7610 /* Pods-DSBaseControlsModuleF_Example-dummy.m in Sources */,
  369 + );
  370 + runOnlyForDeploymentPostprocessing = 0;
  371 + };
  372 + 470A1456F3102A2EA4124677C2CF4091 /* Sources */ = {
  373 + isa = PBXSourcesBuildPhase;
  374 + buildActionMask = 2147483647;
  375 + files = (
  376 + A30BA9B9E3029802F279160B6B432E90 /* DSBaseControlsModuleF-dummy.m in Sources */,
  377 + 01B0552CBBE41A1B3D3D82A17F40ECA4 /* ReplaceMe.m in Sources */,
  378 + );
  379 + runOnlyForDeploymentPostprocessing = 0;
  380 + };
  381 + A37ADE3DA519FCBDC6892A8C1B733B5E /* Sources */ = {
  382 + isa = PBXSourcesBuildPhase;
  383 + buildActionMask = 2147483647;
  384 + files = (
  385 + 7711D974AC1A4FCB0E0E09C5ACA76FA0 /* Pods-DSBaseControlsModuleF_Tests-dummy.m in Sources */,
  386 + );
  387 + runOnlyForDeploymentPostprocessing = 0;
  388 + };
  389 +/* End PBXSourcesBuildPhase section */
  390 +
  391 +/* Begin PBXTargetDependency section */
  392 + 68A820D40D269D73AB3DF499A0049077 /* PBXTargetDependency */ = {
  393 + isa = PBXTargetDependency;
  394 + name = "Pods-DSBaseControlsModuleF_Example";
  395 + target = 0D566AAEB485B11933212A2B12287E4F /* Pods-DSBaseControlsModuleF_Example */;
  396 + targetProxy = 1C5A057E70096A0CE0456503498D8968 /* PBXContainerItemProxy */;
  397 + };
  398 + C0310681F4E02F6046CB1985305B8B8B /* PBXTargetDependency */ = {
  399 + isa = PBXTargetDependency;
  400 + name = DSBaseControlsModuleF;
  401 + target = A70F1D1C13AD1AEA874BD458BB1729B8 /* DSBaseControlsModuleF */;
  402 + targetProxy = 20D299B57CF552B24176B20276C11F82 /* PBXContainerItemProxy */;
  403 + };
  404 +/* End PBXTargetDependency section */
  405 +
  406 +/* Begin XCBuildConfiguration section */
  407 + 098BE573B150813708F282FEC8F3E4F1 /* Debug */ = {
  408 + isa = XCBuildConfiguration;
  409 + baseConfigurationReference = 9544DC06B875A5E7D2BECE233573ED1C /* Pods-DSBaseControlsModuleF_Example.debug.xcconfig */;
  410 + buildSettings = {
  411 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  412 + CODE_SIGN_IDENTITY = "";
  413 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  414 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  415 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  416 + CURRENT_PROJECT_VERSION = 1;
  417 + DEFINES_MODULE = YES;
  418 + DYLIB_COMPATIBILITY_VERSION = 1;
  419 + DYLIB_CURRENT_VERSION = 1;
  420 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  421 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-Info.plist";
  422 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  423 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  424 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  425 + MACH_O_TYPE = staticlib;
  426 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.modulemap";
  427 + OTHER_LDFLAGS = "";
  428 + OTHER_LIBTOOLFLAGS = "";
  429 + PODS_ROOT = "$(SRCROOT)";
  430 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  431 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  432 + SDKROOT = iphoneos;
  433 + SKIP_INSTALL = YES;
  434 + TARGETED_DEVICE_FAMILY = "1,2";
  435 + VERSIONING_SYSTEM = "apple-generic";
  436 + VERSION_INFO_PREFIX = "";
  437 + };
  438 + name = Debug;
  439 + };
  440 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = {
  441 + isa = XCBuildConfiguration;
  442 + buildSettings = {
  443 + ALWAYS_SEARCH_USER_PATHS = NO;
  444 + CLANG_ANALYZER_NONNULL = YES;
  445 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  446 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  447 + CLANG_CXX_LIBRARY = "libc++";
  448 + CLANG_ENABLE_MODULES = YES;
  449 + CLANG_ENABLE_OBJC_ARC = YES;
  450 + CLANG_ENABLE_OBJC_WEAK = YES;
  451 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  452 + CLANG_WARN_BOOL_CONVERSION = YES;
  453 + CLANG_WARN_COMMA = YES;
  454 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  455 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  456 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  457 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  458 + CLANG_WARN_EMPTY_BODY = YES;
  459 + CLANG_WARN_ENUM_CONVERSION = YES;
  460 + CLANG_WARN_INFINITE_RECURSION = YES;
  461 + CLANG_WARN_INT_CONVERSION = YES;
  462 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  463 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  464 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  465 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  466 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  467 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  468 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  469 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  470 + CLANG_WARN_UNREACHABLE_CODE = YES;
  471 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  472 + COPY_PHASE_STRIP = NO;
  473 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  474 + ENABLE_NS_ASSERTIONS = NO;
  475 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  476 + GCC_C_LANGUAGE_STANDARD = gnu11;
  477 + GCC_NO_COMMON_BLOCKS = YES;
  478 + GCC_PREPROCESSOR_DEFINITIONS = (
  479 + "POD_CONFIGURATION_RELEASE=1",
  480 + "$(inherited)",
  481 + );
  482 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  483 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  484 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  485 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  486 + GCC_WARN_UNUSED_FUNCTION = YES;
  487 + GCC_WARN_UNUSED_VARIABLE = YES;
  488 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  489 + MTL_ENABLE_DEBUG_INFO = NO;
  490 + MTL_FAST_MATH = YES;
  491 + PRODUCT_NAME = "$(TARGET_NAME)";
  492 + STRIP_INSTALLED_PRODUCT = NO;
  493 + SWIFT_COMPILATION_MODE = wholemodule;
  494 + SWIFT_OPTIMIZATION_LEVEL = "-O";
  495 + SWIFT_VERSION = 5.0;
  496 + SYMROOT = "${SRCROOT}/../build";
  497 + };
  498 + name = Release;
  499 + };
  500 + 6265244AED8E6519B6B5E889F39AF6A8 /* Debug */ = {
  501 + isa = XCBuildConfiguration;
  502 + baseConfigurationReference = C8826BF7410FE2F7C664371EE336A0F7 /* DSBaseControlsModuleF.xcconfig */;
  503 + buildSettings = {
  504 + CODE_SIGN_IDENTITY = "";
  505 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  506 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  507 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  508 + CURRENT_PROJECT_VERSION = 1;
  509 + DEFINES_MODULE = YES;
  510 + DYLIB_COMPATIBILITY_VERSION = 1;
  511 + DYLIB_CURRENT_VERSION = 1;
  512 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  513 + GCC_PREFIX_HEADER = "Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-prefix.pch";
  514 + INFOPLIST_FILE = "Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist";
  515 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  516 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  517 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  518 + MODULEMAP_FILE = "Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF.modulemap";
  519 + PRODUCT_MODULE_NAME = DSBaseControlsModuleF;
  520 + PRODUCT_NAME = DSBaseControlsModuleF;
  521 + SDKROOT = iphoneos;
  522 + SKIP_INSTALL = YES;
  523 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  524 + SWIFT_VERSION = 4.0;
  525 + TARGETED_DEVICE_FAMILY = "1,2";
  526 + VERSIONING_SYSTEM = "apple-generic";
  527 + VERSION_INFO_PREFIX = "";
  528 + };
  529 + name = Debug;
  530 + };
  531 + 63DF9A8C7E83E9AD1E08DF1493FD5492 /* Release */ = {
  532 + isa = XCBuildConfiguration;
  533 + baseConfigurationReference = 6D81880BE12E00B568C0A2B73BADC9C2 /* Pods-DSBaseControlsModuleF_Tests.release.xcconfig */;
  534 + buildSettings = {
  535 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  536 + CODE_SIGN_IDENTITY = "";
  537 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  538 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  539 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  540 + CURRENT_PROJECT_VERSION = 1;
  541 + DEFINES_MODULE = YES;
  542 + DYLIB_COMPATIBILITY_VERSION = 1;
  543 + DYLIB_CURRENT_VERSION = 1;
  544 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  545 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-Info.plist";
  546 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  547 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  548 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  549 + MACH_O_TYPE = staticlib;
  550 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.modulemap";
  551 + OTHER_LDFLAGS = "";
  552 + OTHER_LIBTOOLFLAGS = "";
  553 + PODS_ROOT = "$(SRCROOT)";
  554 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  555 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  556 + SDKROOT = iphoneos;
  557 + SKIP_INSTALL = YES;
  558 + TARGETED_DEVICE_FAMILY = "1,2";
  559 + VALIDATE_PRODUCT = YES;
  560 + VERSIONING_SYSTEM = "apple-generic";
  561 + VERSION_INFO_PREFIX = "";
  562 + };
  563 + name = Release;
  564 + };
  565 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = {
  566 + isa = XCBuildConfiguration;
  567 + buildSettings = {
  568 + ALWAYS_SEARCH_USER_PATHS = NO;
  569 + CLANG_ANALYZER_NONNULL = YES;
  570 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  571 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  572 + CLANG_CXX_LIBRARY = "libc++";
  573 + CLANG_ENABLE_MODULES = YES;
  574 + CLANG_ENABLE_OBJC_ARC = YES;
  575 + CLANG_ENABLE_OBJC_WEAK = YES;
  576 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  577 + CLANG_WARN_BOOL_CONVERSION = YES;
  578 + CLANG_WARN_COMMA = YES;
  579 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  580 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  581 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  582 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  583 + CLANG_WARN_EMPTY_BODY = YES;
  584 + CLANG_WARN_ENUM_CONVERSION = YES;
  585 + CLANG_WARN_INFINITE_RECURSION = YES;
  586 + CLANG_WARN_INT_CONVERSION = YES;
  587 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  588 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  589 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  590 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  591 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  592 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  593 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  594 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  595 + CLANG_WARN_UNREACHABLE_CODE = YES;
  596 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  597 + COPY_PHASE_STRIP = NO;
  598 + DEBUG_INFORMATION_FORMAT = dwarf;
  599 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  600 + ENABLE_TESTABILITY = YES;
  601 + GCC_C_LANGUAGE_STANDARD = gnu11;
  602 + GCC_DYNAMIC_NO_PIC = NO;
  603 + GCC_NO_COMMON_BLOCKS = YES;
  604 + GCC_OPTIMIZATION_LEVEL = 0;
  605 + GCC_PREPROCESSOR_DEFINITIONS = (
  606 + "POD_CONFIGURATION_DEBUG=1",
  607 + "DEBUG=1",
  608 + "$(inherited)",
  609 + );
  610 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  611 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  612 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  613 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  614 + GCC_WARN_UNUSED_FUNCTION = YES;
  615 + GCC_WARN_UNUSED_VARIABLE = YES;
  616 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  617 + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  618 + MTL_FAST_MATH = YES;
  619 + ONLY_ACTIVE_ARCH = YES;
  620 + PRODUCT_NAME = "$(TARGET_NAME)";
  621 + STRIP_INSTALLED_PRODUCT = NO;
  622 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  623 + SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  624 + SWIFT_VERSION = 5.0;
  625 + SYMROOT = "${SRCROOT}/../build";
  626 + };
  627 + name = Debug;
  628 + };
  629 + CA5148190683FDBF486F03A84D858F73 /* Release */ = {
  630 + isa = XCBuildConfiguration;
  631 + baseConfigurationReference = C8826BF7410FE2F7C664371EE336A0F7 /* DSBaseControlsModuleF.xcconfig */;
  632 + buildSettings = {
  633 + CODE_SIGN_IDENTITY = "";
  634 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  635 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  636 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  637 + CURRENT_PROJECT_VERSION = 1;
  638 + DEFINES_MODULE = YES;
  639 + DYLIB_COMPATIBILITY_VERSION = 1;
  640 + DYLIB_CURRENT_VERSION = 1;
  641 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  642 + GCC_PREFIX_HEADER = "Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-prefix.pch";
  643 + INFOPLIST_FILE = "Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist";
  644 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  645 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  646 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  647 + MODULEMAP_FILE = "Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF.modulemap";
  648 + PRODUCT_MODULE_NAME = DSBaseControlsModuleF;
  649 + PRODUCT_NAME = DSBaseControlsModuleF;
  650 + SDKROOT = iphoneos;
  651 + SKIP_INSTALL = YES;
  652 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  653 + SWIFT_VERSION = 4.0;
  654 + TARGETED_DEVICE_FAMILY = "1,2";
  655 + VALIDATE_PRODUCT = YES;
  656 + VERSIONING_SYSTEM = "apple-generic";
  657 + VERSION_INFO_PREFIX = "";
  658 + };
  659 + name = Release;
  660 + };
  661 + F2D523BA80571C3B5978AE8549C1CD0D /* Release */ = {
  662 + isa = XCBuildConfiguration;
  663 + baseConfigurationReference = 63D9C86DEF7BBB982A3CD7C55A4D0296 /* Pods-DSBaseControlsModuleF_Example.release.xcconfig */;
  664 + buildSettings = {
  665 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  666 + CODE_SIGN_IDENTITY = "";
  667 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  668 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  669 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  670 + CURRENT_PROJECT_VERSION = 1;
  671 + DEFINES_MODULE = YES;
  672 + DYLIB_COMPATIBILITY_VERSION = 1;
  673 + DYLIB_CURRENT_VERSION = 1;
  674 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  675 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-Info.plist";
  676 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  677 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  678 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  679 + MACH_O_TYPE = staticlib;
  680 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.modulemap";
  681 + OTHER_LDFLAGS = "";
  682 + OTHER_LIBTOOLFLAGS = "";
  683 + PODS_ROOT = "$(SRCROOT)";
  684 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  685 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  686 + SDKROOT = iphoneos;
  687 + SKIP_INSTALL = YES;
  688 + TARGETED_DEVICE_FAMILY = "1,2";
  689 + VALIDATE_PRODUCT = YES;
  690 + VERSIONING_SYSTEM = "apple-generic";
  691 + VERSION_INFO_PREFIX = "";
  692 + };
  693 + name = Release;
  694 + };
  695 + F6C822ADEC5EC5002570A6D3D7940438 /* Debug */ = {
  696 + isa = XCBuildConfiguration;
  697 + baseConfigurationReference = 0F24AE2414BBA8895559270F379E3798 /* Pods-DSBaseControlsModuleF_Tests.debug.xcconfig */;
  698 + buildSettings = {
  699 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  700 + CODE_SIGN_IDENTITY = "";
  701 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  702 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  703 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  704 + CURRENT_PROJECT_VERSION = 1;
  705 + DEFINES_MODULE = YES;
  706 + DYLIB_COMPATIBILITY_VERSION = 1;
  707 + DYLIB_CURRENT_VERSION = 1;
  708 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  709 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-Info.plist";
  710 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  711 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  712 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  713 + MACH_O_TYPE = staticlib;
  714 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.modulemap";
  715 + OTHER_LDFLAGS = "";
  716 + OTHER_LIBTOOLFLAGS = "";
  717 + PODS_ROOT = "$(SRCROOT)";
  718 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  719 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  720 + SDKROOT = iphoneos;
  721 + SKIP_INSTALL = YES;
  722 + TARGETED_DEVICE_FAMILY = "1,2";
  723 + VERSIONING_SYSTEM = "apple-generic";
  724 + VERSION_INFO_PREFIX = "";
  725 + };
  726 + name = Debug;
  727 + };
  728 +/* End XCBuildConfiguration section */
  729 +
  730 +/* Begin XCConfigurationList section */
  731 + 2F0581742AE0FFB25690AC4F544B0EC1 /* Build configuration list for PBXNativeTarget "Pods-DSBaseControlsModuleF_Tests" */ = {
  732 + isa = XCConfigurationList;
  733 + buildConfigurations = (
  734 + F6C822ADEC5EC5002570A6D3D7940438 /* Debug */,
  735 + 63DF9A8C7E83E9AD1E08DF1493FD5492 /* Release */,
  736 + );
  737 + defaultConfigurationIsVisible = 0;
  738 + defaultConfigurationName = Release;
  739 + };
  740 + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  741 + isa = XCConfigurationList;
  742 + buildConfigurations = (
  743 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */,
  744 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */,
  745 + );
  746 + defaultConfigurationIsVisible = 0;
  747 + defaultConfigurationName = Release;
  748 + };
  749 + 964F71B8C8B7577F8E87E820C271A17E /* Build configuration list for PBXNativeTarget "Pods-DSBaseControlsModuleF_Example" */ = {
  750 + isa = XCConfigurationList;
  751 + buildConfigurations = (
  752 + 098BE573B150813708F282FEC8F3E4F1 /* Debug */,
  753 + F2D523BA80571C3B5978AE8549C1CD0D /* Release */,
  754 + );
  755 + defaultConfigurationIsVisible = 0;
  756 + defaultConfigurationName = Release;
  757 + };
  758 + FCB550258F630C38D8B6C913BE63C220 /* Build configuration list for PBXNativeTarget "DSBaseControlsModuleF" */ = {
  759 + isa = XCConfigurationList;
  760 + buildConfigurations = (
  761 + 6265244AED8E6519B6B5E889F39AF6A8 /* Debug */,
  762 + CA5148190683FDBF486F03A84D858F73 /* Release */,
  763 + );
  764 + defaultConfigurationIsVisible = 0;
  765 + defaultConfigurationName = Release;
  766 + };
  767 +/* End XCConfigurationList section */
  768 + };
  769 + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  770 +}
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSBaseControlsModuleF.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSBaseControlsModuleF.xcscheme
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "1100"
  4 + version = "1.3">
  5 + <BuildAction
  6 + parallelizeBuildables = "YES"
  7 + buildImplicitDependencies = "YES">
  8 + <BuildActionEntries>
  9 + <BuildActionEntry
  10 + buildForAnalyzing = "YES"
  11 + buildForTesting = "YES"
  12 + buildForRunning = "YES"
  13 + buildForProfiling = "YES"
  14 + buildForArchiving = "YES">
  15 + <BuildableReference
  16 + BuildableIdentifier = "primary"
  17 + BlueprintIdentifier = "A70F1D1C13AD1AEA874BD458BB1729B8"
  18 + BuildableName = "DSBaseControlsModuleF.framework"
  19 + BlueprintName = "DSBaseControlsModuleF"
  20 + ReferencedContainer = "container:Pods.xcodeproj">
  21 + </BuildableReference>
  22 + </BuildActionEntry>
  23 + </BuildActionEntries>
  24 + </BuildAction>
  25 + <TestAction
  26 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  27 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  28 + shouldUseLaunchSchemeArgsEnv = "YES"
  29 + buildConfiguration = "Debug">
  30 + <AdditionalOptions>
  31 + </AdditionalOptions>
  32 + </TestAction>
  33 + <LaunchAction
  34 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  35 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  36 + launchStyle = "0"
  37 + useCustomWorkingDirectory = "NO"
  38 + ignoresPersistentStateOnLaunch = "NO"
  39 + debugDocumentVersioning = "YES"
  40 + debugServiceExtension = "internal"
  41 + buildConfiguration = "Debug"
  42 + allowLocationSimulation = "YES">
  43 + <AdditionalOptions>
  44 + </AdditionalOptions>
  45 + </LaunchAction>
  46 + <ProfileAction
  47 + savedToolIdentifier = ""
  48 + useCustomWorkingDirectory = "NO"
  49 + debugDocumentVersioning = "YES"
  50 + buildConfiguration = "Release"
  51 + shouldUseLaunchSchemeArgsEnv = "YES">
  52 + </ProfileAction>
  53 + <AnalyzeAction
  54 + buildConfiguration = "Debug">
  55 + </AnalyzeAction>
  56 + <ArchiveAction
  57 + buildConfiguration = "Release"
  58 + revealArchiveInOrganizer = "YES">
  59 + </ArchiveAction>
  60 +</Scheme>
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSBaseControlsModuleF_Example.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSBaseControlsModuleF_Example.xcscheme
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "1100"
  4 + version = "1.3">
  5 + <BuildAction
  6 + parallelizeBuildables = "YES"
  7 + buildImplicitDependencies = "YES">
  8 + <BuildActionEntries>
  9 + <BuildActionEntry
  10 + buildForTesting = "YES"
  11 + buildForRunning = "YES"
  12 + buildForProfiling = "YES"
  13 + buildForArchiving = "YES"
  14 + buildForAnalyzing = "YES">
  15 + <BuildableReference
  16 + BuildableIdentifier = "primary"
  17 + BlueprintIdentifier = "0D566AAEB485B11933212A2B12287E4F"
  18 + BuildableName = "Pods_DSBaseControlsModuleF_Example.framework"
  19 + BlueprintName = "Pods-DSBaseControlsModuleF_Example"
  20 + ReferencedContainer = "container:Pods.xcodeproj">
  21 + </BuildableReference>
  22 + </BuildActionEntry>
  23 + </BuildActionEntries>
  24 + </BuildAction>
  25 + <TestAction
  26 + buildConfiguration = "Debug"
  27 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  28 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  29 + shouldUseLaunchSchemeArgsEnv = "YES">
  30 + <Testables>
  31 + </Testables>
  32 + </TestAction>
  33 + <LaunchAction
  34 + buildConfiguration = "Debug"
  35 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  36 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  37 + launchStyle = "0"
  38 + useCustomWorkingDirectory = "NO"
  39 + ignoresPersistentStateOnLaunch = "NO"
  40 + debugDocumentVersioning = "YES"
  41 + debugServiceExtension = "internal"
  42 + allowLocationSimulation = "YES">
  43 + </LaunchAction>
  44 + <ProfileAction
  45 + buildConfiguration = "Release"
  46 + shouldUseLaunchSchemeArgsEnv = "YES"
  47 + savedToolIdentifier = ""
  48 + useCustomWorkingDirectory = "NO"
  49 + debugDocumentVersioning = "YES">
  50 + </ProfileAction>
  51 + <AnalyzeAction
  52 + buildConfiguration = "Debug">
  53 + </AnalyzeAction>
  54 + <ArchiveAction
  55 + buildConfiguration = "Release"
  56 + revealArchiveInOrganizer = "YES">
  57 + </ArchiveAction>
  58 +</Scheme>
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSBaseControlsModuleF_Tests.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSBaseControlsModuleF_Tests.xcscheme
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "1100"
  4 + version = "1.3">
  5 + <BuildAction
  6 + parallelizeBuildables = "YES"
  7 + buildImplicitDependencies = "YES">
  8 + <BuildActionEntries>
  9 + <BuildActionEntry
  10 + buildForTesting = "YES"
  11 + buildForRunning = "YES"
  12 + buildForProfiling = "YES"
  13 + buildForArchiving = "YES"
  14 + buildForAnalyzing = "YES">
  15 + <BuildableReference
  16 + BuildableIdentifier = "primary"
  17 + BlueprintIdentifier = "3924DD1251ECD398614AC86729D768EE"
  18 + BuildableName = "Pods_DSBaseControlsModuleF_Tests.framework"
  19 + BlueprintName = "Pods-DSBaseControlsModuleF_Tests"
  20 + ReferencedContainer = "container:Pods.xcodeproj">
  21 + </BuildableReference>
  22 + </BuildActionEntry>
  23 + </BuildActionEntries>
  24 + </BuildAction>
  25 + <TestAction
  26 + buildConfiguration = "Debug"
  27 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  28 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  29 + shouldUseLaunchSchemeArgsEnv = "YES">
  30 + <Testables>
  31 + </Testables>
  32 + </TestAction>
  33 + <LaunchAction
  34 + buildConfiguration = "Debug"
  35 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  36 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  37 + launchStyle = "0"
  38 + useCustomWorkingDirectory = "NO"
  39 + ignoresPersistentStateOnLaunch = "NO"
  40 + debugDocumentVersioning = "YES"
  41 + debugServiceExtension = "internal"
  42 + allowLocationSimulation = "YES">
  43 + </LaunchAction>
  44 + <ProfileAction
  45 + buildConfiguration = "Release"
  46 + shouldUseLaunchSchemeArgsEnv = "YES"
  47 + savedToolIdentifier = ""
  48 + useCustomWorkingDirectory = "NO"
  49 + debugDocumentVersioning = "YES">
  50 + </ProfileAction>
  51 + <AnalyzeAction
  52 + buildConfiguration = "Debug">
  53 + </AnalyzeAction>
  54 + <ArchiveAction
  55 + buildConfiguration = "Release"
  56 + revealArchiveInOrganizer = "YES">
  57 + </ArchiveAction>
  58 +</Scheme>
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/xcschememanagement.plist 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/xcschememanagement.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>SchemeUserState</key>
  6 + <dict>
  7 + <key>DSBaseControlsModuleF.xcscheme</key>
  8 + <dict>
  9 + <key>isShown</key>
  10 + <false/>
  11 + </dict>
  12 + <key>Pods-DSBaseControlsModuleF_Example.xcscheme</key>
  13 + <dict>
  14 + <key>isShown</key>
  15 + <false/>
  16 + </dict>
  17 + <key>Pods-DSBaseControlsModuleF_Tests.xcscheme</key>
  18 + <dict>
  19 + <key>isShown</key>
  20 + <false/>
  21 + </dict>
  22 + </dict>
  23 + <key>SuppressBuildableAutocreation</key>
  24 + <dict/>
  25 +</dict>
  26 +</plist>
Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-Info.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>CFBundleDevelopmentRegion</key>
  6 + <string>en</string>
  7 + <key>CFBundleExecutable</key>
  8 + <string>${EXECUTABLE_NAME}</string>
  9 + <key>CFBundleIdentifier</key>
  10 + <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  11 + <key>CFBundleInfoDictionaryVersion</key>
  12 + <string>6.0</string>
  13 + <key>CFBundleName</key>
  14 + <string>${PRODUCT_NAME}</string>
  15 + <key>CFBundlePackageType</key>
  16 + <string>FMWK</string>
  17 + <key>CFBundleShortVersionString</key>
  18 + <string>0.1.0</string>
  19 + <key>CFBundleSignature</key>
  20 + <string>????</string>
  21 + <key>CFBundleVersion</key>
  22 + <string>${CURRENT_PROJECT_VERSION}</string>
  23 + <key>NSPrincipalClass</key>
  24 + <string></string>
  25 +</dict>
  26 +</plist>
Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_DSBaseControlsModuleF : NSObject
  3 +@end
  4 +@implementation PodsDummy_DSBaseControlsModuleF
  5 +@end
Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-prefix.pch 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-prefix.pch
  1 +#ifdef __OBJC__
  2 +#import <UIKit/UIKit.h>
  3 +#else
  4 +#ifndef FOUNDATION_EXPORT
  5 +#if defined(__cplusplus)
  6 +#define FOUNDATION_EXPORT extern "C"
  7 +#else
  8 +#define FOUNDATION_EXPORT extern
  9 +#endif
  10 +#endif
  11 +#endif
  12 +
Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF-umbrella.h
  1 +#ifdef __OBJC__
  2 +#import <UIKit/UIKit.h>
  3 +#else
  4 +#ifndef FOUNDATION_EXPORT
  5 +#if defined(__cplusplus)
  6 +#define FOUNDATION_EXPORT extern "C"
  7 +#else
  8 +#define FOUNDATION_EXPORT extern
  9 +#endif
  10 +#endif
  11 +#endif
  12 +
  13 +
  14 +FOUNDATION_EXPORT double DSBaseControlsModuleFVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char DSBaseControlsModuleFVersionString[];
  16 +
Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF.modulemap
  1 +framework module DSBaseControlsModuleF {
  2 + umbrella header "DSBaseControlsModuleF-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseControlsModuleF/DSBaseControlsModuleF.xcconfig
  1 +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +PODS_BUILD_DIR = ${BUILD_DIR}
  4 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  5 +PODS_ROOT = ${SRCROOT}
  6 +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../..
  7 +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
  8 +SKIP_INSTALL = YES
  9 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-Info.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>CFBundleDevelopmentRegion</key>
  6 + <string>en</string>
  7 + <key>CFBundleExecutable</key>
  8 + <string>${EXECUTABLE_NAME}</string>
  9 + <key>CFBundleIdentifier</key>
  10 + <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  11 + <key>CFBundleInfoDictionaryVersion</key>
  12 + <string>6.0</string>
  13 + <key>CFBundleName</key>
  14 + <string>${PRODUCT_NAME}</string>
  15 + <key>CFBundlePackageType</key>
  16 + <string>FMWK</string>
  17 + <key>CFBundleShortVersionString</key>
  18 + <string>1.0.0</string>
  19 + <key>CFBundleSignature</key>
  20 + <string>????</string>
  21 + <key>CFBundleVersion</key>
  22 + <string>${CURRENT_PROJECT_VERSION}</string>
  23 + <key>NSPrincipalClass</key>
  24 + <string></string>
  25 +</dict>
  26 +</plist>
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +
  4 +## DSBaseControlsModuleF
  5 +
  6 +Copyright (c) 2020 694092596@qq.com <694092596@qq.com>
  7 +
  8 +Permission is hereby granted, free of charge, to any person obtaining a copy
  9 +of this software and associated documentation files (the "Software"), to deal
  10 +in the Software without restriction, including without limitation the rights
  11 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12 +copies of the Software, and to permit persons to whom the Software is
  13 +furnished to do so, subject to the following conditions:
  14 +
  15 +The above copyright notice and this permission notice shall be included in
  16 +all copies or substantial portions of the Software.
  17 +
  18 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24 +THE SOFTWARE.
  25 +
  26 +Generated by CocoaPods - https://cocoapods.org
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-acknowledgements.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>PreferenceSpecifiers</key>
  6 + <array>
  7 + <dict>
  8 + <key>FooterText</key>
  9 + <string>This application makes use of the following third party libraries:</string>
  10 + <key>Title</key>
  11 + <string>Acknowledgements</string>
  12 + <key>Type</key>
  13 + <string>PSGroupSpecifier</string>
  14 + </dict>
  15 + <dict>
  16 + <key>FooterText</key>
  17 + <string>Copyright (c) 2020 694092596@qq.com &lt;694092596@qq.com&gt;
  18 +
  19 +Permission is hereby granted, free of charge, to any person obtaining a copy
  20 +of this software and associated documentation files (the "Software"), to deal
  21 +in the Software without restriction, including without limitation the rights
  22 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  23 +copies of the Software, and to permit persons to whom the Software is
  24 +furnished to do so, subject to the following conditions:
  25 +
  26 +The above copyright notice and this permission notice shall be included in
  27 +all copies or substantial portions of the Software.
  28 +
  29 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  30 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  31 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  32 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  33 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  34 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  35 +THE SOFTWARE.
  36 +</string>
  37 + <key>License</key>
  38 + <string>MIT</string>
  39 + <key>Title</key>
  40 + <string>DSBaseControlsModuleF</string>
  41 + <key>Type</key>
  42 + <string>PSGroupSpecifier</string>
  43 + </dict>
  44 + <dict>
  45 + <key>FooterText</key>
  46 + <string>Generated by CocoaPods - https://cocoapods.org</string>
  47 + <key>Title</key>
  48 + <string></string>
  49 + <key>Type</key>
  50 + <string>PSGroupSpecifier</string>
  51 + </dict>
  52 + </array>
  53 + <key>StringsTable</key>
  54 + <string>Acknowledgements</string>
  55 + <key>Title</key>
  56 + <string>Acknowledgements</string>
  57 +</dict>
  58 +</plist>
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSBaseControlsModuleF_Example : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSBaseControlsModuleF_Example
  5 +@end
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-frameworks.sh 0 → 100755
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-frameworks.sh
  1 +#!/bin/sh
  2 +set -e
  3 +set -u
  4 +set -o pipefail
  5 +
  6 +function on_error {
  7 + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure"
  8 +}
  9 +trap 'on_error $LINENO' ERR
  10 +
  11 +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then
  12 + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy
  13 + # frameworks to, so exit 0 (signalling the script phase was successful).
  14 + exit 0
  15 +fi
  16 +
  17 +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
  18 +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
  19 +
  20 +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}"
  21 +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
  22 +
  23 +# Used as a return value for each invocation of `strip_invalid_archs` function.
  24 +STRIP_BINARY_RETVAL=0
  25 +
  26 +# This protects against multiple targets copying the same framework dependency at the same time. The solution
  27 +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html
  28 +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????")
  29 +
  30 +# Copies and strips a vendored framework
  31 +install_framework()
  32 +{
  33 + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
  34 + local source="${BUILT_PRODUCTS_DIR}/$1"
  35 + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
  36 + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
  37 + elif [ -r "$1" ]; then
  38 + local source="$1"
  39 + fi
  40 +
  41 + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
  42 +
  43 + if [ -L "${source}" ]; then
  44 + echo "Symlinked..."
  45 + source="$(readlink "${source}")"
  46 + fi
  47 +
  48 + # Use filter instead of exclude so missing patterns don't throw errors.
  49 + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
  50 + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
  51 +
  52 + local basename
  53 + basename="$(basename -s .framework "$1")"
  54 + binary="${destination}/${basename}.framework/${basename}"
  55 +
  56 + if ! [ -r "$binary" ]; then
  57 + binary="${destination}/${basename}"
  58 + elif [ -L "${binary}" ]; then
  59 + echo "Destination binary is symlinked..."
  60 + dirname="$(dirname "${binary}")"
  61 + binary="${dirname}/$(readlink "${binary}")"
  62 + fi
  63 +
  64 + # Strip invalid architectures so "fat" simulator / device frameworks work on device
  65 + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
  66 + strip_invalid_archs "$binary"
  67 + fi
  68 +
  69 + # Resign the code if required by the build settings to avoid unstable apps
  70 + code_sign_if_enabled "${destination}/$(basename "$1")"
  71 +
  72 + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
  73 + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
  74 + local swift_runtime_libs
  75 + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u)
  76 + for lib in $swift_runtime_libs; do
  77 + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
  78 + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
  79 + code_sign_if_enabled "${destination}/${lib}"
  80 + done
  81 + fi
  82 +}
  83 +
  84 +# Copies and strips a vendored dSYM
  85 +install_dsym() {
  86 + local source="$1"
  87 + if [ -r "$source" ]; then
  88 + # Copy the dSYM into a the targets temp dir.
  89 + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\""
  90 + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}"
  91 +
  92 + local basename
  93 + basename="$(basename -s .framework.dSYM "$source")"
  94 + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}"
  95 +
  96 + # Strip invalid architectures so "fat" simulator / device frameworks work on device
  97 + if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then
  98 + strip_invalid_archs "$binary"
  99 + fi
  100 +
  101 + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then
  102 + # Move the stripped file into its final destination.
  103 + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\""
  104 + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}"
  105 + else
  106 + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing.
  107 + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM"
  108 + fi
  109 + fi
  110 +}
  111 +
  112 +# Copies the bcsymbolmap files of a vendored framework
  113 +install_bcsymbolmap() {
  114 + local bcsymbolmap_path="$1"
  115 + local destination="${BUILT_PRODUCTS_DIR}"
  116 + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}""
  117 + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"
  118 +}
  119 +
  120 +# Signs a framework with the provided identity
  121 +code_sign_if_enabled() {
  122 + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
  123 + # Use the current code_sign_identity
  124 + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
  125 + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'"
  126 +
  127 + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
  128 + code_sign_cmd="$code_sign_cmd &"
  129 + fi
  130 + echo "$code_sign_cmd"
  131 + eval "$code_sign_cmd"
  132 + fi
  133 +}
  134 +
  135 +# Strip invalid architectures
  136 +strip_invalid_archs() {
  137 + binary="$1"
  138 + # Get architectures for current target binary
  139 + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)"
  140 + # Intersect them with the architectures we are building for
  141 + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)"
  142 + # If there are no archs supported by this binary then warn the user
  143 + if [[ -z "$intersected_archs" ]]; then
  144 + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)."
  145 + STRIP_BINARY_RETVAL=0
  146 + return
  147 + fi
  148 + stripped=""
  149 + for arch in $binary_archs; do
  150 + if ! [[ "${ARCHS}" == *"$arch"* ]]; then
  151 + # Strip non-valid architectures in-place
  152 + lipo -remove "$arch" -output "$binary" "$binary"
  153 + stripped="$stripped $arch"
  154 + fi
  155 + done
  156 + if [[ "$stripped" ]]; then
  157 + echo "Stripped $binary of architectures:$stripped"
  158 + fi
  159 + STRIP_BINARY_RETVAL=1
  160 +}
  161 +
  162 +
  163 +if [[ "$CONFIGURATION" == "Debug" ]]; then
  164 + install_framework "${BUILT_PRODUCTS_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework"
  165 +fi
  166 +if [[ "$CONFIGURATION" == "Release" ]]; then
  167 + install_framework "${BUILT_PRODUCTS_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework"
  168 +fi
  169 +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
  170 + wait
  171 +fi
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example-umbrella.h
  1 +#ifdef __OBJC__
  2 +#import <UIKit/UIKit.h>
  3 +#else
  4 +#ifndef FOUNDATION_EXPORT
  5 +#if defined(__cplusplus)
  6 +#define FOUNDATION_EXPORT extern "C"
  7 +#else
  8 +#define FOUNDATION_EXPORT extern
  9 +#endif
  10 +#endif
  11 +#endif
  12 +
  13 +
  14 +FOUNDATION_EXPORT double Pods_DSBaseControlsModuleF_ExampleVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSBaseControlsModuleF_ExampleVersionString[];
  16 +
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseControlsModuleF"
  6 +PODS_BUILD_DIR = ${BUILD_DIR}
  7 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  8 +PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
  9 +PODS_ROOT = ${SRCROOT}/Pods
  10 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.modulemap
  1 +framework module Pods_DSBaseControlsModuleF_Example {
  2 + umbrella header "Pods-DSBaseControlsModuleF_Example-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Example/Pods-DSBaseControlsModuleF_Example.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseControlsModuleF"
  6 +PODS_BUILD_DIR = ${BUILD_DIR}
  7 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  8 +PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
  9 +PODS_ROOT = ${SRCROOT}/Pods
  10 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-Info.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>CFBundleDevelopmentRegion</key>
  6 + <string>en</string>
  7 + <key>CFBundleExecutable</key>
  8 + <string>${EXECUTABLE_NAME}</string>
  9 + <key>CFBundleIdentifier</key>
  10 + <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  11 + <key>CFBundleInfoDictionaryVersion</key>
  12 + <string>6.0</string>
  13 + <key>CFBundleName</key>
  14 + <string>${PRODUCT_NAME}</string>
  15 + <key>CFBundlePackageType</key>
  16 + <string>FMWK</string>
  17 + <key>CFBundleShortVersionString</key>
  18 + <string>1.0.0</string>
  19 + <key>CFBundleSignature</key>
  20 + <string>????</string>
  21 + <key>CFBundleVersion</key>
  22 + <string>${CURRENT_PROJECT_VERSION}</string>
  23 + <key>NSPrincipalClass</key>
  24 + <string></string>
  25 +</dict>
  26 +</plist>
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +Generated by CocoaPods - https://cocoapods.org
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-acknowledgements.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>PreferenceSpecifiers</key>
  6 + <array>
  7 + <dict>
  8 + <key>FooterText</key>
  9 + <string>This application makes use of the following third party libraries:</string>
  10 + <key>Title</key>
  11 + <string>Acknowledgements</string>
  12 + <key>Type</key>
  13 + <string>PSGroupSpecifier</string>
  14 + </dict>
  15 + <dict>
  16 + <key>FooterText</key>
  17 + <string>Generated by CocoaPods - https://cocoapods.org</string>
  18 + <key>Title</key>
  19 + <string></string>
  20 + <key>Type</key>
  21 + <string>PSGroupSpecifier</string>
  22 + </dict>
  23 + </array>
  24 + <key>StringsTable</key>
  25 + <string>Acknowledgements</string>
  26 + <key>Title</key>
  27 + <string>Acknowledgements</string>
  28 +</dict>
  29 +</plist>
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSBaseControlsModuleF_Tests : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSBaseControlsModuleF_Tests
  5 +@end
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests-umbrella.h
  1 +#ifdef __OBJC__
  2 +#import <UIKit/UIKit.h>
  3 +#else
  4 +#ifndef FOUNDATION_EXPORT
  5 +#if defined(__cplusplus)
  6 +#define FOUNDATION_EXPORT extern "C"
  7 +#else
  8 +#define FOUNDATION_EXPORT extern
  9 +#endif
  10 +#endif
  11 +#endif
  12 +
  13 +
  14 +FOUNDATION_EXPORT double Pods_DSBaseControlsModuleF_TestsVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSBaseControlsModuleF_TestsVersionString[];
  16 +
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseControlsModuleF"
  5 +PODS_BUILD_DIR = ${BUILD_DIR}
  6 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  7 +PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
  8 +PODS_ROOT = ${SRCROOT}/Pods
  9 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.modulemap
  1 +framework module Pods_DSBaseControlsModuleF_Tests {
  2 + umbrella header "Pods-DSBaseControlsModuleF_Tests-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseControlsModuleF_Tests/Pods-DSBaseControlsModuleF_Tests.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSBaseControlsModuleF/DSBaseControlsModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseControlsModuleF"
  5 +PODS_BUILD_DIR = ${BUILD_DIR}
  6 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  7 +PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
  8 +PODS_ROOT = ${SRCROOT}/Pods
  9 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Tests/Tests-Info.plist 0 → 100644
  1 +++ a/Example/Tests/Tests-Info.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>CFBundleDevelopmentRegion</key>
  6 + <string>en</string>
  7 + <key>CFBundleExecutable</key>
  8 + <string>${EXECUTABLE_NAME}</string>
  9 + <key>CFBundleIdentifier</key>
  10 + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  11 + <key>CFBundleInfoDictionaryVersion</key>
  12 + <string>6.0</string>
  13 + <key>CFBundlePackageType</key>
  14 + <string>BNDL</string>
  15 + <key>CFBundleShortVersionString</key>
  16 + <string>1.0</string>
  17 + <key>CFBundleSignature</key>
  18 + <string>????</string>
  19 + <key>CFBundleVersion</key>
  20 + <string>1</string>
  21 +</dict>
  22 +</plist>
Example/Tests/Tests-Prefix.pch 0 → 100644
  1 +++ a/Example/Tests/Tests-Prefix.pch
  1 +// The contents of this file are implicitly included at the beginning of every test case source file.
  2 +
  3 +#ifdef __OBJC__
  4 +
  5 +
  6 +
  7 +#endif
Example/Tests/Tests.m 0 → 100644
  1 +++ a/Example/Tests/Tests.m
  1 +//
  2 +// DSBaseControlsModuleFTests.m
  3 +// DSBaseControlsModuleFTests
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import XCTest;
  10 +
  11 +@interface Tests : XCTestCase
  12 +
  13 +@end
  14 +
  15 +@implementation Tests
  16 +
  17 +- (void)setUp
  18 +{
  19 + [super setUp];
  20 + // Put setup code here. This method is called before the invocation of each test method in the class.
  21 +}
  22 +
  23 +- (void)tearDown
  24 +{
  25 + // Put teardown code here. This method is called after the invocation of each test method in the class.
  26 + [super tearDown];
  27 +}
  28 +
  29 +- (void)testExample
  30 +{
  31 + XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
  32 +}
  33 +
  34 +@end
  35 +
Example/Tests/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/Tests/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
LICENSE 0 → 100644
  1 +++ a/LICENSE
  1 +Copyright (c) 2020 694092596@qq.com <694092596@qq.com>
  2 +
  3 +Permission is hereby granted, free of charge, to any person obtaining a copy
  4 +of this software and associated documentation files (the "Software"), to deal
  5 +in the Software without restriction, including without limitation the rights
  6 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7 +copies of the Software, and to permit persons to whom the Software is
  8 +furnished to do so, subject to the following conditions:
  9 +
  10 +The above copyright notice and this permission notice shall be included in
  11 +all copies or substantial portions of the Software.
  12 +
  13 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19 +THE SOFTWARE.
README.md 0 → 100644
  1 +++ a/README.md
  1 +# DSBaseControlsModuleF
  2 +
  3 +[![CI Status](https://img.shields.io/travis/694092596@qq.com/DSBaseControlsModuleF.svg?style=flat)](https://travis-ci.org/694092596@qq.com/DSBaseControlsModuleF)
  4 +[![Version](https://img.shields.io/cocoapods/v/DSBaseControlsModuleF.svg?style=flat)](https://cocoapods.org/pods/DSBaseControlsModuleF)
  5 +[![License](https://img.shields.io/cocoapods/l/DSBaseControlsModuleF.svg?style=flat)](https://cocoapods.org/pods/DSBaseControlsModuleF)
  6 +[![Platform](https://img.shields.io/cocoapods/p/DSBaseControlsModuleF.svg?style=flat)](https://cocoapods.org/pods/DSBaseControlsModuleF)
  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 +DSBaseControlsModuleF is available through [CocoaPods](https://cocoapods.org). To install
  17 +it, simply add the following line to your Podfile:
  18 +
  19 +```ruby
  20 +pod 'DSBaseControlsModuleF'
  21 +```
  22 +
  23 +## Author
  24 +
  25 +694092596@qq.com, 694092596@qq.com
  26 +
  27 +## License
  28 +
  29 +DSBaseControlsModuleF is available under the MIT license. See the LICENSE file for more info.
_Pods.xcodeproj 0 → 120000
  1 +++ a/_Pods.xcodeproj
  1 +Example/Pods/Pods.xcodeproj
0 \ No newline at end of file 2 \ No newline at end of file