Commit 3452c1ecd825a47105a2d8f570f2151ff0d2cb66

Authored by 毕珂
0 parents

0.0.11

Showing 99 changed files with 4835 additions and 0 deletions
DSCommonModuleF.podspec 0 → 100644
  1 +++ a/DSCommonModuleF.podspec
  1 +Pod::Spec.new do |s|
  2 +
  3 + s.name = "DSCommonModuleF"
  4 + s.version = "0.0.11"
  5 + s.summary = "DSCommonModuleF"
  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/DSCommonModuleF.git', :tag => s.version.to_s }
  10 + s.ios.deployment_target = '9.0'
  11 + s.vendored_frameworks = "DSCommonModuleF/Frameworks/DSCommonModule.framework"
  12 + s.frameworks = 'Foundation', 'UIKit'
  13 + s.xcconfig = {
  14 + 'ENABLE_BITCODE' => 'NO'
  15 + }
  16 + s.pod_target_xcconfig = {
  17 + 'VALID_ARCHS' => 'arm64'
  18 + }
  19 +
  20 + s.dependency 'MGJRouter', '~> 0.10.0'
  21 + s.dependency 'AFNetworking', '3.2.1'
  22 + s.dependency 'SDWebImage', '~> 5.2.3'
  23 + s.dependency 'MJRefresh', '3.2.0'
  24 + s.dependency 'MJExtension', '3.2.1'
  25 + s.dependency 'MBProgressHUD', '1.1.0'
  26 + s.dependency 'Masonry', '1.1.0'
  27 + s.dependency 'PLPlayerKit', '~> 3.4.3'
  28 + s.dependency 'IQKeyboardManager', '~> 6.3.0'
  29 + s.dependency 'QMUIKit', ' 4.0.2'
  30 + s.dependency 'Qiniu', '7.2.5'
  31 +
  32 + s.dependency 'YBImageBrowser_DSCnliveShop'
  33 + s.dependency 'DSBaseModuleF', '>=0.0.0', '<1.0.0'
  34 + s.dependency 'DSToolsModuleF', '>=0.0.0', '<1.0.0'
  35 +
  36 +end
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/DSCommonModule 0 → 100755
No preview for this file type
DSCommonModuleF/Frameworks/DSCommonModule.framework/DSCommonModule.bundle/Assets.car 0 → 100644
No preview for this file type
DSCommonModuleF/Frameworks/DSCommonModule.framework/DSCommonModule.bundle/Info.plist 0 → 100644
No preview for this file type
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSBaseViewController+DSCommonModule.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSBaseViewController+DSCommonModule.h
  1 +//
  2 +// DSBaseViewController+DSCommonModule.h
  3 +// DSCommonModule
  4 +//
  5 +// Created by zhaolin on 2020/3/6.
  6 +//
  7 +
  8 +#import <DSBaseModule/DSBaseModule.h>
  9 +#import <DSToolsModule/BKCycleScrollView.h>
  10 +#import "DSPlayerView.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSBaseViewController (DSCommonModule)
  15 +
  16 +#pragma mark - 顶部导航
  17 +
  18 +/**
  19 + 添加左边返回按钮(特殊情况时使用)
  20 + */
  21 +-(void)addLeftBackNavBtn;
  22 +
  23 +/**
  24 + 左边导航按钮事件
  25 + */
  26 +-(void)leftNavBtnAction;
  27 +
  28 +#pragma mark - 通用方法
  29 +
  30 +/// 获取数据方法 切换用户后,回到此界面会重新调用此方法
  31 +-(void)requestDataMethod;
  32 +
  33 +#pragma mark - BKCycleScrollView无限滚动视图
  34 +
  35 +/**
  36 + 无限滚动视图
  37 + */
  38 +@property (nonatomic,weak,nullable) BKCycleScrollView * cycleScrollView;
  39 +
  40 +/**
  41 + 播放器
  42 + */
  43 +@property (nonatomic,weak,nullable) DSPlayerView * CSV_playerView;
  44 +
  45 +/**
  46 + 设置播放器 配合无限滚动视图播放视频 这个方法需要使用<BKCycleScrollViewDelegate>
  47 +
  48 + @param cycleScrollView 无限滚动视图
  49 + */
  50 +-(void)settingPlayerViewCooperateWithCycleScrollView:(nonnull BKCycleScrollView*)cycleScrollView;
  51 +
  52 +@end
  53 +
  54 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommentRequestShareModel.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommentRequestShareModel.h
  1 +//
  2 +// DSCommentRequestShareModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/8/16.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +#pragma mark - 商品属性
  14 +
  15 +@interface DSCommentRequestShareGoodsModel : NSObject
  16 +
  17 +/**
  18 + 现价
  19 + */
  20 +@property (nonatomic,copy) NSString * price;
  21 +/**
  22 + 原价
  23 + */
  24 +@property (nonatomic,copy) NSString * prices;
  25 +
  26 +@end
  27 +
  28 +#pragma mark - 第一级
  29 +
  30 +@interface DSCommentRequestShareModel : NSObject
  31 +
  32 +/**
  33 + 分享url
  34 + */
  35 +@property (nonatomic,copy) NSString * url;
  36 +/**
  37 + 微信分享类型 1h5 2小程序
  38 + */
  39 +@property (nonatomic,assign) NSUInteger wx_type;
  40 +/**
  41 +
  42 + */
  43 +@property (nonatomic,copy) NSString * mini_app_id;
  44 +/**
  45 + 小程序跳转路径
  46 + */
  47 +@property (nonatomic,copy) NSString * mini_app_url;
  48 +/**
  49 + 分享标题
  50 + */
  51 +@property (nonatomic,copy) NSString * share_title;
  52 +/**
  53 + 分享简介
  54 + */
  55 +@property (nonatomic,copy) NSString * share_desc;
  56 +/**
  57 + 分享图片
  58 + */
  59 +@property (nonatomic,copy) NSString * share_img;
  60 +/**
  61 +
  62 + */
  63 +@property (nonatomic,copy) NSString * share_type;
  64 +/**
  65 + 小程序appid
  66 + */
  67 +@property (nonatomic,copy) NSString * app_id;
  68 +/**
  69 + 商品数据
  70 + */
  71 +@property (nonatomic,strong) DSCommentRequestShareGoodsModel * goods;
  72 +
  73 +@end
  74 +
  75 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonConstant.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonConstant.h
  1 +//
  2 +// DSCommonConstant.h
  3 +// DSCommonModule
  4 +//
  5 +// Created by zhaolin on 2020/3/8.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +
  10 +#pragma mark - 通知
  11 +#pragma mark - 用户
  12 +UIKIT_EXTERN NSString * const kDSChangeUserNotification;//用户修改通知 object为用户id
  13 +
  14 +#pragma mark - 商城订单
  15 +UIKIT_EXTERN NSString * const kDSDeleteOrderNotification;//删除订单通知
  16 +UIKIT_EXTERN NSString * const kDSFinishOrderNotification;//完成订单通知
  17 +UIKIT_EXTERN NSString * const kDSCancelOrderNotification;//取消订单通知 object为订单id
  18 +UIKIT_EXTERN NSString * const kDSRefundOrderNotification;//申请订单退款通知 userInfo为@{@"orderId":@"订单id", @"refundId":@"退款id"}
  19 +UIKIT_EXTERN NSString * const kDSEditRefundOrderNotification;//修改订单退款通知
  20 +UIKIT_EXTERN NSString * const kDSCancelRefundOrderNotification;//取消订单退款通知 object为订单id
  21 +UIKIT_EXTERN NSString * const kDSOrderApplyAfterSaleNotification;//申请订单售后通知
  22 +UIKIT_EXTERN NSString * const kDSOrderEditAfterSaleNotification;//修改订单售后通知
  23 +UIKIT_EXTERN NSString * const kDSOrderCancelAfterSaleNotification;//取消订单售后通知
  24 +UIKIT_EXTERN NSString * const kDSGiftOrderWriteAddressNotification;//礼物填写地址通知 object为订单id
  25 +
  26 +#pragma mark - 餐厅订单
  27 +UIKIT_EXTERN NSString * const kDSChangeRepastShopCartNotification;//修改餐厅购物车商品数量通知 userInfo为@{@"storeId":@"餐厅门店id", @"goodsId":@"商品id", @"changeCount":@(修改的数量), @"shopCartModel":[DSRSSelectMenuShopCartModel class], @"type":@(1外卖点餐, 2到店就餐)}
  28 +UIKIT_EXTERN NSString * const kDSClearRepastShopCartNotification;//清空餐厅购物车商品通知 userInfo为@{@"storeId":@"餐厅门店id", @"type":@(1外卖点餐,2到店就餐)}
  29 +UIKIT_EXTERN NSString * const kDSSuccessPayRepastOrderNotification;//支付餐厅订单通知 object为订单id
  30 +UIKIT_EXTERN NSString * const kDSCancelRepastOrderNotification;//餐厅取消除订单通知 object为订单id
  31 +UIKIT_EXTERN NSString * const kDSRefundRepastOrderNotification;//餐厅订单退款通知 object为订单id
  32 +UIKIT_EXTERN NSString * const kDSDeleteRepastOrderNotification;//餐厅删除订单通知 object为订单id
  33 +UIKIT_EXTERN NSString * const kDSConfirmDeliveryRepastOrderNotification;//餐厅确认送达订单通知 object为订单id
  34 +UIKIT_EXTERN NSString * const kDSComplaintRepastOrderNotification;//餐厅投诉订单通知 object为订单id
  35 +UIKIT_EXTERN NSString * const kDSCancelComplaintRepastOrderNotification;//餐厅取消投诉订单通知 object为订单id
  36 +UIKIT_EXTERN NSString * const kDSSuccessValidateRepastOrderNotification;//成功核销餐厅订单通知 object为订单id
  37 +
  38 +#pragma mark - 生活服务订单
  39 +UIKIT_EXTERN NSString * const kDSLSSuccessPayOrderNotification;//生活服务支付订单成功通知
  40 +UIKIT_EXTERN NSString * const kDSLSAuditionSuccessNotification;//生活服务面试成功通知
  41 +UIKIT_EXTERN NSString * const kDSLSFinishOrderNotification;//生活服务服务完成通知
  42 +UIKIT_EXTERN NSString * const kDSLSCancelOrderNotification;//生活服务取消订单通知
  43 +UIKIT_EXTERN NSString * const kDSLSDeleteOrderNotification;//生活服务删除订单通知
  44 +UIKIT_EXTERN NSString * const kDSLSOrderApplyRefundNotification;//生活服务申请退款通知
  45 +UIKIT_EXTERN NSString * const kDSLSOrderCancelRefundNotification;//生活服务取消退款通知
  46 +
  47 +#pragma mark - 新达人
  48 +UIKIT_EXTERN NSString * const kDSDarenAttentionNotification;//达人关注通知 object为DSHPDRFansListModel userInfo为@{@"isAttention":@(YES为关注, NO为取消取消)}
  49 +UIKIT_EXTERN NSString * const kDSDarenSupportDynamicNotification;//达人动态点赞/取消点赞通知 userInfo为@{@"id":@"动态id", @"isSupport":@(YES为点赞, NO为取消点赞), @"count":@(点赞数量)}
  50 +UIKIT_EXTERN NSString * const kDSDarenReleaseDynamicNotification;//达人发布动态通知
  51 +
  52 +#pragma mark - 老达人(原一部达人)
  53 +UIKIT_EXTERN NSString * const kDSHPAttentDarenNotification;//关注/取消关注达人通知 object为达人id
  54 +
  55 +#pragma mark - 视频播放开关
  56 +UIKIT_EXTERN NSString * const kDSSwitchOffVideoPlayerNotification;//停止播放视频,且不允许播放视频
  57 +UIKIT_EXTERN NSString * const kDSSwitchOnVideoPlayerNotification;//允许播放视频
  58 +
  59 +#pragma mark - 收货地址
  60 +UIKIT_EXTERN NSString * const kDSAddAddressNotification;//添加地址通知 object为地址model<DSAddressModel>
  61 +UIKIT_EXTERN NSString * const kDSEditAddressNotification;//修改地址通知 object为地址model<DSAddressModel>
  62 +UIKIT_EXTERN NSString * const kDSDeleteAddressNotification;//删除地址通知 object为地址id
  63 +
  64 +#pragma mark - 电商中国首页
  65 +UIKIT_EXTERN NSString * const kDSHappinessPageControlScrollEnableNotification;//首页分页控制器在显示电商中国时是否可以滑动 [object boolValue] YES可以滑动 NO不可以滑动
  66 +
  67 +#pragma mark - 分享
  68 +UIKIT_EXTERN NSString * const kDSShareSuccessNotification;//分享成功通知 object为分享的数据字典<DSCnliveShopSDKShareModel转字典>
  69 +UIKIT_EXTERN NSString * const kDSShareFailureNotification;//分享失败通知 object为分享的数据字典<DSCnliveShopSDKShareModel转字典>
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonDelegate.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonDelegate.h
  1 +//
  2 +// DSCommonDelegate.h
  3 +// DSCommonModule
  4 +//
  5 +// Created by zhaolin on 2020/3/8.
  6 +//
  7 +
  8 +#ifndef DSCommonDelegate_h
  9 +#define DSCommonDelegate_h
  10 +
  11 +#import "DSCommentRequestShareModel.h"
  12 +#import "DSCommonEnum.h"
  13 +
  14 +@protocol DSCommonDelegate <NSObject>
  15 +
  16 +#pragma mark - 跳转登录
  17 +
  18 +/// 跳转登录
  19 +/// @param currentVC 当前所在控制器
  20 +-(void)skipLoginWithCurrentVC:(nonnull UIViewController*)currentVC;
  21 +
  22 +#pragma mark - 分享
  23 +
  24 +/// 分享事件
  25 +/// @param shareType 分享类型
  26 +/// @param shareId 分享物的id
  27 +/// @param shareModel 分享model
  28 +/// @param isCanShareWjjLife 是否能分享网家家生活圈
  29 +/// @param isCanShareWjjFriend 是否能分享网家家好友
  30 +/// @param isCanShareSafari 是否能分享Safari
  31 +/// @param currentVC 当前控制器
  32 +-(void)shareType:(NSUInteger)shareType shareId:(nonnull NSString*)shareId shareModel:(nonnull DSCommentRequestShareModel*)shareModel isCanShareWjjLife:(BOOL)isCanShareWjjLife isCanShareWjjFriend:(BOOL)isCanShareWjjFriend isCanShareSafari:(BOOL)isCanShareSafari currentVC:(nonnull UIViewController*)currentVC;
  33 +
  34 +#pragma mark - TIM
  35 +
  36 +/// 跳转TIM单聊
  37 +/// @param userId 用户id
  38 +/// @param userHeader 用户头像
  39 +/// @param userName 用户名称
  40 +/// @param fromVC 当前控制器
  41 +-(void)skipTIMChat:(nonnull NSString*)userId userHeader:(nonnull NSString*)userHeader userName:(nonnull NSString*)userName fromVC:(nonnull UIViewController*)fromVC;
  42 +
  43 +/// 跳转用户主页
  44 +/// @param userId 用户主页
  45 +/// @param userHeader 用户头像
  46 +/// @param shopName 用户名称
  47 +/// @param vc 当前控制器
  48 +-(void)skipUserHomePageWithUserId:(nonnull NSString *)userId userHeader:(nonnull NSString *)userHeader shopName:(nonnull NSString *)shopName vc:(nonnull UIViewController *)vc;
  49 +
  50 +/// TIM检测是否互为好友
  51 +/// @param uid 用户id
  52 +/// @param result 结果
  53 +-(void)TIMCheckIsFriend:(nonnull NSString*)uid result:(nullable void (^)(BOOL flag))result;
  54 +
  55 +/// 跳转TIM群组聊天
  56 +/// @param groupId 群组id
  57 +/// @param groupName 群组名称
  58 +/// @param fromVC 当前控制器
  59 +-(void)skipTIMGroupChat:(nonnull NSString*)groupId groupName:(nonnull NSString*)groupName fromVC:(nonnull UIViewController*)fromVC;
  60 +
  61 +/// 跳转TIM群组详情
  62 +/// @param groupId 群组id
  63 +/// @param groupName 群组名称
  64 +/// @param fromVC 当前控制器
  65 +-(void)skipTIMGroupDetails:(nonnull NSString*)groupId groupName:(nonnull NSString*)groupName fromVC:(nonnull UIViewController*)fromVC;
  66 +
  67 +/// 跳转TIM群组聊天信息
  68 +/// @param groupId 群组id
  69 +/// @param groupName 群组名称
  70 +/// @param fromVC 当前控制器
  71 +-(void)skipTIMGroupMessage:(nonnull NSString*)groupId groupName:(nonnull NSString*)groupName fromVC:(nonnull UIViewController*)fromVC;
  72 +
  73 +#pragma mark - 友盟
  74 +
  75 +/// 友盟统计
  76 +/// @param checkType 统计类型
  77 +/// @param subType 统计子类型
  78 +-(void)uMengCheckCallBackType:(DSUMengCheckType)checkType subType:(DSUMengCheckSLType)subType;
  79 +
  80 +#pragma mark - 服务号
  81 +
  82 +/// 服务号跳转
  83 +/// @param skipType 跳转目标
  84 +/// @param fromVC 当前控制器
  85 +-(void)serviceSkipWithSkipType:(DSServiceSkipType)skipType fromVC:(nonnull UIViewController*)fromVC;
  86 +
  87 +#pragma mark - (一部)url跳转
  88 +
  89 +/// (一部)url跳转
  90 +/// @param url url链接
  91 +/// @param fromVC 当前控制器
  92 +-(void)skipByUrl:(nonnull NSString*)url fromVC:(nonnull UIViewController*)fromVC;
  93 +
  94 +@end
  95 +
  96 +#endif /* DSCommonDelegate_h */
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonEnum.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonEnum.h
  1 +//
  2 +// DSCommonEnum.h
  3 +// DSCommonModule
  4 +//
  5 +// Created by zhaolin on 2020/3/11.
  6 +//
  7 +
  8 +#ifndef DSCommonEnum_h
  9 +#define DSCommonEnum_h
  10 +
  11 +typedef NS_ENUM(NSUInteger, DSUMengCheckType) {//友盟查看类型
  12 + DSUMengCheckTypeViewController = 0, //查看控制器
  13 + DSUMengCheckTypeActionMethod, //查看事件方法
  14 +};
  15 +
  16 +typedef NS_ENUM(NSUInteger, DSUMengCheckSLType) {//友盟查看二级类型
  17 + //查看控制器
  18 + DSUMengCheckSLTypeServiceHP = 0, //服务号首页
  19 + //查看事件方法
  20 + DSUMengCheckSLTypeServiceHPClickSearch, //服务号首页点击搜索
  21 + DSUMengCheckSLTypeServiceHPClickItem, //服务号首页点击item
  22 +};
  23 +
  24 +typedef NS_ENUM(NSUInteger, DSServiceSkipType) {//服务号跳转类型
  25 + DSServiceSkipTypeReleaseInterface = 0, //跳转发布界面
  26 + DSServiceSkipTypeOnlineGamesVC, //跳转线上赛事界面
  27 + DSServiceSkipTypeGlobalGoodsShopVC, //跳转环球优物界面
  28 +};
  29 +
  30 +#endif /* DSCommonEnum_h */
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonMacro.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonMacro.h
  1 +//
  2 +// DSCommonMacro.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/6.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#ifndef DSCommonMacro_h
  10 +#define DSCommonMacro_h
  11 +
  12 +/* 编译错误解决:implicit declaration of function 'close' is invalid in C99
  13 + #import <sys/time.h>
  14 + #import <fcntl.h>
  15 + #import <unistd.h>
  16 + */
  17 +#import <sys/time.h>
  18 +#import <fcntl.h>
  19 +#import <unistd.h>
  20 +
  21 +#pragma mark - 信息
  22 +
  23 +#define DS_USER_ID ([DSCommonManager sharedManager].userId ? [DSCommonManager sharedManager].userId : @"")
  24 +#define DS_IS_LOGIN ([DS_USER_ID length] == 0 ? NO : YES)
  25 +
  26 +#define DS_APPID ([DSCommonManager sharedManager].appId ? [DSCommonManager sharedManager].appId : @"")
  27 +#define DS_APPKEY ([DSCommonManager sharedManager].appKey ? [DSCommonManager sharedManager].appKey : @"")
  28 +#define DS_IS_DEBUG [DSCommonManager sharedManager].isDebug
  29 +
  30 +#pragma mark - 请求链接
  31 +
  32 +#define DS_REQUEST(interface) [NSString stringWithFormat:@"%@%@",(DS_IS_DEBUG ? @"https://wjjshop.cnlive.com" : @"https://managemall.cnlive.com"), interface]
  33 +#define DS_ONE_DEPARTMENT_REQUEST(interface) [NSString stringWithFormat:@"%@%@",(DS_IS_DEBUG ? @"https://apiwjjtest.cnlive.com" : @"https://apiwjj.cnlive.com"), interface]
  34 +
  35 +#pragma mark - 默认头像
  36 +
  37 +#define DS_DEFAULT_USER_HEADER [UIImage imageWithDSCommonModuleImageName:@"DS_user_default_header"]
  38 +
  39 +#endif /* DSCommonMacro_h */
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonManager.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonManager.h
  1 +//
  2 +// DSCommonManager.h
  3 +// DSCommonManager
  4 +//
  5 +// Created by BIKE on 2018/7/5.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModuleManager.h>
  10 +#import <CoreLocation/CoreLocation.h>
  11 +#import "DSCommonDelegate.h"
  12 +
  13 +@interface DSCommonManager : DSBaseModuleManager
  14 +
  15 +#pragma mark - 通用信息
  16 +
  17 +/// 电商SDK appId
  18 +@property (nonatomic,copy,nonnull) NSString * appId;
  19 +/// 电商SDK appKey
  20 +@property (nonatomic,copy,nonnull) NSString * appKey;
  21 +/// 是否是测试版 YES为测试版 NO为正式版
  22 +@property (nonatomic,assign) BOOL isDebug;
  23 +/// 用户id
  24 +@property (nonatomic,copy,nullable) NSString * userId;
  25 +/// DSCnliveShopSDK的版本version
  26 +@property (nonatomic,copy,nullable) NSString * cnliveShopSDKVersion;
  27 +/// IQKeyboardManager是否使用 默认打开 不使用请传NO
  28 +@property (nonatomic,assign) BOOL defaultIQKeyboardManagerState;
  29 +/// 是否允许播放视频 默认允许
  30 +@property (nonatomic,assign) BOOL isAllowPlayVideo;
  31 +
  32 +#pragma mark - 代理
  33 +
  34 +/// 代理
  35 +@property (nonatomic,weak,nullable) id<DSCommonDelegate> delegate;
  36 +
  37 +/// 跳转登录
  38 +/// @param currentVC 当前所在控制器
  39 +-(void)skipLoginWithCurrentVC:(nonnull UIViewController*)currentVC;
  40 +
  41 +/// 分享事件
  42 +/// @param shareType 分享类型
  43 +/// @param shareId 分享物的id
  44 +/// @param ext 附加参数
  45 +/// @param isCanShareWjjLife 是否能分享网家家生活圈
  46 +/// @param isCanShareWjjFriend 是否能分享网家家好友
  47 +/// @param isCanShareSafari 是否能分享Safari
  48 +/// @param currentVC 当前控制器
  49 +-(void)shareType:(NSUInteger)shareType shareId:(nonnull NSString*)shareId ext:(nullable NSString*)ext isCanShareWjjLife:(BOOL)isCanShareWjjLife isCanShareWjjFriend:(BOOL)isCanShareWjjFriend isCanShareSafari:(BOOL)isCanShareSafari currentVC:(nonnull UIViewController*)currentVC;
  50 +
  51 +/// 跳转TIM单聊
  52 +/// @param userId 用户id
  53 +/// @param userHeader 用户头像
  54 +/// @param userName 用户名称
  55 +/// @param fromVC 当前控制器
  56 +-(void)skipTIMChat:(nonnull NSString*)userId userHeader:(nonnull NSString*)userHeader userName:(nonnull NSString*)userName fromVC:(nonnull UIViewController*)fromVC;
  57 +
  58 +/// 跳转用户主页
  59 +/// @param userId 用户主页
  60 +/// @param userHeader 用户头像
  61 +/// @param shopName 用户名称
  62 +/// @param vc 当前控制器
  63 +-(void)skipUserHomePageWithUserId:(nonnull NSString *)userId userHeader:(nonnull NSString *)userHeader shopName:(nonnull NSString *)shopName vc:(nonnull UIViewController *)vc;
  64 +
  65 +/// TIM检测是否互为好友
  66 +/// @param uid 用户id
  67 +/// @param result 结果
  68 +-(void)TIMCheckIsFriend:(nonnull NSString*)uid result:(nullable void (^)(BOOL flag))result;
  69 +
  70 +/// 跳转TIM群组聊天
  71 +/// @param groupId 群组id
  72 +/// @param groupName 群组名称
  73 +/// @param fromVC 当前控制器
  74 +-(void)skipTIMGroupChat:(nonnull NSString*)groupId groupName:(nonnull NSString*)groupName fromVC:(nonnull UIViewController*)fromVC;
  75 +
  76 +/// 跳转TIM群组详情
  77 +/// @param groupId 群组id
  78 +/// @param groupName 群组名称
  79 +/// @param fromVC 当前控制器
  80 +-(void)skipTIMGroupDetails:(nonnull NSString*)groupId groupName:(nonnull NSString*)groupName fromVC:(nonnull UIViewController*)fromVC;
  81 +
  82 +/// 跳转TIM群组聊天信息
  83 +/// @param groupId 群组id
  84 +/// @param groupName 群组名称
  85 +/// @param fromVC 当前控制器
  86 +-(void)skipTIMGroupMessage:(nonnull NSString*)groupId groupName:(nonnull NSString*)groupName fromVC:(nonnull UIViewController*)fromVC;
  87 +
  88 +/// 友盟统计
  89 +/// @param checkType 统计类型
  90 +/// @param subType 统计子类型
  91 +-(void)uMengCheckCallBackType:(DSUMengCheckType)checkType subType:(DSUMengCheckSLType)subType;
  92 +
  93 +/// 服务号跳转
  94 +/// @param skipType 跳转目标
  95 +/// @param fromVC 当前控制器
  96 +-(void)serviceSkipWithSkipType:(DSServiceSkipType)skipType fromVC:(nonnull UIViewController*)fromVC;
  97 +
  98 +/// (一部)url跳转
  99 +/// @param url url链接
  100 +/// @param fromVC 当前控制器
  101 +-(void)skipByUrl:(nonnull NSString*)url fromVC:(nonnull UIViewController*)fromVC;
  102 +
  103 +@end
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonModule-umbrella.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonModule-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 "DSBaseViewController+DSCommonModule.h"
  14 +#import "DSCommonConstant.h"
  15 +#import "DSCommonDelegate.h"
  16 +#import "DSCommonEnum.h"
  17 +#import "DSCommonMacro.h"
  18 +#import "DSCommonManager.h"
  19 +#import "DSCommonModule.h"
  20 +#import "DSCommonRouter.h"
  21 +#import "DSEmptyView+DSCommonModule.h"
  22 +#import "UIImage+DSCommonModule.h"
  23 +#import "UIScrollView+DSCommonModule.h"
  24 +#import "UIView+DSCommonModule.h"
  25 +#import "DSCommentRequestShareModel.h"
  26 +#import "DSCommonRequest.h"
  27 +#import "DSSkipCommon.h"
  28 +#import "DSSkipCommonT.h"
  29 +#import "DSDisplaySelectImageCollectionViewCell.h"
  30 +#import "DSDisplaySelectImageModel.h"
  31 +#import "DSDisplaySelectImageView.h"
  32 +#import "DSFileManager.h"
  33 +#import "DSPlayerBottomMessageView.h"
  34 +#import "DSPlayerFailureView.h"
  35 +#import "DSPlayerFastForwardPreviewView.h"
  36 +#import "DSPlayerKVOModel.h"
  37 +#import "DSPlayerLoadingView.h"
  38 +#import "DSPlayerProgressSlider.h"
  39 +#import "DSPlayerProgressView.h"
  40 +#import "DSPlayerSlider.h"
  41 +#import "DSPlayerTopMessageView.h"
  42 +#import "DSPlayerView.h"
  43 +#import "DSPlayerViewController.h"
  44 +#import "DSPlayerVolumeBrightnessView.h"
  45 +#import "DSRefreshFooter.h"
  46 +#import "DSRefreshHeader.h"
  47 +#import "DSRefreshWHeader.h"
  48 +#import "DSQiNiuUploadManager.h"
  49 +#import "DSQiNiuUploadModel.h"
  50 +
  51 +FOUNDATION_EXPORT double DSCommonModuleVersionNumber;
  52 +FOUNDATION_EXPORT const unsigned char DSCommonModuleVersionString[];
  53 +
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonModule.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonModule.h
  1 +//
  2 +// DSCommonModule.h
  3 +// DSCommonModule
  4 +//
  5 +// Created by zhaolin on 2020/3/2.
  6 +//
  7 +
  8 +#ifndef DSCommonModuleHeader_h
  9 +#define DSCommonModuleHeader_h
  10 +
  11 +#import <DSBaseModule/DSBaseModule.h>
  12 +#import <DSToolsModule/DSToolsModule.h>
  13 +
  14 +#import "DSBaseViewController+DSCommonModule.h"
  15 +#import "DSCommonConstant.h"
  16 +#import "DSCommonMacro.h"
  17 +#import "DSCommonManager.h"
  18 +#import "DSCommonRequest.h"
  19 +
  20 +#import "DSEmptyView+DSCommonModule.h"
  21 +#import "UIImage+DSCommonModule.h"
  22 +#import "UIScrollView+DSCommonModule.h"
  23 +#import "UIView+DSCommonModule.h"
  24 +#import "DSRefreshHeader.h"
  25 +#import "DSRefreshWHeader.h"
  26 +#import "DSRefreshFooter.h"
  27 +#import "DSPlayerView.h"
  28 +#import "DSPlayerViewController.h"
  29 +#import "DSFileManager.h"
  30 +#import "DSQiNiuUploadManager.h"
  31 +#import "DSSkipCommon.h"
  32 +#import "DSSkipCommonT.h"
  33 +
  34 +#import <MJExtension/MJExtension.h>
  35 +#import <Masonry/Masonry.h>
  36 +#import <IQKeyboardManager/IQKeyboardManager.h>
  37 +#import <QMUIKit/QMUIKit.h>
  38 +
  39 +#endif /* DSCommonModule_h */
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonRequest.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonRequest.h
  1 +//
  2 +// DSCommonRequest.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/8/16.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import "DSCommentRequestShareModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSCommonRequest : NSObject
  15 +
  16 +#pragma mark - 获取网络时间
  17 +
  18 +/**
  19 + 获取网络时间
  20 +
  21 + @param result 结果
  22 + */
  23 ++(void)postGetTimeWithResult:(void (^)(NSTimeInterval networkTimestamp))result;
  24 +
  25 +#pragma mark - 获取分享数据
  26 +
  27 +/// 获取分享数据
  28 +/// @param type 分享类型 1文创商品 2普通商品 3主题活动 4店铺首页 5达人 6动态 7达人列表 8礼物分享 9优选库首页 10电影作品详情 12服务号 ...
  29 +/// @param targetId 目标id
  30 +/// @param ext 后台要求的附加参数
  31 +/// @param result 结果
  32 ++(void)postGetShareDataWithType:(NSUInteger)type targetId:(NSString *)targetId ext:(nullable NSString *)ext result:(void (^)(DSCommentRequestShareModel * model, NSString * errorMessage))result;
  33 +
  34 +#pragma mark - 页面访问统计
  35 +
  36 +/**
  37 + 页面访问统计
  38 +
  39 + @param uid 用户id
  40 + @param type 1安卓 2ios
  41 + @param title 页面标识
  42 + @param result 结果
  43 + */
  44 ++(void)postVisitStatisticsWithUid:(NSString*)uid type:(NSUInteger)type title:(NSString*)title result:(void (^)(NSString * errorMessage))result;
  45 +
  46 +#pragma mark - 检测服务号web页是否能往外部跳转
  47 +
  48 +/// 检测服务号web页是否能往外部跳转
  49 +/// @param serviceId 服务号id
  50 +/// @param ios 跳转App Store对应app的id
  51 +/// @param result 结果
  52 ++(void)postCheckAppLoactionWithServiceId:(NSString*)serviceId ios:(NSString*)ios result:(void (^)(BOOL flag, NSString * errorMessage))result;
  53 +
  54 +@end
  55 +
  56 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonRouter.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSCommonRouter.h
  1 +//
  2 +// DSCommonRouter.h
  3 +// DSCommonModule
  4 +//
  5 +// Created by zhaolin on 2020/3/8.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSCommonRouter : NSObject
  13 +
  14 +#pragma mark - WebView模块路由
  15 +
  16 +/// 创建WebView控制器
  17 ++(BOOL)initWebViewMWebViewVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  18 +
  19 +#pragma mark - 商城模块路由
  20 +
  21 +/// 创建文创精品首页控制器
  22 ++(BOOL)initShopMCultureParentVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  23 +
  24 +/// 创建商品详情控制器
  25 ++(BOOL)initShopMGoodsDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  26 +
  27 +/// 创建文创传人控制器
  28 ++(BOOL)initShopMCInheritancePeopleVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  29 +
  30 +/// 创建文创传人控制器
  31 ++(BOOL)initShopMCultureHPIPVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  32 +
  33 +/// 创建商品列表控制器
  34 ++(BOOL)initShopMGoodsListVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  35 +
  36 +/// 创建商城首页控制器
  37 ++(BOOL)initShopMShopHPVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  38 +
  39 +/// 创建网页形式店铺首页控制器
  40 ++(BOOL)initShopMStoreHPVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  41 +
  42 +/// 创建送礼物订单控制器
  43 ++(BOOL)initShopMOGiveGiftsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  44 +
  45 +/// 创建我的礼物列表控制器
  46 ++(BOOL)initShopMMyGivingGiftsListVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  47 +
  48 +/// 创建礼物详情控制器
  49 ++(BOOL)initShopMGiftDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  50 +
  51 +#pragma mark - 餐厅模块路由
  52 +
  53 +/// 创建餐厅门店首页控制器
  54 ++(BOOL)initRepastMRStoreHPVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  55 +
  56 +/// 创建餐厅订单列表控制器
  57 ++(BOOL)initRepastMROrderListVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  58 +
  59 +/// 创建AR识别餐厅结果控制器
  60 ++(BOOL)initRepastMARRepastResultVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  61 +
  62 +/// 创建附近门店父级控制器
  63 ++(BOOL)initRepastMRNearbyStoreParentVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  64 +
  65 +/// 创建餐厅订单详情控制器
  66 ++(BOOL)initRepastMROrderDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  67 +
  68 +#pragma mark - 电商中国模块路由
  69 +
  70 +/// 创建老达人主页控制器
  71 ++(BOOL)initHappinessMOldDarenVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  72 +
  73 +/// 创建达人主页控制器
  74 ++(BOOL)initHappinessMDaRenHPVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  75 +
  76 +/// 创建达人动态详情控制器
  77 ++(BOOL)initHappinessMDRDynamicDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  78 +
  79 +/// 创建优选库控制器
  80 ++(BOOL)initHappinessMOptimizationHPVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  81 +
  82 +#pragma mark - 生活服务模块路由
  83 +
  84 +/// 创建本地生活首页控制器
  85 ++(BOOL)initLifeServiceMLSHomePageVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  86 +
  87 +/// 创建保洁产品或保洁师列表控制器
  88 ++(BOOL)initLifeServiceMLSListFirstTypeVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  89 +
  90 +/// 创建小时工列表控制器
  91 ++(BOOL)initLifeServiceMLSListCleanerVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  92 +
  93 +/// 创建月嫂或保姆列表控制器
  94 ++(BOOL)initLifeServiceMLSListSecondTypeVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  95 +
  96 +/// 创建保洁产品详情控制器
  97 ++(BOOL)initLifeServiceMLifeServiceDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  98 +
  99 +/// 创建保洁师或小时工产品详情控制器
  100 ++(BOOL)initLifeServiceCleanerDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  101 +
  102 +/// 创建月嫂或保姆产品详情控制器
  103 ++(BOOL)initLifeServiceSecondTypeDetailsVCWithParams:(nullable NSDictionary*)params completion:(nullable void (^)(id result))completion;
  104 +
  105 +@end
  106 +
  107 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSDisplaySelectImageCollectionViewCell.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSDisplaySelectImageCollectionViewCell.h
  1 +//
  2 +// DSDisplaySelectImageCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/10/24.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +#import "DSDisplaySelectImageModel.h"
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSDisplaySelectImageCollectionViewCell : UICollectionViewCell
  14 +
  15 +@property (nonatomic,strong) DSImageView * showImageView;
  16 +
  17 +/**
  18 + 删除回调
  19 + */
  20 +@property (nonatomic,copy) void (^deleteImageAction)(DSDisplaySelectImageModel * model);
  21 +
  22 +#pragma mark - 赋值
  23 +
  24 +@property (nonatomic,strong,nullable) DSDisplaySelectImageModel * model;
  25 +@property (nonatomic,assign) BOOL isHideDeleteBtn;
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSDisplaySelectImageModel.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSDisplaySelectImageModel.h
  1 +//
  2 +// DSDisplaySelectImageModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/5/22.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSDisplaySelectImageModel : NSObject
  15 +
  16 +/**
  17 + 图片url
  18 + */
  19 +@property (nonatomic,copy) NSString * imageUrl;
  20 +/**
  21 + 图片(上传中使用这个张图片)
  22 + */
  23 +@property (nonatomic,strong) UIImage * image;
  24 +/**
  25 + 是否正在上传中
  26 + */
  27 +@property (nonatomic,assign) BOOL isUploading;
  28 +/**
  29 + 上传的key 用于取消上传
  30 + */
  31 +@property (nonatomic,copy) NSString * uploadKey;
  32 +/**
  33 + 上传百分比 0~1
  34 + */
  35 +@property (nonatomic,assign) CGFloat uploadingPercent;
  36 +
  37 +@end
  38 +
  39 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSDisplaySelectImageView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSDisplaySelectImageView.h
  1 +//
  2 +// DSDisplaySelectImageView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/10/24.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSDisplaySelectImageView : UIView
  13 +
  14 +/**
  15 + 是否隐藏删除按钮
  16 + */
  17 +@property (nonatomic,assign) BOOL isHideDeleteBtn;
  18 +/**
  19 + 列数默认1
  20 + */
  21 +@property (nonatomic,assign) NSUInteger column;
  22 +
  23 +#pragma mark - 上传操作
  24 +
  25 +/**
  26 + 是否正在上传图片中
  27 + */
  28 +@property (nonatomic,assign,readonly) BOOL isUploading;
  29 +
  30 +/**
  31 + 开始上传图片
  32 + */
  33 +@property (nonatomic,copy) void (^beginUploadImageCallBack)(void);
  34 +/**
  35 + 结束上传图片
  36 + */
  37 +@property (nonatomic,copy) void (^endUploadImageCallBack)(void);
  38 +
  39 +#pragma mark - 图片数组
  40 +
  41 +/**
  42 + 获取的网络图片数组
  43 + */
  44 +@property (nonatomic,copy) NSArray<NSString*> * networkImageArr;
  45 +
  46 +/**
  47 + 获取当前选取的网络图片数组
  48 +
  49 + @return 网络图片数组
  50 + */
  51 +-(NSArray<NSString*>*)getCurrentSelectImageUrls;
  52 +/**
  53 + 提交成功XXX后 删除(云中)替换掉的图片
  54 + */
  55 +-(void)deleteReplaceImageUrlAfterSuccessUploadThings;
  56 +/**
  57 + 不上传了 删除(云中)新上传的图片
  58 + */
  59 +-(void)deleteUploadImageUrlAfterCancelUploadThings;
  60 +
  61 +@end
  62 +
  63 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSEmptyView+DSCommonModule.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSEmptyView+DSCommonModule.h
  1 +//
  2 +// DSEmptyView+DSCommonModule.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2020/2/24.
  6 +// Copyright © 2020 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSEmptyView.h>
  10 +
  11 +typedef NS_ENUM(NSUInteger, DSEmptyType) {
  12 + DSEmptyTypeDefault = 0, //默认空白页
  13 + DSEmptyTypeError, //默认失败页
  14 +};
  15 +
  16 +NS_ASSUME_NONNULL_BEGIN
  17 +
  18 +@interface DSEmptyView (DSCommonModule)
  19 +
  20 +/// 关于哪个界面
  21 +@property (nonatomic,assign) DSEmptyType type;
  22 +
  23 +@end
  24 +
  25 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSFileManager.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSFileManager.h
  1 +//
  2 +// DSFileManager.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/1/7.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSFileManager : NSObject
  13 +
  14 +#pragma mark - 单例
  15 +
  16 ++(instancetype)sharedManager;
  17 +
  18 +#pragma mark - 存储、读取、删除
  19 +
  20 +/// write file 储存
  21 +/// @param object 存储的对象
  22 +/// @param key 存储对象的key
  23 +-(void)saveData:(id)object key:(NSString*)key;
  24 +
  25 +/// write file 读取
  26 +/// @param key 存储对象的key
  27 +-(instancetype)takeDataKey:(NSString*)key;
  28 +
  29 +/// 获取存储的所有数据
  30 +-(NSDictionary*)takeAllSaveData;
  31 +
  32 +/// 删除存储中所有的key
  33 +-(void)resetAllSaveData;
  34 +
  35 +/// 删除存储中对应的key
  36 +/// @param resetKey 删除的key
  37 +-(void)deleteKey:(NSString*)resetKey;
  38 +
  39 +#pragma mark - 储存路径
  40 +
  41 +/// 存储路径 ~/Document/DS
  42 +@property (nonatomic,copy,nonnull,readonly) NSString * dsFileDir;
  43 +/// 当前用户储存路径
  44 +/// 没userId ~/Document/DS/Common/
  45 +/// 有userId ~/Document/DS/userId_XXX/
  46 +@property (nonatomic,copy,nullable,readonly) NSString * useDSFileDir;
  47 +
  48 +/// 切换用户时调用 把当前用户存储路径指空
  49 +-(void)settingUseDSFileDirForEmpty;
  50 +
  51 +/// 计算储存路径目录下所有文件大小 单位字节b
  52 +-(CGFloat)calcDSFileDirCacheSize;
  53 +
  54 +/// 清空储存路径缓存
  55 +/// @param completion 清空完成回调
  56 +-(void)clearDSFileDirCacheCompletion:(nullable void (^)(void))completion;
  57 +
  58 +@end
  59 +
  60 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerBottomMessageView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerBottomMessageView.h
  1 +//
  2 +// DSPlayerBottomMessageView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSPlayerProgressSlider.h"
  11 +#import <DSBaseModule/DSImageView.h>
  12 +
  13 +typedef NS_ENUM(NSUInteger, DSPlayerBottomTimeStyle) {
  14 + DSPlayerBottomTimeStyleM_S = 0, //时间格式mm:ss
  15 + DSPlayerBottomTimeStyleH_M_S //时间格式HH:mm:ss
  16 +};
  17 +
  18 +NS_ASSUME_NONNULL_BEGIN
  19 +
  20 +@interface DSPlayerBottomMessageView : UIView
  21 +
  22 +#pragma mark - UI
  23 +
  24 +/**
  25 + 底部播放暂停按钮
  26 + */
  27 +@property (nonatomic,strong) UIButton * playBtn;
  28 +/**
  29 + 底部播放暂停按钮图片
  30 + */
  31 +@property (nonatomic,strong) DSImageView * playImageView;
  32 +/**
  33 + 底部时间文本
  34 + */
  35 +@property (nonatomic,strong) UILabel * timeLab;
  36 +/**
  37 + 横竖屏切换按钮
  38 + */
  39 +@property (nonatomic,strong) UIButton * frameBtn;
  40 +/**
  41 + 横竖屏切换按钮图片
  42 + */
  43 +@property (nonatomic,strong) DSImageView * frameImageView;
  44 +/**
  45 + 滑动进度条
  46 + */
  47 +@property (nonatomic,strong) DSPlayerProgressSlider * progressSlider;
  48 +
  49 +#pragma mark - 时间格式
  50 +
  51 +/**
  52 + 时间格式
  53 + */
  54 +@property (nonatomic,assign) DSPlayerBottomTimeStyle timeStyle;
  55 +
  56 +#pragma mark - 回调
  57 +
  58 +/**
  59 + 点击播放回调
  60 + */
  61 +@property (nonatomic,copy) void (^clickPlayBtnCallBack)(void);
  62 +/**
  63 + 进度条滑动中回调
  64 + */
  65 +@property (nonatomic,copy) void (^changeSliderValueCallBack)(CGFloat value);
  66 +/**
  67 + 进度条结束滑动回调
  68 + */
  69 +@property (nonatomic,copy) void (^endChangeSliderValueCallBack)(CGFloat value);
  70 +/**
  71 + 点击横竖屏切换按钮回调
  72 + */
  73 +@property (nonatomic,copy) void (^clickFrameBtnCallBack)(void);
  74 +
  75 +@end
  76 +
  77 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerFailureView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerFailureView.h
  1 +//
  2 +// DSPlayerFailureView.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 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerFailureView : UIView
  14 +
  15 +#pragma mark - 属性
  16 +
  17 +@property (nonatomic,copy) NSString * errorMessage;//失败原因
  18 +
  19 +#pragma mark - 回调
  20 +
  21 +@property (nonatomic,copy) void (^clickRefreshCallBack)(void);//点击刷新回调
  22 +@property (nonatomic,copy) void (^clickBackCallBack)(void);//点击返回回调
  23 +
  24 +@end
  25 +
  26 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerFastForwardPreviewView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerFastForwardPreviewView.h
  1 +//
  2 +// DSPlayerFastForwardPreviewView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/30.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerFastForwardPreviewView : UIView
  14 +
  15 +//@property (nonatomic,strong) UIImage * previewImage;//预览图
  16 +@property (nonatomic,assign) CGFloat value;//快进进度0~1
  17 +@property (nonatomic,copy) NSString * time;//时间
  18 +
  19 +@end
  20 +
  21 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerKVOModel.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerKVOModel.h
  1 +//
  2 +// DSPlayerKVOModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerKVOModel : NSObject
  14 +
  15 +/**
  16 + KVO监听对象
  17 + */
  18 +@property (nonatomic,weak) id obj;
  19 +/**
  20 + KVO监听对象路径
  21 + */
  22 +@property (nonatomic,copy) NSString * path;
  23 +
  24 +@end
  25 +
  26 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerLoadingView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerLoadingView.h
  1 +//
  2 +// DSPlayerLoadingView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/29.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerLoadingView : UIView
  14 +
  15 +/**
  16 + 是否在加载中
  17 + */
  18 +@property (nonatomic,assign,readonly) BOOL isLoading;
  19 +
  20 +#pragma mark - 方法
  21 +
  22 +/**
  23 + 开启动画
  24 + */
  25 +-(void)startAnimate;
  26 +/**
  27 + 结束动画
  28 + */
  29 +-(void)stopAnimate;
  30 +
  31 +@end
  32 +
  33 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerProgressSlider.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerProgressSlider.h
  1 +//
  2 +// DSPlayerProgressSlider.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerProgressSlider : UIView
  14 +
  15 +/**
  16 + 全部进度颜色
  17 + */
  18 +@property (nonatomic,strong) UIColor * totalColor;
  19 +/**
  20 + 缓冲进度颜色
  21 + */
  22 +@property (nonatomic,strong) UIColor * bufferColor;
  23 +/**
  24 + 当前进度颜色
  25 + */
  26 +@property (nonatomic,strong) UIColor * currentColor;
  27 +/**
  28 + 缓冲 0~1
  29 + */
  30 +@property (nonatomic,assign) CGFloat bufferValue;
  31 +/**
  32 + 进度 0~1
  33 + */
  34 +@property (nonatomic,assign) CGFloat value;
  35 +
  36 +
  37 +/**
  38 + 滑动中回调
  39 + */
  40 +@property (nonatomic,copy) void (^changeSliderValueCallBack)(CGFloat value);
  41 +/**
  42 + 结束滑动回调
  43 + */
  44 +@property (nonatomic,copy) void (^endChangeSliderValueCallBack)(CGFloat value);
  45 +
  46 +@end
  47 +
  48 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerProgressView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerProgressView.h
  1 +//
  2 +// DSPlayerProgressView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/29.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerProgressView : UIView
  14 +
  15 +/**
  16 + 全部进度颜色
  17 + */
  18 +@property (nonatomic,strong) UIColor * totalColor;
  19 +/**
  20 + 缓冲进度颜色
  21 + */
  22 +@property (nonatomic,strong) UIColor * bufferColor;
  23 +/**
  24 + 当前进度颜色
  25 + */
  26 +@property (nonatomic,strong) UIColor * currentColor;
  27 +/**
  28 + 缓冲 0~1
  29 + */
  30 +@property (nonatomic,assign) CGFloat bufferValue;
  31 +/**
  32 + 进度 0~1
  33 + */
  34 +@property (nonatomic,assign) CGFloat value;
  35 +
  36 +@end
  37 +
  38 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerSlider.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerSlider.h
  1 +//
  2 +// DSPlayerSlider.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerSlider : UISlider
  14 +
  15 +/**
  16 + 滑动条的高度
  17 + */
  18 +@property (nonatomic,assign) CGFloat sliderHeight;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerTopMessageView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerTopMessageView.h
  1 +//
  2 +// DSPlayerTopMessageView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/29.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerTopMessageView : UIView
  14 +
  15 +#pragma mark - UI
  16 +
  17 +/**
  18 + 返回按钮
  19 + */
  20 +@property (nonatomic,strong) UIButton * backBtn;
  21 +
  22 +#pragma mark - 回调
  23 +
  24 +/**
  25 + 点击返回回调
  26 + */
  27 +@property (nonatomic,copy) void (^clickBackCallBack)(void);
  28 +
  29 +@end
  30 +
  31 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerView.h
  1 +//
  2 +// DSPlayerView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSPlayerTopMessageView.h"
  11 +#import "DSPlayerBottomMessageView.h"
  12 +#import "DSPlayerProgressView.h"
  13 +#import "DSPlayerFailureView.h"
  14 +
  15 +UIKIT_EXTERN const float kDSPlayerAnimateTimeInterval;//动画时间
  16 +
  17 +typedef NS_ENUM(NSUInteger, DSPlayerFullScreenType) { //全屏样式
  18 + DSPlayerFullScreenTypeInCurrentViewOrientation = 0, //在当前DSPlayView中旋转,用于当前播放界面为全屏样式
  19 + DSPlayerFullScreenTypeInWindowOrientation, //在window中旋转,用于小屏不是全屏显示且大屏要全屏显示
  20 + DSPlayerFullScreenTypeFullDisplayOfVideoInterface, //小屏视频展示为裁剪显示,全屏为全部展示,用于竖屏视频显示全屏属性(暂未开发)
  21 +};
  22 +
  23 +NS_ASSUME_NONNULL_BEGIN
  24 +
  25 +@interface DSPlayerView : UIView
  26 +
  27 +#pragma mark - 播放设置
  28 +
  29 +/**
  30 + 初始化视频链接地址 为空为停止播放
  31 + */
  32 +@property (nonatomic,strong,nullable,readonly) NSURL * playUrl;
  33 +/**
  34 + 视频链接是否为直播
  35 + */
  36 +@property (nonatomic,assign,readonly) BOOL isLive;
  37 +/**
  38 + 初始化视频
  39 +
  40 + @param playUrl 视频链接地址 为空为停止播放
  41 + @param isLive 是否为直播
  42 + */
  43 +-(void)setPlayUrl:(NSURL * _Nullable)playUrl isLive:(BOOL)isLive;
  44 +
  45 +#pragma mark - 播放属性
  46 +
  47 +/**
  48 + 是否循环播放(默认NO)
  49 + */
  50 +@property (nonatomic,assign) BOOL isLoopPlay;
  51 +
  52 +/// 开始播放时间
  53 +@property (nonatomic,assign) NSTimeInterval startPlayTime;
  54 +
  55 +/// 获取播放时间
  56 +-(NSTimeInterval)getPlayTime;
  57 +
  58 +#pragma mark - 播放状态
  59 +
  60 +/**
  61 + 开始/继续播放
  62 + */
  63 +-(void)play;
  64 +/**
  65 + 暂停播放
  66 +
  67 + @param isRemove 是否删除kvo、通知、定时器
  68 + */
  69 +-(void)pauseWithIsRemoveKVOsAndNotifications:(BOOL)isRemove;
  70 +/**
  71 + 结束播放 如果isLoopPlay==YES,播放完成时请调用stop方法 否则该类释放不掉
  72 + */
  73 +-(void)stop;
  74 +
  75 +#pragma mark - 播放回调
  76 +
  77 +/// 点击返回回调
  78 +@property (nonatomic,copy) void (^popCallBack)(void);
  79 +/**
  80 + 播放器暂停回调
  81 + */
  82 +@property (nonatomic,copy) void (^playerPausedCallBack)(DSPlayerView * playerView);
  83 +/**
  84 + 播放器继续播放回调
  85 + */
  86 +@property (nonatomic,copy) void (^playerPlayingCallBack)(DSPlayerView * playerView);
  87 +/**
  88 + 播放完成回调 如果isLoopPlay==YES,播放完成时请调用stop方法 否则该类释放不掉
  89 + */
  90 +@property (nonatomic,copy) void (^playerDidToEndCallBack)(DSPlayerView * playerView);
  91 +
  92 +#pragma mark - 预览界面
  93 +
  94 +/**
  95 + 预览界面 (所有的控件都在这个上面)
  96 + */
  97 +@property (nonatomic,strong) UIView * previewView;
  98 +
  99 +#pragma mark - 封面图
  100 +
  101 +/**
  102 + 封面图(不传封面图就不显示)
  103 + */
  104 +@property (nonatomic,strong,nullable) UIImage * coverImage;
  105 +/**
  106 + 封面图url(先检测封面图,后检测封面图url,不传封面图就不显示)
  107 + */
  108 +@property (nonatomic,copy,nullable) NSString * coverImageUrl;
  109 +/**
  110 + 封面填充属性
  111 + */
  112 +@property (nonatomic,assign) UIViewContentMode coverImageViewContentMode;
  113 +
  114 +#pragma mark - 手势
  115 +
  116 +/**
  117 + 手势触发view
  118 + */
  119 +@property (nonatomic,strong) UIView * gestureView;
  120 +/**
  121 + 双击手势
  122 + */
  123 +@property (nonatomic,strong) UITapGestureRecognizer * gestureViewDoubleTap;
  124 +/**
  125 + 滑动手势
  126 + */
  127 +@property (nonatomic,strong) UIPanGestureRecognizer * gestureViewPanGesture;
  128 +
  129 +#pragma mark - 顶部、底部信息
  130 +
  131 +/**
  132 + 顶部信息view
  133 + */
  134 +@property (nonatomic,strong) DSPlayerTopMessageView * topMessageView;
  135 +/**
  136 + 竖屏顶部信息view的高度
  137 + fullScreenType == DSPlayerFullScreenTypeInCurrentViewOrientation 时默认 导航高度
  138 + fullScreenType == DSPlayerFullScreenTypeInWindowOrientation 时默认 50
  139 + fullScreenType == DSPlayerFullScreenTypeFullDisplayOfVideoInterface 时默认 导航高度
  140 + */
  141 +@property (nonatomic,assign) CGFloat portraitTopMessageViewHeight;
  142 +/**
  143 + 横屏顶部信息view的高度
  144 + fullScreenType == DSPlayerFullScreenTypeInCurrentViewOrientation 时默认 普通屏 导航高度 iPhoneX系列 20+44
  145 + fullScreenType == DSPlayerFullScreenTypeInWindowOrientation 时默认 普通屏 导航高度 iPhoneX系列 20+44
  146 + fullScreenType == DSPlayerFullScreenTypeFullDisplayOfVideoInterface 时 不存在横屏 所以此属性无效
  147 + */
  148 +@property (nonatomic,assign) CGFloat landscapeTopMessageViewHeight;
  149 +/**
  150 + 底部信息view
  151 + */
  152 +@property (nonatomic,strong) DSPlayerBottomMessageView * bottomMessageView;
  153 +/**
  154 + 竖屏底部信息view的高度
  155 + fullScreenType == DSPlayerFullScreenTypeInCurrentViewOrientation 时默认 普通屏 50 iPhoneX系列 50+底部安全区域
  156 + fullScreenType == DSPlayerFullScreenTypeInWindowOrientation 时默认 50
  157 + fullScreenType == DSPlayerFullScreenTypeFullDisplayOfVideoInterface 时默认 50
  158 + */
  159 +@property (nonatomic,assign) CGFloat portraitBottomMessageViewHeight;
  160 +/**
  161 + 横屏底部信息view的高度
  162 + fullScreenType == DSPlayerFullScreenTypeInCurrentViewOrientation 时默认 普通屏 50 iPhoneX系列 50+底部安全区域
  163 + fullScreenType == DSPlayerFullScreenTypeInWindowOrientation 时默认 普通屏 50 iPhoneX系列 50+底部安全区域
  164 + fullScreenType == DSPlayerFullScreenTypeFullDisplayOfVideoInterface 时 不存在横屏 所以此属性无效
  165 + */
  166 +@property (nonatomic,assign) CGFloat landscapeBottomMessageViewHeight;
  167 +
  168 +/// 底部进度条(当底部信息view隐藏了才会显示)
  169 +@property (nonatomic,strong) DSPlayerProgressView * bottomProgressView;
  170 +
  171 +#pragma mark - 失败界面
  172 +
  173 +/**
  174 + 失败界面
  175 + */
  176 +@property (nonatomic,strong) DSPlayerFailureView * failureView;
  177 +
  178 +#pragma mark - BOOL值
  179 +
  180 +/**
  181 + 是否播放完成
  182 + */
  183 +@property (nonatomic,assign) BOOL isPlayEnd;
  184 +/**
  185 + 是否用户手动暂停
  186 + */
  187 +@property (nonatomic,assign) BOOL isUserStop;
  188 +
  189 +#pragma mark - 是否锁屏
  190 +
  191 +/**
  192 + 是否锁屏
  193 + */
  194 +@property (nonatomic,assign) BOOL isLockScreen;
  195 +/**
  196 + 锁屏/解锁屏回调
  197 + */
  198 +@property (nonatomic,copy) void (^switchLockScreenCallBack)(DSPlayerView * playerView);
  199 +
  200 +#pragma mark - 隐藏/显示视频上面的控件
  201 +
  202 +/**
  203 + 是否隐藏信息视图
  204 + */
  205 +@property (nonatomic,assign) BOOL isAlphaMessage;
  206 +/**
  207 + 隐藏/显示视频上面的控件回调
  208 + */
  209 +@property (nonatomic,copy) void (^switchAlphaMessageStateCallBack)(DSPlayerView * playerView);
  210 +
  211 +#pragma mark - 小屏/全屏
  212 +
  213 +/**
  214 + 全屏样式
  215 + */
  216 +@property (nonatomic,assign) DSPlayerFullScreenType fullScreenType;
  217 +/**
  218 + 是否全屏
  219 + */
  220 +@property (nonatomic,assign,readonly) BOOL isFullScreen;
  221 +/**
  222 + 退出全屏
  223 + */
  224 +-(void)exitFullScreen;
  225 +
  226 +/**
  227 + 是否开启检测设备转屏 默认开启
  228 + */
  229 +@property (nonatomic,assign) BOOL isMonitorDeviceOrientation;
  230 +/**
  231 + 当前屏幕方向
  232 + */
  233 +@property (nonatomic,assign) UIInterfaceOrientation currentOrientation;
  234 +/**
  235 + 修改屏幕方向回调
  236 + */
  237 +@property (nonatomic,copy) void (^switchInterfaceOrientationCallBack)(DSPlayerView * playerView);
  238 +
  239 +@end
  240 +
  241 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerViewController.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerViewController.h
  1 +//
  2 +// DSPlayerViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/14.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerViewController : DSBaseViewController
  14 +
  15 +#pragma mark - 播放设置
  16 +
  17 +/**
  18 + 初始化视频链接地址 为空为停止播放
  19 + */
  20 +@property (nonatomic,strong,nullable,readonly) NSURL * playUrl;
  21 +/**
  22 + 视频链接是否为直播
  23 + */
  24 +@property (nonatomic,assign,readonly) BOOL isLive;
  25 +/**
  26 + 初始化视频
  27 +
  28 + @param playUrl 视频链接地址 为空为停止播放
  29 + @param isLive 是否为直播
  30 + */
  31 +-(void)setPlayUrl:(NSURL * _Nullable)playUrl isLive:(BOOL)isLive;
  32 +
  33 +/// 初始化视频
  34 +/// @param playUrl 视频链接地址 为空为停止播放
  35 +/// @param playTime 播放时间
  36 +-(void)setPlayUrl:(NSURL * _Nullable)playUrl playTime:(NSTimeInterval)playTime;
  37 +
  38 +#pragma mark - 封面图
  39 +
  40 +/**
  41 + 封面图(不传封面图就不显示)
  42 + */
  43 +@property (nonatomic,strong,nullable) UIImage * coverImage;
  44 +/**
  45 + 封面图url(先检测封面图,后检测封面图url,不传封面图就不显示)
  46 + */
  47 +@property (nonatomic,copy,nullable) NSString * coverImageUrl;
  48 +
  49 +#pragma mark - 回调
  50 +
  51 +/// 返回观看时间回调
  52 +@property (nonatomic,copy) void (^popActionCallBack)(NSTimeInterval time, BOOL isPause, BOOL isPlayEnd);
  53 +
  54 +@end
  55 +
  56 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerVolumeBrightnessView.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSPlayerVolumeBrightnessView.h
  1 +//
  2 +// DSPlayerVolumeBrightnessView.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 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSPlayerVolumeBrightnessView : UIView
  14 +
  15 +/**
  16 + 进度 0~1
  17 + */
  18 +@property (nonatomic,assign) CGFloat value;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSQiNiuUploadManager.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSQiNiuUploadManager.h
  1 +//
  2 +// DSQiNiuUploadManager.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/1/8.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +typedef NS_ENUM(NSUInteger, DSQiNiuUploadResult) {
  12 + DSQiNiuUploadResultSuccess = 0,
  13 + DSQiNiuUploadResultFailure
  14 +};
  15 +
  16 +NS_ASSUME_NONNULL_BEGIN
  17 +
  18 +@interface DSQiNiuUploadManager : NSObject
  19 +
  20 +#pragma mark - 单例
  21 +
  22 ++(instancetype)sharedManager;
  23 +
  24 +#pragma mark - 上传
  25 +
  26 +/**
  27 + 上传图片
  28 +
  29 + @param imageData 图片data
  30 + @param progress 进度
  31 + @param complete 完成方法
  32 + @return 上传图片的key
  33 + */
  34 +-(NSString *)uploadImageData:(nonnull NSData*)imageData uploadProgress:(nullable void (^)(NSString * key, CGFloat percent))progress complete:(nullable void (^)(NSString * key, DSQiNiuUploadResult result, NSString * imageUrl, NSString * errorMessage))complete;
  35 +
  36 +/**
  37 + 上传视频
  38 +
  39 + @param videoData 视频data
  40 + @param progress 进度
  41 + @param complete 完成方法
  42 + @return 上传视频的key
  43 + */
  44 +-(NSString *)uploadVideoData:(nonnull NSData*)videoData uploadProgress:(nullable void (^)(NSString * key, CGFloat percent))progress complete:(nullable void (^)(NSString * key, DSQiNiuUploadResult result, NSString * videoUrl, NSString * errorMessage))complete;
  45 +
  46 +#pragma mark - 取消上传
  47 +
  48 +/**
  49 + 取消上传
  50 +
  51 + @param key 上传文件的key
  52 + */
  53 +-(void)cancelUploadKey:(NSString*)key;
  54 +
  55 +#pragma mark - 删除云中图片/视频
  56 +
  57 +/**
  58 + 删除云中图片/视频
  59 +
  60 + @param imageUrl 图片/视频url
  61 + @param complete 完成回调
  62 + */
  63 +-(void)requestQiNiuDeleteImageUrl:(nonnull NSString*)imageUrl complete:(nullable void (^)(NSString * errorMessage))complete;
  64 +
  65 +@end
  66 +
  67 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSQiNiuUploadModel.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSQiNiuUploadModel.h
  1 +//
  2 +// DSQiNiuUploadModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/1/8.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +#import <Qiniu/QiniuSDK.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSQiNiuUploadModel : NSObject
  14 +
  15 +/**
  16 + 上传文件的key
  17 + */
  18 +@property (nonatomic,copy) NSString * key;
  19 +/**
  20 + 上传选项
  21 + */
  22 +@property (nonatomic,strong) QNUploadOption * uploadOption;
  23 +/**
  24 + 是否取消上传
  25 + */
  26 +@property (nonatomic,assign) BOOL isCancel;
  27 +
  28 +@end
  29 +
  30 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSRefreshFooter.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSRefreshFooter.h
  1 +//
  2 +// DSRefreshFooter.h
  3 +// BIKEDistribution
  4 +//
  5 +// Created by BIKE on 2018/9/19.
  6 +// Copyright © 2018年 毕珂. All rights reserved.
  7 +//
  8 +
  9 +#import <MJRefresh/MJRefresh.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSRefreshFooter : MJRefreshAutoNormalFooter
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSRefreshHeader.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSRefreshHeader.h
  1 +//
  2 +// DSRefreshHeader.h
  3 +// BIKEDistribution
  4 +//
  5 +// Created by BIKE on 2018/9/19.
  6 +// Copyright © 2018年 毕珂. All rights reserved.
  7 +//
  8 +
  9 +#import <MJRefresh/MJRefresh.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSRefreshHeader : MJRefreshGifHeader
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSRefreshWHeader.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSRefreshWHeader.h
  1 +//
  2 +// DSRefreshWHeader.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/12/3.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <MJRefresh/MJRefresh.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSRefreshWHeader : MJRefreshGifHeader
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSSkipCommon.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSSkipCommon.h
  1 +//
  2 +// DSSkipCommon.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/1/21.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface DSSkipCommon : NSObject
  13 +
  14 +#pragma mark - 跳转规则
  15 +
  16 +/**
  17 + 电商通用跳转规则
  18 +
  19 + @param type 跳转格式
  20 + @param to 跳转目标
  21 + @param shopType 附加参数
  22 + */
  23 ++(void)skipWithType:(NSString*)type to:(NSString*)to shopType:(NSString*)shopType;
  24 +
  25 +@end
  26 +
  27 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSSkipCommonT.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/DSSkipCommonT.h
  1 +//
  2 +// DSSkipCommonT.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/15.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +#import <DSBaseModule/DSBaseModule.h>
  12 +
  13 +NS_ASSUME_NONNULL_BEGIN
  14 +
  15 +@interface DSSkipCommonT : NSObject
  16 +
  17 +#pragma mark - 单例方法
  18 +
  19 ++(instancetype)sharedManager;
  20 +
  21 +#pragma mark - 跳转规则
  22 +
  23 +/**
  24 + 通用跳转规则
  25 +
  26 + @param type 跳转格式
  27 + @param to 跳转目标
  28 + @param shopType 附加参数
  29 + @return YES跳转成功 NO跳转失败
  30 + */
  31 +-(BOOL)skipWithType:(nullable NSString*)type to:(nullable NSString*)to shopType:(nullable NSString*)shopType;
  32 +
  33 +/**
  34 + 通用跳转规则 (带传入控制器)
  35 +
  36 + @param type 跳转格式
  37 + @param to 跳转目标
  38 + @param shopType 附加参数
  39 + @param currentVC 当前显示控制器
  40 + @return YES跳转成功 NO跳转失败
  41 + */
  42 +-(BOOL)skipWithType:(nullable NSString *)type to:(nullable NSString *)to shopType:(nullable NSString *)shopType currentVC:(nullable UIViewController*)currentVC;
  43 +
  44 +/// 通用跳转规则(带传入控制器、方向)
  45 +/// @param type 跳转格式
  46 +/// @param to 跳转目标
  47 +/// @param shopType 附加参数
  48 +/// @param animaterDirection 过场动画方向
  49 +/// @param currentVC 当前显示控制器
  50 +/// @return YES跳转成功 NO跳转失败
  51 +-(BOOL)skipWithType:(nullable NSString *)type to:(nullable NSString *)to shopType:(nullable NSString *)shopType animaterDirection:(DSTransitionAnimaterDirection)animaterDirection currentVC:(nullable UIViewController*)currentVC;
  52 +
  53 +/// 通用跳转规则(带传入控制器、特殊参数)
  54 +/// @param type 跳转格式
  55 +/// @param to 跳转目标
  56 +/// @param shopType 附加参数
  57 +/// @param shopExtra 特殊参数
  58 +/// @param currentVC YES跳转成功 NO跳转失败
  59 +/// @return YES跳转成功 NO跳转失败
  60 +-(BOOL)skipWithType:(nullable NSString *)type to:(nullable NSString *)to shopType:(nullable NSString *)shopType shopExtra:(nullable NSString*)shopExtra currentVC:(nullable UIViewController *)currentVC;
  61 +
  62 +/// 通用跳转规则(带传入控制器、方向、特殊参数)
  63 +/// @param type 跳转格式
  64 +/// @param to 跳转目标
  65 +/// @param shopType 附加参数
  66 +/// @param shopExtra 特殊参数
  67 +/// @param animaterDirection 过场动画方向
  68 +/// @param currentVC YES跳转成功 NO跳转失败
  69 +/// @return YES跳转成功 NO跳转失败
  70 +-(BOOL)skipWithType:(nullable NSString *)type to:(nullable NSString *)to shopType:(nullable NSString *)shopType shopExtra:(nullable NSString *)shopExtra animaterDirection:(DSTransitionAnimaterDirection)animaterDirection currentVC:(nullable UIViewController *)currentVC;
  71 +
  72 +@end
  73 +
  74 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/UIImage+DSCommonModule.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/UIImage+DSCommonModule.h
  1 +//
  2 +// UIImage+DSCommonModule.h
  3 +// BKProjectFramework
  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 UIImage (DSCommonModule)
  12 +
  13 +#pragma mark - 获取图片
  14 +
  15 +/// DSCommonModule获取图片
  16 +/// @param imageName 图片名称
  17 ++(UIImage*)imageWithDSCommonModuleImageName:(NSString*)imageName;
  18 +
  19 +#pragma mark - 占位图
  20 +
  21 +/// 获取纯色的占位图
  22 ++(UIImage*)getColorPlaceholderImage;
  23 +
  24 +/**
  25 + 获取1*1的占位图
  26 +
  27 + @return 1*1的占位图
  28 + */
  29 ++(UIImage*)get1_1PlaceholderImage;
  30 +
  31 +/**
  32 + 获取2*1的占位图
  33 +
  34 + @return 2*1的占位图
  35 + */
  36 ++(UIImage*)get2_1PlaceholderImage;
  37 +
  38 +/**
  39 + 获取3*1的占位图
  40 +
  41 + @return 3*1的占位图
  42 + */
  43 ++(UIImage*)get3_1PlaceholderImage;
  44 +
  45 +/**
  46 + 获取3*2的占位图
  47 +
  48 + @return 3*2的占位图
  49 + */
  50 ++(UIImage*)get3_2PlaceholderImage;
  51 +
  52 +/**
  53 + 获取2:3的占位图
  54 +
  55 + @return 2:3的占位图
  56 + */
  57 ++(UIImage*)get2_3PlaceholderImage;
  58 +
  59 +/**
  60 + 获取1*3的占位图
  61 +
  62 + @return 1*3的占位图
  63 + */
  64 ++(UIImage*)get1_3PlaceholderImage;
  65 +
  66 +/**
  67 + 获取1:2的占位图
  68 +
  69 + @return 1:2的占位图
  70 + */
  71 ++(UIImage*)get1_2PlaceholderImage;
  72 +
  73 +@end
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/UIScrollView+DSCommonModule.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/UIScrollView+DSCommonModule.h
  1 +//
  2 +// UIScrollView+DSCommonModule.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2018/11/1.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface UIScrollView (DSCommonModule)
  13 +
  14 +#pragma mark - 刷新
  15 +
  16 +/// 添加灰色loading刷新
  17 +-(void)addGHeaderRefreshBlock:(void (^)(void))block;
  18 +/// 添加白色loading刷新
  19 +-(void)addWHeaderRefreshBlock:(void (^)(void))block;
  20 +
  21 +#pragma mark - 加载更多
  22 +
  23 +/// 添加加载更多
  24 +-(void)addDSFooterRefreshBlock:(void (^)(void))block;
  25 +
  26 +@end
  27 +
  28 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/UIView+DSCommonModule.h 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Headers/UIView+DSCommonModule.h
  1 +//
  2 +// UIView+DSCommonModule.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2020/2/25.
  6 +// Copyright © 2020 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSEmptyView+DSCommonModule.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface UIView (DSCommonModule)
  15 +
  16 +/**
  17 + 显示没有数据界面
  18 +
  19 + @param type 关于哪个方向的
  20 + @param tapDisposeBtnCallBack 点击处理返回
  21 + */
  22 +-(void)displayEmptyView:(DSEmptyType)type tapDisposeBtnCallBack:(void (^)(void))tapDisposeBtnCallBack;
  23 +
  24 +/**
  25 + 显示没有数据界面
  26 +
  27 + @param type 关于哪个方向的
  28 + @param inset 插入边距
  29 + @param tapDisposeBtnCallBack 点击处理返回
  30 + */
  31 +-(void)displayEmptyView:(DSEmptyType)type inset:(UIEdgeInsets)inset tapDisposeBtnCallBack:(void (^)(void))tapDisposeBtnCallBack;
  32 +
  33 +@end
  34 +
  35 +NS_ASSUME_NONNULL_END
... ...
DSCommonModuleF/Frameworks/DSCommonModule.framework/Info.plist 0 → 100644
No preview for this file type
DSCommonModuleF/Frameworks/DSCommonModule.framework/Modules/module.modulemap 0 → 100644
  1 +++ a/DSCommonModuleF/Frameworks/DSCommonModule.framework/Modules/module.modulemap
  1 +framework module DSCommonModule {
  2 + umbrella header "DSCommonModule-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/DSCommonModuleF.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/DSCommonModuleF.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 515534E08857658DCA65FD86 /* Pods_DSCommonModuleF_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 670790099C88951D2A1AD9BA /* Pods_DSCommonModuleF_Tests.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 + C7ADA908CCD4DBEB7046EF68 /* Pods_DSCommonModuleF_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59DB736E78830CDE67E20A59 /* Pods_DSCommonModuleF_Example.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 = DSCommonModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 1B3FF2B47233122FA0F99E77 /* Pods-DSCommonModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSCommonModuleF_Example.release.xcconfig"; path = "Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  41 + 59DB736E78830CDE67E20A59 /* Pods_DSCommonModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSCommonModuleF_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  42 + 6003F58A195388D20070C39A /* DSCommonModuleF_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSCommonModuleF_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  43 + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  44 + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  45 + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  46 + 6003F595195388D20070C39A /* DSCommonModuleF-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSCommonModuleF-Info.plist"; sourceTree = "<group>"; };
  47 + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  48 + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  49 + 6003F59B195388D20070C39A /* DSCommonModuleF-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DSCommonModuleF-Prefix.pch"; sourceTree = "<group>"; };
  50 + 6003F59C195388D20070C39A /* DSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSAppDelegate.h; sourceTree = "<group>"; };
  51 + 6003F59D195388D20070C39A /* DSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSAppDelegate.m; sourceTree = "<group>"; };
  52 + 6003F5A5195388D20070C39A /* DSViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSViewController.h; sourceTree = "<group>"; };
  53 + 6003F5A6195388D20070C39A /* DSViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSViewController.m; sourceTree = "<group>"; };
  54 + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  55 + 6003F5AE195388D20070C39A /* DSCommonModuleF_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DSCommonModuleF_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  56 + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  57 + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  58 + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  59 + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
  60 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
  61 + 670790099C88951D2A1AD9BA /* Pods_DSCommonModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSCommonModuleF_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  62 + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  63 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  64 + A24486502FD39C3ECFAF109F /* Pods-DSCommonModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSCommonModuleF_Tests.debug.xcconfig"; path = "Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  65 + B224B0C6D4DB1E5513EFD9A1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  66 + C73EC3FB29431E1FE5810B04 /* Pods-DSCommonModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSCommonModuleF_Example.debug.xcconfig"; path = "Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  67 + E71AE6A13F07E1852DB83AB5 /* DSCommonModuleF.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = DSCommonModuleF.podspec; path = ../DSCommonModuleF.podspec; sourceTree = "<group>"; };
  68 + F1983E9ADAC4FD17FEE23494 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  69 + F9386C3E358B17492F67214A /* Pods-DSCommonModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSCommonModuleF_Tests.release.xcconfig"; path = "Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  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 + C7ADA908CCD4DBEB7046EF68 /* Pods_DSCommonModuleF_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 + 515534E08857658DCA65FD86 /* Pods_DSCommonModuleF_Tests.framework in Frameworks */,
  92 + );
  93 + runOnlyForDeploymentPostprocessing = 0;
  94 + };
  95 +/* End PBXFrameworksBuildPhase section */
  96 +
  97 +/* Begin PBXGroup section */
  98 + 09F225D18E61FA03E82F2C8D /* Pods */ = {
  99 + isa = PBXGroup;
  100 + children = (
  101 + C73EC3FB29431E1FE5810B04 /* Pods-DSCommonModuleF_Example.debug.xcconfig */,
  102 + 1B3FF2B47233122FA0F99E77 /* Pods-DSCommonModuleF_Example.release.xcconfig */,
  103 + A24486502FD39C3ECFAF109F /* Pods-DSCommonModuleF_Tests.debug.xcconfig */,
  104 + F9386C3E358B17492F67214A /* Pods-DSCommonModuleF_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 DSCommonModuleF */,
  115 + 6003F5B5195388D20070C39A /* Tests */,
  116 + 6003F58C195388D20070C39A /* Frameworks */,
  117 + 6003F58B195388D20070C39A /* Products */,
  118 + 09F225D18E61FA03E82F2C8D /* Pods */,
  119 + );
  120 + sourceTree = "<group>";
  121 + };
  122 + 6003F58B195388D20070C39A /* Products */ = {
  123 + isa = PBXGroup;
  124 + children = (
  125 + 6003F58A195388D20070C39A /* DSCommonModuleF_Example.app */,
  126 + 6003F5AE195388D20070C39A /* DSCommonModuleF_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 + 59DB736E78830CDE67E20A59 /* Pods_DSCommonModuleF_Example.framework */,
  139 + 670790099C88951D2A1AD9BA /* Pods_DSCommonModuleF_Tests.framework */,
  140 + );
  141 + name = Frameworks;
  142 + sourceTree = "<group>";
  143 + };
  144 + 6003F593195388D20070C39A /* Example for DSCommonModuleF */ = {
  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 DSCommonModuleF";
  157 + path = DSCommonModuleF;
  158 + sourceTree = "<group>";
  159 + };
  160 + 6003F594195388D20070C39A /* Supporting Files */ = {
  161 + isa = PBXGroup;
  162 + children = (
  163 + 6003F595195388D20070C39A /* DSCommonModuleF-Info.plist */,
  164 + 6003F596195388D20070C39A /* InfoPlist.strings */,
  165 + 6003F599195388D20070C39A /* main.m */,
  166 + 6003F59B195388D20070C39A /* DSCommonModuleF-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 + E71AE6A13F07E1852DB83AB5 /* DSCommonModuleF.podspec */,
  194 + F1983E9ADAC4FD17FEE23494 /* README.md */,
  195 + B224B0C6D4DB1E5513EFD9A1 /* LICENSE */,
  196 + );
  197 + name = "Podspec Metadata";
  198 + sourceTree = "<group>";
  199 + };
  200 +/* End PBXGroup section */
  201 +
  202 +/* Begin PBXNativeTarget section */
  203 + 6003F589195388D20070C39A /* DSCommonModuleF_Example */ = {
  204 + isa = PBXNativeTarget;
  205 + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSCommonModuleF_Example" */;
  206 + buildPhases = (
  207 + A43256F3930885C70A93C861 /* [CP] Check Pods Manifest.lock */,
  208 + 6003F586195388D20070C39A /* Sources */,
  209 + 6003F587195388D20070C39A /* Frameworks */,
  210 + 6003F588195388D20070C39A /* Resources */,
  211 + B102F37B4D9244378F018000 /* [CP] Embed Pods Frameworks */,
  212 + );
  213 + buildRules = (
  214 + );
  215 + dependencies = (
  216 + );
  217 + name = DSCommonModuleF_Example;
  218 + productName = DSCommonModuleF;
  219 + productReference = 6003F58A195388D20070C39A /* DSCommonModuleF_Example.app */;
  220 + productType = "com.apple.product-type.application";
  221 + };
  222 + 6003F5AD195388D20070C39A /* DSCommonModuleF_Tests */ = {
  223 + isa = PBXNativeTarget;
  224 + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSCommonModuleF_Tests" */;
  225 + buildPhases = (
  226 + E845E9D513D334A8592671EB /* [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 = DSCommonModuleF_Tests;
  237 + productName = DSCommonModuleFTests;
  238 + productReference = 6003F5AE195388D20070C39A /* DSCommonModuleF_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 "DSCommonModuleF" */;
  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 /* DSCommonModuleF_Example */,
  270 + 6003F5AD195388D20070C39A /* DSCommonModuleF_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 + A43256F3930885C70A93C861 /* [CP] Check Pods Manifest.lock */ = {
  299 + isa = PBXShellScriptBuildPhase;
  300 + buildActionMask = 2147483647;
  301 + files = (
  302 + );
  303 + inputFileListPaths = (
  304 + );
  305 + inputPaths = (
  306 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  307 + "${PODS_ROOT}/Manifest.lock",
  308 + );
  309 + name = "[CP] Check Pods Manifest.lock";
  310 + outputFileListPaths = (
  311 + );
  312 + outputPaths = (
  313 + "$(DERIVED_FILE_DIR)/Pods-DSCommonModuleF_Example-checkManifestLockResult.txt",
  314 + );
  315 + runOnlyForDeploymentPostprocessing = 0;
  316 + shellPath = /bin/sh;
  317 + 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";
  318 + showEnvVarsInLog = 0;
  319 + };
  320 + B102F37B4D9244378F018000 /* [CP] Embed Pods Frameworks */ = {
  321 + isa = PBXShellScriptBuildPhase;
  322 + buildActionMask = 2147483647;
  323 + files = (
  324 + );
  325 + inputPaths = (
  326 + "${PODS_ROOT}/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-frameworks.sh",
  327 + "${BUILT_PRODUCTS_DIR}/DSCommonModuleF/DSCommonModuleF.framework",
  328 + );
  329 + name = "[CP] Embed Pods Frameworks";
  330 + outputPaths = (
  331 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DSCommonModuleF.framework",
  332 + );
  333 + runOnlyForDeploymentPostprocessing = 0;
  334 + shellPath = /bin/sh;
  335 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-frameworks.sh\"\n";
  336 + showEnvVarsInLog = 0;
  337 + };
  338 + E845E9D513D334A8592671EB /* [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-DSCommonModuleF_Tests-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 /* DSCommonModuleF_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 = C73EC3FB29431E1FE5810B04 /* Pods-DSCommonModuleF_Example.debug.xcconfig */;
  495 + buildSettings = {
  496 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  497 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  498 + GCC_PREFIX_HEADER = "DSCommonModuleF/DSCommonModuleF-Prefix.pch";
  499 + INFOPLIST_FILE = "DSCommonModuleF/DSCommonModuleF-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 = 1B3FF2B47233122FA0F99E77 /* Pods-DSCommonModuleF_Example.release.xcconfig */;
  511 + buildSettings = {
  512 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  513 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  514 + GCC_PREFIX_HEADER = "DSCommonModuleF/DSCommonModuleF-Prefix.pch";
  515 + INFOPLIST_FILE = "DSCommonModuleF/DSCommonModuleF-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 = A24486502FD39C3ECFAF109F /* Pods-DSCommonModuleF_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)/DSCommonModuleF_Example.app/DSCommonModuleF_Example";
  545 + WRAPPER_EXTENSION = xctest;
  546 + };
  547 + name = Debug;
  548 + };
  549 + 6003F5C4195388D20070C39A /* Release */ = {
  550 + isa = XCBuildConfiguration;
  551 + baseConfigurationReference = F9386C3E358B17492F67214A /* Pods-DSCommonModuleF_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)/DSCommonModuleF_Example.app/DSCommonModuleF_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 "DSCommonModuleF" */ = {
  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 "DSCommonModuleF_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 "DSCommonModuleF_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/DSCommonModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSCommonModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:DSCommonModuleF.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
... ...
Example/DSCommonModuleF.xcodeproj/xcshareddata/xcschemes/DSCommonModuleF-Example.xcscheme 0 → 100644
  1 +++ a/Example/DSCommonModuleF.xcodeproj/xcshareddata/xcschemes/DSCommonModuleF-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 = "DSCommonModuleF_Example.app"
  19 + BlueprintName = "DSCommonModuleF_Example"
  20 + ReferencedContainer = "container:DSCommonModuleF.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 = "DSCommonModuleF_Tests.xctest"
  37 + BlueprintName = "DSCommonModuleF_Tests"
  38 + ReferencedContainer = "container:DSCommonModuleF.xcodeproj">
  39 + </BuildableReference>
  40 + </TestableReference>
  41 + </Testables>
  42 + <MacroExpansion>
  43 + <BuildableReference
  44 + BuildableIdentifier = "primary"
  45 + BlueprintIdentifier = "6003F589195388D20070C39A"
  46 + BuildableName = "DSCommonModuleF_Example.app"
  47 + BlueprintName = "DSCommonModuleF_Example"
  48 + ReferencedContainer = "container:DSCommonModuleF.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 = "DSCommonModuleF_Example.app"
  70 + BlueprintName = "DSCommonModuleF_Example"
  71 + ReferencedContainer = "container:DSCommonModuleF.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 = "DSCommonModuleF_Example.app"
  89 + BlueprintName = "DSCommonModuleF_Example"
  90 + ReferencedContainer = "container:DSCommonModuleF.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/DSCommonModuleF.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSCommonModuleF.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "group:DSCommonModuleF.xcodeproj">
  6 + </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
  10 +</Workspace>
... ...
Example/DSCommonModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 0 → 100644
  1 +++ a/Example/DSCommonModuleF.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/DSCommonModuleF/Base.lproj/LaunchScreen.storyboard 0 → 100644
  1 +++ a/Example/DSCommonModuleF/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/DSCommonModuleF/Base.lproj/Main.storyboard 0 → 100644
  1 +++ a/Example/DSCommonModuleF/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/DSCommonModuleF/DSAppDelegate.h 0 → 100644
  1 +++ a/Example/DSCommonModuleF/DSAppDelegate.h
  1 +//
  2 +// DSAppDelegate.h
  3 +// DSCommonModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/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/DSCommonModuleF/DSAppDelegate.m 0 → 100644
  1 +++ a/Example/DSCommonModuleF/DSAppDelegate.m
  1 +//
  2 +// DSAppDelegate.m
  3 +// DSCommonModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/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/DSCommonModuleF/DSCommonModuleF-Info.plist 0 → 100644
  1 +++ a/Example/DSCommonModuleF/DSCommonModuleF-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/DSCommonModuleF/DSCommonModuleF-Prefix.pch 0 → 100644
  1 +++ a/Example/DSCommonModuleF/DSCommonModuleF-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/DSCommonModuleF/DSViewController.h 0 → 100644
  1 +++ a/Example/DSCommonModuleF/DSViewController.h
  1 +//
  2 +// DSViewController.h
  3 +// DSCommonModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/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/DSCommonModuleF/DSViewController.m 0 → 100644
  1 +++ a/Example/DSCommonModuleF/DSViewController.m
  1 +//
  2 +// DSViewController.m
  3 +// DSCommonModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/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/DSCommonModuleF/Images.xcassets/AppIcon.appiconset/Contents.json 0 → 100644
  1 +++ a/Example/DSCommonModuleF/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/DSCommonModuleF/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/DSCommonModuleF/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
... ...
Example/DSCommonModuleF/main.m 0 → 100644
  1 +++ a/Example/DSCommonModuleF/main.m
  1 +//
  2 +// main.m
  3 +// DSCommonModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/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 'DSCommonModuleF_Example' do
  6 + pod 'DSCommonModuleF', :path => '../'
  7 +
  8 + target 'DSCommonModuleF_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 + - DSCommonModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSCommonModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSCommonModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSCommonModuleF: b176f8fd7b103bd00bf4af4fa932663642be029d
  13 +
  14 +PODFILE CHECKSUM: 1d0ad3138ec4f9df4f6d2ea2ad7c6e040058535d
  15 +
  16 +COCOAPODS: 1.8.4
... ...
Example/Pods/Local Podspecs/DSCommonModuleF.podspec.json 0 → 100644
  1 +++ a/Example/Pods/Local Podspecs/DSCommonModuleF.podspec.json
  1 +{
  2 + "name": "DSCommonModuleF",
  3 + "version": "0.1.0",
  4 + "summary": "A short description of DSCommonModuleF.",
  5 + "description": "TODO: Add long description of the pod here.",
  6 + "homepage": "https://github.com/694092596@qq.com/DSCommonModuleF",
  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/DSCommonModuleF.git",
  16 + "tag": "0.1.0"
  17 + },
  18 + "platforms": {
  19 + "ios": "8.0"
  20 + },
  21 + "source_files": "DSCommonModuleF/Classes/**/*"
  22 +}
... ...
Example/Pods/Manifest.lock 0 → 100644
  1 +++ a/Example/Pods/Manifest.lock
  1 +PODS:
  2 + - DSCommonModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSCommonModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSCommonModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSCommonModuleF: b176f8fd7b103bd00bf4af4fa932663642be029d
  13 +
  14 +PODFILE CHECKSUM: 1d0ad3138ec4f9df4f6d2ea2ad7c6e040058535d
  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 + 03DA2CAC439A60BD9BD4CFE1E1447E43 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  11 + 2A9A5E7D1DF91613ABEF90003DEFA468 /* DSCommonModuleF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC9098B7AD9CB95BC1AC4913015707B /* DSCommonModuleF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  12 + 7256B5E4A65A1A4294A32819638A0109 /* ReplaceMe.m in Sources */ = {isa = PBXBuildFile; fileRef = D2615BFE9F59A4656EEE0D6825607E2F /* ReplaceMe.m */; };
  13 + 8E9B3E2C52DF9C485D10EE8E86DC7CB8 /* DSCommonModuleF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5526606CF508BDA8D48DE1335E006D20 /* DSCommonModuleF-dummy.m */; };
  14 + 94220F4EFBF5AB4E2C7C3BD80D2C5912 /* Pods-DSCommonModuleF_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F74CCA53E732EDE5606A45994B7C27F6 /* Pods-DSCommonModuleF_Example-dummy.m */; };
  15 + DCC27173D1BE11833745A8A9C488C7F1 /* Pods-DSCommonModuleF_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DED1F400EEF3F5C8235826B16BC821F /* Pods-DSCommonModuleF_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  16 + F65C3391E659EACD27ED86454E282B05 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  17 + F7141849FDD4AB476B29454568B0A6D6 /* Pods-DSCommonModuleF_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D4D78686CDA682DE7C9BBB3A33C136 /* Pods-DSCommonModuleF_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  18 + FABCDCBCAC24E4B50EB27D21B86E0E58 /* Pods-DSCommonModuleF_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2554A19EA6561D7BC3CB3CFAF24047AD /* Pods-DSCommonModuleF_Tests-dummy.m */; };
  19 + FE30D8BA2165A628ECDD3B6999141965 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  20 +/* End PBXBuildFile section */
  21 +
  22 +/* Begin PBXContainerItemProxy section */
  23 + 3D333588C7FE9C27DD067CFE85AD6C05 /* PBXContainerItemProxy */ = {
  24 + isa = PBXContainerItemProxy;
  25 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  26 + proxyType = 1;
  27 + remoteGlobalIDString = EDDFF858EA92A2A049EB58DD3ED462A5;
  28 + remoteInfo = "Pods-DSCommonModuleF_Example";
  29 + };
  30 + 6A92D9AB1317259B5411C8B4CAD2BE07 /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = 210C9895422E0C087B324B5FD70145B3;
  35 + remoteInfo = DSCommonModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 0D8744B6210E5B12E6CEB7AE19658970 /* DSCommonModuleF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DSCommonModuleF.framework; path = DSCommonModuleF.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  41 + 15E6063335478FED98C0C7602C4AFD60 /* Pods-DSCommonModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSCommonModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  42 + 1BF66564D4426CF81924A19A50949C9E /* DSCommonModuleF.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DSCommonModuleF.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  43 + 1FAD01C3AC90833DE28AE27F0EC14FE6 /* DSCommonModuleF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DSCommonModuleF.modulemap; sourceTree = "<group>"; };
  44 + 24B0FC908791D7C3B35F6005F1693797 /* Pods-DSCommonModuleF_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSCommonModuleF_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
  45 + 2549C891FF2A2EA08EE13D647792B3E6 /* Pods_DSCommonModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSCommonModuleF_Example.framework; path = "Pods-DSCommonModuleF_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  46 + 2554A19EA6561D7BC3CB3CFAF24047AD /* Pods-DSCommonModuleF_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSCommonModuleF_Tests-dummy.m"; sourceTree = "<group>"; };
  47 + 2AC1CDC82E328630CBA83E20B1E97A2B /* Pods-DSCommonModuleF_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSCommonModuleF_Tests.modulemap"; sourceTree = "<group>"; };
  48 + 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; };
  49 + 335F5B32F68A4B3BB51AEE83CFFF0B9A /* Pods_DSCommonModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSCommonModuleF_Tests.framework; path = "Pods-DSCommonModuleF_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  50 + 41D4D78686CDA682DE7C9BBB3A33C136 /* Pods-DSCommonModuleF_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSCommonModuleF_Example-umbrella.h"; sourceTree = "<group>"; };
  51 + 4AC9098B7AD9CB95BC1AC4913015707B /* DSCommonModuleF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSCommonModuleF-umbrella.h"; sourceTree = "<group>"; };
  52 + 4DED1F400EEF3F5C8235826B16BC821F /* Pods-DSCommonModuleF_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSCommonModuleF_Tests-umbrella.h"; sourceTree = "<group>"; };
  53 + 5526606CF508BDA8D48DE1335E006D20 /* DSCommonModuleF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DSCommonModuleF-dummy.m"; sourceTree = "<group>"; };
  54 + 5DFF135678968226F90E6B0EFE19BF35 /* Pods-DSCommonModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSCommonModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  55 + 7B40C191D69D2067A3065736F6415CB0 /* Pods-DSCommonModuleF_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSCommonModuleF_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
  56 + 7EED692E0F5EBC131CD48DF94D5D700D /* DSCommonModuleF-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DSCommonModuleF-Info.plist"; sourceTree = "<group>"; };
  57 + 9212DE6031AABB1AB9E0DBCC7C7311A2 /* Pods-DSCommonModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSCommonModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  58 + 94282C7279E407CCA32E2B1C3CF5F802 /* DSCommonModuleF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DSCommonModuleF.xcconfig; sourceTree = "<group>"; };
  59 + 9BC45DBCB47F3B8F8ED6C9486A3D5292 /* Pods-DSCommonModuleF_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSCommonModuleF_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  60 + 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; };
  61 + A894A15F5F9409F27022DAF644201701 /* Pods-DSCommonModuleF_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSCommonModuleF_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  62 + B2CC8A83228243F776A391D2BDA0E319 /* Pods-DSCommonModuleF_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSCommonModuleF_Example.modulemap"; sourceTree = "<group>"; };
  63 + B30D898753D712739394F43A4DABF785 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  64 + B5D5C320CDA90A973D361855E573B798 /* DSCommonModuleF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSCommonModuleF-prefix.pch"; sourceTree = "<group>"; };
  65 + B7869DDA1828E88C972E358C48CA71E9 /* Pods-DSCommonModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSCommonModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  66 + BFF042C9B7E1B6EF670E8AFC720D00A8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  67 + C6F2C235F846866C9AC09CB365EB25BE /* Pods-DSCommonModuleF_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSCommonModuleF_Example-Info.plist"; sourceTree = "<group>"; };
  68 + D2615BFE9F59A4656EEE0D6825607E2F /* ReplaceMe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReplaceMe.m; path = DSCommonModuleF/Classes/ReplaceMe.m; sourceTree = "<group>"; };
  69 + D3CE0A6B05F630B358892A5D2C473685 /* Pods-DSCommonModuleF_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DSCommonModuleF_Example-frameworks.sh"; sourceTree = "<group>"; };
  70 + DE0006CCF84511F8B7A630770D25D7D9 /* Pods-DSCommonModuleF_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSCommonModuleF_Tests-Info.plist"; sourceTree = "<group>"; };
  71 + F74CCA53E732EDE5606A45994B7C27F6 /* Pods-DSCommonModuleF_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSCommonModuleF_Example-dummy.m"; sourceTree = "<group>"; };
  72 +/* End PBXFileReference section */
  73 +
  74 +/* Begin PBXFrameworksBuildPhase section */
  75 + 322E2DF91ADBA676B62AFBE206DFABC1 /* Frameworks */ = {
  76 + isa = PBXFrameworksBuildPhase;
  77 + buildActionMask = 2147483647;
  78 + files = (
  79 + F65C3391E659EACD27ED86454E282B05 /* Foundation.framework in Frameworks */,
  80 + );
  81 + runOnlyForDeploymentPostprocessing = 0;
  82 + };
  83 + 61FFE084CFF7D9AD8AEC360816C755DF /* Frameworks */ = {
  84 + isa = PBXFrameworksBuildPhase;
  85 + buildActionMask = 2147483647;
  86 + files = (
  87 + FE30D8BA2165A628ECDD3B6999141965 /* Foundation.framework in Frameworks */,
  88 + );
  89 + runOnlyForDeploymentPostprocessing = 0;
  90 + };
  91 + D8F38CF2F676A7E67521658C3ABA7E5E /* Frameworks */ = {
  92 + isa = PBXFrameworksBuildPhase;
  93 + buildActionMask = 2147483647;
  94 + files = (
  95 + 03DA2CAC439A60BD9BD4CFE1E1447E43 /* Foundation.framework in Frameworks */,
  96 + );
  97 + runOnlyForDeploymentPostprocessing = 0;
  98 + };
  99 +/* End PBXFrameworksBuildPhase section */
  100 +
  101 +/* Begin PBXGroup section */
  102 + 0B8881DEE2D3886E4B48E8B8786ACDD0 /* Support Files */ = {
  103 + isa = PBXGroup;
  104 + children = (
  105 + 1FAD01C3AC90833DE28AE27F0EC14FE6 /* DSCommonModuleF.modulemap */,
  106 + 94282C7279E407CCA32E2B1C3CF5F802 /* DSCommonModuleF.xcconfig */,
  107 + 5526606CF508BDA8D48DE1335E006D20 /* DSCommonModuleF-dummy.m */,
  108 + 7EED692E0F5EBC131CD48DF94D5D700D /* DSCommonModuleF-Info.plist */,
  109 + B5D5C320CDA90A973D361855E573B798 /* DSCommonModuleF-prefix.pch */,
  110 + 4AC9098B7AD9CB95BC1AC4913015707B /* DSCommonModuleF-umbrella.h */,
  111 + );
  112 + name = "Support Files";
  113 + path = "Example/Pods/Target Support Files/DSCommonModuleF";
  114 + sourceTree = "<group>";
  115 + };
  116 + 219D8A69E9DD644F00FAD69DC43E2E00 /* Targets Support Files */ = {
  117 + isa = PBXGroup;
  118 + children = (
  119 + 92B036A90FDB5EB99B128B2F0F1DD760 /* Pods-DSCommonModuleF_Example */,
  120 + 4FD2E5D4EBA84AC4F936622D58F5767F /* Pods-DSCommonModuleF_Tests */,
  121 + );
  122 + name = "Targets Support Files";
  123 + sourceTree = "<group>";
  124 + };
  125 + 44ACF66C461DE6F0C13907C6751E9616 /* Pod */ = {
  126 + isa = PBXGroup;
  127 + children = (
  128 + 1BF66564D4426CF81924A19A50949C9E /* DSCommonModuleF.podspec */,
  129 + B30D898753D712739394F43A4DABF785 /* LICENSE */,
  130 + BFF042C9B7E1B6EF670E8AFC720D00A8 /* README.md */,
  131 + );
  132 + name = Pod;
  133 + sourceTree = "<group>";
  134 + };
  135 + 4FD2E5D4EBA84AC4F936622D58F5767F /* Pods-DSCommonModuleF_Tests */ = {
  136 + isa = PBXGroup;
  137 + children = (
  138 + 2AC1CDC82E328630CBA83E20B1E97A2B /* Pods-DSCommonModuleF_Tests.modulemap */,
  139 + 24B0FC908791D7C3B35F6005F1693797 /* Pods-DSCommonModuleF_Tests-acknowledgements.markdown */,
  140 + 7B40C191D69D2067A3065736F6415CB0 /* Pods-DSCommonModuleF_Tests-acknowledgements.plist */,
  141 + 2554A19EA6561D7BC3CB3CFAF24047AD /* Pods-DSCommonModuleF_Tests-dummy.m */,
  142 + DE0006CCF84511F8B7A630770D25D7D9 /* Pods-DSCommonModuleF_Tests-Info.plist */,
  143 + 4DED1F400EEF3F5C8235826B16BC821F /* Pods-DSCommonModuleF_Tests-umbrella.h */,
  144 + 15E6063335478FED98C0C7602C4AFD60 /* Pods-DSCommonModuleF_Tests.debug.xcconfig */,
  145 + B7869DDA1828E88C972E358C48CA71E9 /* Pods-DSCommonModuleF_Tests.release.xcconfig */,
  146 + );
  147 + name = "Pods-DSCommonModuleF_Tests";
  148 + path = "Target Support Files/Pods-DSCommonModuleF_Tests";
  149 + sourceTree = "<group>";
  150 + };
  151 + 7FAB1770C6E06521288A2BF372737390 /* Products */ = {
  152 + isa = PBXGroup;
  153 + children = (
  154 + 0D8744B6210E5B12E6CEB7AE19658970 /* DSCommonModuleF.framework */,
  155 + 2549C891FF2A2EA08EE13D647792B3E6 /* Pods_DSCommonModuleF_Example.framework */,
  156 + 335F5B32F68A4B3BB51AEE83CFFF0B9A /* Pods_DSCommonModuleF_Tests.framework */,
  157 + );
  158 + name = Products;
  159 + sourceTree = "<group>";
  160 + };
  161 + 92B036A90FDB5EB99B128B2F0F1DD760 /* Pods-DSCommonModuleF_Example */ = {
  162 + isa = PBXGroup;
  163 + children = (
  164 + B2CC8A83228243F776A391D2BDA0E319 /* Pods-DSCommonModuleF_Example.modulemap */,
  165 + A894A15F5F9409F27022DAF644201701 /* Pods-DSCommonModuleF_Example-acknowledgements.markdown */,
  166 + 9BC45DBCB47F3B8F8ED6C9486A3D5292 /* Pods-DSCommonModuleF_Example-acknowledgements.plist */,
  167 + F74CCA53E732EDE5606A45994B7C27F6 /* Pods-DSCommonModuleF_Example-dummy.m */,
  168 + D3CE0A6B05F630B358892A5D2C473685 /* Pods-DSCommonModuleF_Example-frameworks.sh */,
  169 + C6F2C235F846866C9AC09CB365EB25BE /* Pods-DSCommonModuleF_Example-Info.plist */,
  170 + 41D4D78686CDA682DE7C9BBB3A33C136 /* Pods-DSCommonModuleF_Example-umbrella.h */,
  171 + 9212DE6031AABB1AB9E0DBCC7C7311A2 /* Pods-DSCommonModuleF_Example.debug.xcconfig */,
  172 + 5DFF135678968226F90E6B0EFE19BF35 /* Pods-DSCommonModuleF_Example.release.xcconfig */,
  173 + );
  174 + name = "Pods-DSCommonModuleF_Example";
  175 + path = "Target Support Files/Pods-DSCommonModuleF_Example";
  176 + sourceTree = "<group>";
  177 + };
  178 + C0834CEBB1379A84116EF29F93051C60 /* iOS */ = {
  179 + isa = PBXGroup;
  180 + children = (
  181 + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */,
  182 + );
  183 + name = iOS;
  184 + sourceTree = "<group>";
  185 + };
  186 + CF1408CF629C7361332E53B88F7BD30C = {
  187 + isa = PBXGroup;
  188 + children = (
  189 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  190 + FE840088CB6FB4372418AA44D2B448EB /* Development Pods */,
  191 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
  192 + 7FAB1770C6E06521288A2BF372737390 /* Products */,
  193 + 219D8A69E9DD644F00FAD69DC43E2E00 /* Targets Support Files */,
  194 + );
  195 + sourceTree = "<group>";
  196 + };
  197 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
  198 + isa = PBXGroup;
  199 + children = (
  200 + C0834CEBB1379A84116EF29F93051C60 /* iOS */,
  201 + );
  202 + name = Frameworks;
  203 + sourceTree = "<group>";
  204 + };
  205 + DFE8B907ABC46D97CC38D6CCEDEFB40E /* DSCommonModuleF */ = {
  206 + isa = PBXGroup;
  207 + children = (
  208 + D2615BFE9F59A4656EEE0D6825607E2F /* ReplaceMe.m */,
  209 + 44ACF66C461DE6F0C13907C6751E9616 /* Pod */,
  210 + 0B8881DEE2D3886E4B48E8B8786ACDD0 /* Support Files */,
  211 + );
  212 + name = DSCommonModuleF;
  213 + path = ../..;
  214 + sourceTree = "<group>";
  215 + };
  216 + FE840088CB6FB4372418AA44D2B448EB /* Development Pods */ = {
  217 + isa = PBXGroup;
  218 + children = (
  219 + DFE8B907ABC46D97CC38D6CCEDEFB40E /* DSCommonModuleF */,
  220 + );
  221 + name = "Development Pods";
  222 + sourceTree = "<group>";
  223 + };
  224 +/* End PBXGroup section */
  225 +
  226 +/* Begin PBXHeadersBuildPhase section */
  227 + 6D8EF0798D2D6A3D57230CAE6BCD5C9D /* Headers */ = {
  228 + isa = PBXHeadersBuildPhase;
  229 + buildActionMask = 2147483647;
  230 + files = (
  231 + F7141849FDD4AB476B29454568B0A6D6 /* Pods-DSCommonModuleF_Example-umbrella.h in Headers */,
  232 + );
  233 + runOnlyForDeploymentPostprocessing = 0;
  234 + };
  235 + B070835B8892FDB0D04A6552B7FD8CBE /* Headers */ = {
  236 + isa = PBXHeadersBuildPhase;
  237 + buildActionMask = 2147483647;
  238 + files = (
  239 + 2A9A5E7D1DF91613ABEF90003DEFA468 /* DSCommonModuleF-umbrella.h in Headers */,
  240 + );
  241 + runOnlyForDeploymentPostprocessing = 0;
  242 + };
  243 + F3A87CA441E0339E867CEA33CD42F724 /* Headers */ = {
  244 + isa = PBXHeadersBuildPhase;
  245 + buildActionMask = 2147483647;
  246 + files = (
  247 + DCC27173D1BE11833745A8A9C488C7F1 /* Pods-DSCommonModuleF_Tests-umbrella.h in Headers */,
  248 + );
  249 + runOnlyForDeploymentPostprocessing = 0;
  250 + };
  251 +/* End PBXHeadersBuildPhase section */
  252 +
  253 +/* Begin PBXNativeTarget section */
  254 + 210C9895422E0C087B324B5FD70145B3 /* DSCommonModuleF */ = {
  255 + isa = PBXNativeTarget;
  256 + buildConfigurationList = D3C0CD0A7A27799C88450409645114F9 /* Build configuration list for PBXNativeTarget "DSCommonModuleF" */;
  257 + buildPhases = (
  258 + B070835B8892FDB0D04A6552B7FD8CBE /* Headers */,
  259 + 0CC5F96BD7B75CA67CDEA2D5F8E2C8F1 /* Sources */,
  260 + 61FFE084CFF7D9AD8AEC360816C755DF /* Frameworks */,
  261 + 4CFFD561C764702CD85810718211BABA /* Resources */,
  262 + );
  263 + buildRules = (
  264 + );
  265 + dependencies = (
  266 + );
  267 + name = DSCommonModuleF;
  268 + productName = DSCommonModuleF;
  269 + productReference = 0D8744B6210E5B12E6CEB7AE19658970 /* DSCommonModuleF.framework */;
  270 + productType = "com.apple.product-type.framework";
  271 + };
  272 + C75180B40C0CEAD504ACF664F1B66516 /* Pods-DSCommonModuleF_Tests */ = {
  273 + isa = PBXNativeTarget;
  274 + buildConfigurationList = D8623BA8AAC84B49BF4F73A13FA0A369 /* Build configuration list for PBXNativeTarget "Pods-DSCommonModuleF_Tests" */;
  275 + buildPhases = (
  276 + F3A87CA441E0339E867CEA33CD42F724 /* Headers */,
  277 + 101D306FFA4420E34DC1D0990DE4FEBD /* Sources */,
  278 + D8F38CF2F676A7E67521658C3ABA7E5E /* Frameworks */,
  279 + 578BCCBE8E99E803962CD2ABD04E00BC /* Resources */,
  280 + );
  281 + buildRules = (
  282 + );
  283 + dependencies = (
  284 + 334A2494900347D5A65661AF743248DF /* PBXTargetDependency */,
  285 + );
  286 + name = "Pods-DSCommonModuleF_Tests";
  287 + productName = "Pods-DSCommonModuleF_Tests";
  288 + productReference = 335F5B32F68A4B3BB51AEE83CFFF0B9A /* Pods_DSCommonModuleF_Tests.framework */;
  289 + productType = "com.apple.product-type.framework";
  290 + };
  291 + EDDFF858EA92A2A049EB58DD3ED462A5 /* Pods-DSCommonModuleF_Example */ = {
  292 + isa = PBXNativeTarget;
  293 + buildConfigurationList = F9D3DB6D1E465B32A1027D0B74C10230 /* Build configuration list for PBXNativeTarget "Pods-DSCommonModuleF_Example" */;
  294 + buildPhases = (
  295 + 6D8EF0798D2D6A3D57230CAE6BCD5C9D /* Headers */,
  296 + 6957781FD811031E76A1B9E142DD5EEB /* Sources */,
  297 + 322E2DF91ADBA676B62AFBE206DFABC1 /* Frameworks */,
  298 + F37B645172246F2BA98E425C53DFE482 /* Resources */,
  299 + );
  300 + buildRules = (
  301 + );
  302 + dependencies = (
  303 + CE0BED387BB68537F6F0D7D3CC654DD7 /* PBXTargetDependency */,
  304 + );
  305 + name = "Pods-DSCommonModuleF_Example";
  306 + productName = "Pods-DSCommonModuleF_Example";
  307 + productReference = 2549C891FF2A2EA08EE13D647792B3E6 /* Pods_DSCommonModuleF_Example.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 = 7FAB1770C6E06521288A2BF372737390 /* Products */;
  329 + projectDirPath = "";
  330 + projectRoot = "";
  331 + targets = (
  332 + 210C9895422E0C087B324B5FD70145B3 /* DSCommonModuleF */,
  333 + EDDFF858EA92A2A049EB58DD3ED462A5 /* Pods-DSCommonModuleF_Example */,
  334 + C75180B40C0CEAD504ACF664F1B66516 /* Pods-DSCommonModuleF_Tests */,
  335 + );
  336 + };
  337 +/* End PBXProject section */
  338 +
  339 +/* Begin PBXResourcesBuildPhase section */
  340 + 4CFFD561C764702CD85810718211BABA /* Resources */ = {
  341 + isa = PBXResourcesBuildPhase;
  342 + buildActionMask = 2147483647;
  343 + files = (
  344 + );
  345 + runOnlyForDeploymentPostprocessing = 0;
  346 + };
  347 + 578BCCBE8E99E803962CD2ABD04E00BC /* Resources */ = {
  348 + isa = PBXResourcesBuildPhase;
  349 + buildActionMask = 2147483647;
  350 + files = (
  351 + );
  352 + runOnlyForDeploymentPostprocessing = 0;
  353 + };
  354 + F37B645172246F2BA98E425C53DFE482 /* Resources */ = {
  355 + isa = PBXResourcesBuildPhase;
  356 + buildActionMask = 2147483647;
  357 + files = (
  358 + );
  359 + runOnlyForDeploymentPostprocessing = 0;
  360 + };
  361 +/* End PBXResourcesBuildPhase section */
  362 +
  363 +/* Begin PBXSourcesBuildPhase section */
  364 + 0CC5F96BD7B75CA67CDEA2D5F8E2C8F1 /* Sources */ = {
  365 + isa = PBXSourcesBuildPhase;
  366 + buildActionMask = 2147483647;
  367 + files = (
  368 + 8E9B3E2C52DF9C485D10EE8E86DC7CB8 /* DSCommonModuleF-dummy.m in Sources */,
  369 + 7256B5E4A65A1A4294A32819638A0109 /* ReplaceMe.m in Sources */,
  370 + );
  371 + runOnlyForDeploymentPostprocessing = 0;
  372 + };
  373 + 101D306FFA4420E34DC1D0990DE4FEBD /* Sources */ = {
  374 + isa = PBXSourcesBuildPhase;
  375 + buildActionMask = 2147483647;
  376 + files = (
  377 + FABCDCBCAC24E4B50EB27D21B86E0E58 /* Pods-DSCommonModuleF_Tests-dummy.m in Sources */,
  378 + );
  379 + runOnlyForDeploymentPostprocessing = 0;
  380 + };
  381 + 6957781FD811031E76A1B9E142DD5EEB /* Sources */ = {
  382 + isa = PBXSourcesBuildPhase;
  383 + buildActionMask = 2147483647;
  384 + files = (
  385 + 94220F4EFBF5AB4E2C7C3BD80D2C5912 /* Pods-DSCommonModuleF_Example-dummy.m in Sources */,
  386 + );
  387 + runOnlyForDeploymentPostprocessing = 0;
  388 + };
  389 +/* End PBXSourcesBuildPhase section */
  390 +
  391 +/* Begin PBXTargetDependency section */
  392 + 334A2494900347D5A65661AF743248DF /* PBXTargetDependency */ = {
  393 + isa = PBXTargetDependency;
  394 + name = "Pods-DSCommonModuleF_Example";
  395 + target = EDDFF858EA92A2A049EB58DD3ED462A5 /* Pods-DSCommonModuleF_Example */;
  396 + targetProxy = 3D333588C7FE9C27DD067CFE85AD6C05 /* PBXContainerItemProxy */;
  397 + };
  398 + CE0BED387BB68537F6F0D7D3CC654DD7 /* PBXTargetDependency */ = {
  399 + isa = PBXTargetDependency;
  400 + name = DSCommonModuleF;
  401 + target = 210C9895422E0C087B324B5FD70145B3 /* DSCommonModuleF */;
  402 + targetProxy = 6A92D9AB1317259B5411C8B4CAD2BE07 /* PBXContainerItemProxy */;
  403 + };
  404 +/* End PBXTargetDependency section */
  405 +
  406 +/* Begin XCBuildConfiguration section */
  407 + 019CDABE775BCC878A38AD8617072A65 /* Release */ = {
  408 + isa = XCBuildConfiguration;
  409 + baseConfigurationReference = B7869DDA1828E88C972E358C48CA71E9 /* Pods-DSCommonModuleF_Tests.release.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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.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 + VALIDATE_PRODUCT = YES;
  436 + VERSIONING_SYSTEM = "apple-generic";
  437 + VERSION_INFO_PREFIX = "";
  438 + };
  439 + name = Release;
  440 + };
  441 + 3D8F325BAA25EF1D3D85A3994AF2FBC6 /* Release */ = {
  442 + isa = XCBuildConfiguration;
  443 + baseConfigurationReference = 5DFF135678968226F90E6B0EFE19BF35 /* Pods-DSCommonModuleF_Example.release.xcconfig */;
  444 + buildSettings = {
  445 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  446 + CODE_SIGN_IDENTITY = "";
  447 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  448 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  449 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  450 + CURRENT_PROJECT_VERSION = 1;
  451 + DEFINES_MODULE = YES;
  452 + DYLIB_COMPATIBILITY_VERSION = 1;
  453 + DYLIB_CURRENT_VERSION = 1;
  454 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  455 + INFOPLIST_FILE = "Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-Info.plist";
  456 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  457 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  458 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  459 + MACH_O_TYPE = staticlib;
  460 + MODULEMAP_FILE = "Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.modulemap";
  461 + OTHER_LDFLAGS = "";
  462 + OTHER_LIBTOOLFLAGS = "";
  463 + PODS_ROOT = "$(SRCROOT)";
  464 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  465 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  466 + SDKROOT = iphoneos;
  467 + SKIP_INSTALL = YES;
  468 + TARGETED_DEVICE_FAMILY = "1,2";
  469 + VALIDATE_PRODUCT = YES;
  470 + VERSIONING_SYSTEM = "apple-generic";
  471 + VERSION_INFO_PREFIX = "";
  472 + };
  473 + name = Release;
  474 + };
  475 + 43B988D897917D81C68C3790FCB9E90B /* Debug */ = {
  476 + isa = XCBuildConfiguration;
  477 + baseConfigurationReference = 9212DE6031AABB1AB9E0DBCC7C7311A2 /* Pods-DSCommonModuleF_Example.debug.xcconfig */;
  478 + buildSettings = {
  479 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  480 + CODE_SIGN_IDENTITY = "";
  481 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  482 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  483 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  484 + CURRENT_PROJECT_VERSION = 1;
  485 + DEFINES_MODULE = YES;
  486 + DYLIB_COMPATIBILITY_VERSION = 1;
  487 + DYLIB_CURRENT_VERSION = 1;
  488 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  489 + INFOPLIST_FILE = "Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-Info.plist";
  490 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  491 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  492 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  493 + MACH_O_TYPE = staticlib;
  494 + MODULEMAP_FILE = "Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.modulemap";
  495 + OTHER_LDFLAGS = "";
  496 + OTHER_LIBTOOLFLAGS = "";
  497 + PODS_ROOT = "$(SRCROOT)";
  498 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  499 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  500 + SDKROOT = iphoneos;
  501 + SKIP_INSTALL = YES;
  502 + TARGETED_DEVICE_FAMILY = "1,2";
  503 + VERSIONING_SYSTEM = "apple-generic";
  504 + VERSION_INFO_PREFIX = "";
  505 + };
  506 + name = Debug;
  507 + };
  508 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = {
  509 + isa = XCBuildConfiguration;
  510 + buildSettings = {
  511 + ALWAYS_SEARCH_USER_PATHS = NO;
  512 + CLANG_ANALYZER_NONNULL = YES;
  513 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  514 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  515 + CLANG_CXX_LIBRARY = "libc++";
  516 + CLANG_ENABLE_MODULES = YES;
  517 + CLANG_ENABLE_OBJC_ARC = YES;
  518 + CLANG_ENABLE_OBJC_WEAK = YES;
  519 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  520 + CLANG_WARN_BOOL_CONVERSION = YES;
  521 + CLANG_WARN_COMMA = YES;
  522 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  523 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  524 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  525 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  526 + CLANG_WARN_EMPTY_BODY = YES;
  527 + CLANG_WARN_ENUM_CONVERSION = YES;
  528 + CLANG_WARN_INFINITE_RECURSION = YES;
  529 + CLANG_WARN_INT_CONVERSION = YES;
  530 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  531 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  532 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  533 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  534 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  535 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  536 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  537 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  538 + CLANG_WARN_UNREACHABLE_CODE = YES;
  539 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  540 + COPY_PHASE_STRIP = NO;
  541 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  542 + ENABLE_NS_ASSERTIONS = NO;
  543 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  544 + GCC_C_LANGUAGE_STANDARD = gnu11;
  545 + GCC_NO_COMMON_BLOCKS = YES;
  546 + GCC_PREPROCESSOR_DEFINITIONS = (
  547 + "POD_CONFIGURATION_RELEASE=1",
  548 + "$(inherited)",
  549 + );
  550 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  551 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  552 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  553 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  554 + GCC_WARN_UNUSED_FUNCTION = YES;
  555 + GCC_WARN_UNUSED_VARIABLE = YES;
  556 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  557 + MTL_ENABLE_DEBUG_INFO = NO;
  558 + MTL_FAST_MATH = YES;
  559 + PRODUCT_NAME = "$(TARGET_NAME)";
  560 + STRIP_INSTALLED_PRODUCT = NO;
  561 + SWIFT_COMPILATION_MODE = wholemodule;
  562 + SWIFT_OPTIMIZATION_LEVEL = "-O";
  563 + SWIFT_VERSION = 5.0;
  564 + SYMROOT = "${SRCROOT}/../build";
  565 + };
  566 + name = Release;
  567 + };
  568 + 53D9EE36F595FB71BF02BF378DB416B5 /* Release */ = {
  569 + isa = XCBuildConfiguration;
  570 + baseConfigurationReference = 94282C7279E407CCA32E2B1C3CF5F802 /* DSCommonModuleF.xcconfig */;
  571 + buildSettings = {
  572 + CODE_SIGN_IDENTITY = "";
  573 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  574 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  575 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  576 + CURRENT_PROJECT_VERSION = 1;
  577 + DEFINES_MODULE = YES;
  578 + DYLIB_COMPATIBILITY_VERSION = 1;
  579 + DYLIB_CURRENT_VERSION = 1;
  580 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  581 + GCC_PREFIX_HEADER = "Target Support Files/DSCommonModuleF/DSCommonModuleF-prefix.pch";
  582 + INFOPLIST_FILE = "Target Support Files/DSCommonModuleF/DSCommonModuleF-Info.plist";
  583 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  584 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  585 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  586 + MODULEMAP_FILE = "Target Support Files/DSCommonModuleF/DSCommonModuleF.modulemap";
  587 + PRODUCT_MODULE_NAME = DSCommonModuleF;
  588 + PRODUCT_NAME = DSCommonModuleF;
  589 + SDKROOT = iphoneos;
  590 + SKIP_INSTALL = YES;
  591 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  592 + SWIFT_VERSION = 4.0;
  593 + TARGETED_DEVICE_FAMILY = "1,2";
  594 + VALIDATE_PRODUCT = YES;
  595 + VERSIONING_SYSTEM = "apple-generic";
  596 + VERSION_INFO_PREFIX = "";
  597 + };
  598 + name = Release;
  599 + };
  600 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = {
  601 + isa = XCBuildConfiguration;
  602 + buildSettings = {
  603 + ALWAYS_SEARCH_USER_PATHS = NO;
  604 + CLANG_ANALYZER_NONNULL = YES;
  605 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  606 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  607 + CLANG_CXX_LIBRARY = "libc++";
  608 + CLANG_ENABLE_MODULES = YES;
  609 + CLANG_ENABLE_OBJC_ARC = YES;
  610 + CLANG_ENABLE_OBJC_WEAK = YES;
  611 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  612 + CLANG_WARN_BOOL_CONVERSION = YES;
  613 + CLANG_WARN_COMMA = YES;
  614 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  615 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  616 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  617 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  618 + CLANG_WARN_EMPTY_BODY = YES;
  619 + CLANG_WARN_ENUM_CONVERSION = YES;
  620 + CLANG_WARN_INFINITE_RECURSION = YES;
  621 + CLANG_WARN_INT_CONVERSION = YES;
  622 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  623 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  624 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  625 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  626 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  627 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  628 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  629 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  630 + CLANG_WARN_UNREACHABLE_CODE = YES;
  631 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  632 + COPY_PHASE_STRIP = NO;
  633 + DEBUG_INFORMATION_FORMAT = dwarf;
  634 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  635 + ENABLE_TESTABILITY = YES;
  636 + GCC_C_LANGUAGE_STANDARD = gnu11;
  637 + GCC_DYNAMIC_NO_PIC = NO;
  638 + GCC_NO_COMMON_BLOCKS = YES;
  639 + GCC_OPTIMIZATION_LEVEL = 0;
  640 + GCC_PREPROCESSOR_DEFINITIONS = (
  641 + "POD_CONFIGURATION_DEBUG=1",
  642 + "DEBUG=1",
  643 + "$(inherited)",
  644 + );
  645 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  646 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  647 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  648 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  649 + GCC_WARN_UNUSED_FUNCTION = YES;
  650 + GCC_WARN_UNUSED_VARIABLE = YES;
  651 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  652 + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  653 + MTL_FAST_MATH = YES;
  654 + ONLY_ACTIVE_ARCH = YES;
  655 + PRODUCT_NAME = "$(TARGET_NAME)";
  656 + STRIP_INSTALLED_PRODUCT = NO;
  657 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  658 + SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  659 + SWIFT_VERSION = 5.0;
  660 + SYMROOT = "${SRCROOT}/../build";
  661 + };
  662 + name = Debug;
  663 + };
  664 + B2A43A7CDAC66A77B288D254EFBBDDD3 /* Debug */ = {
  665 + isa = XCBuildConfiguration;
  666 + baseConfigurationReference = 15E6063335478FED98C0C7602C4AFD60 /* Pods-DSCommonModuleF_Tests.debug.xcconfig */;
  667 + buildSettings = {
  668 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  669 + CODE_SIGN_IDENTITY = "";
  670 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  671 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  672 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  673 + CURRENT_PROJECT_VERSION = 1;
  674 + DEFINES_MODULE = YES;
  675 + DYLIB_COMPATIBILITY_VERSION = 1;
  676 + DYLIB_CURRENT_VERSION = 1;
  677 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  678 + INFOPLIST_FILE = "Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-Info.plist";
  679 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  680 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  681 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  682 + MACH_O_TYPE = staticlib;
  683 + MODULEMAP_FILE = "Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.modulemap";
  684 + OTHER_LDFLAGS = "";
  685 + OTHER_LIBTOOLFLAGS = "";
  686 + PODS_ROOT = "$(SRCROOT)";
  687 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  688 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  689 + SDKROOT = iphoneos;
  690 + SKIP_INSTALL = YES;
  691 + TARGETED_DEVICE_FAMILY = "1,2";
  692 + VERSIONING_SYSTEM = "apple-generic";
  693 + VERSION_INFO_PREFIX = "";
  694 + };
  695 + name = Debug;
  696 + };
  697 + E789571755BDA6137CF2D2CFB1FCEE16 /* Debug */ = {
  698 + isa = XCBuildConfiguration;
  699 + baseConfigurationReference = 94282C7279E407CCA32E2B1C3CF5F802 /* DSCommonModuleF.xcconfig */;
  700 + buildSettings = {
  701 + CODE_SIGN_IDENTITY = "";
  702 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  703 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  704 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  705 + CURRENT_PROJECT_VERSION = 1;
  706 + DEFINES_MODULE = YES;
  707 + DYLIB_COMPATIBILITY_VERSION = 1;
  708 + DYLIB_CURRENT_VERSION = 1;
  709 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  710 + GCC_PREFIX_HEADER = "Target Support Files/DSCommonModuleF/DSCommonModuleF-prefix.pch";
  711 + INFOPLIST_FILE = "Target Support Files/DSCommonModuleF/DSCommonModuleF-Info.plist";
  712 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  713 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  714 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  715 + MODULEMAP_FILE = "Target Support Files/DSCommonModuleF/DSCommonModuleF.modulemap";
  716 + PRODUCT_MODULE_NAME = DSCommonModuleF;
  717 + PRODUCT_NAME = DSCommonModuleF;
  718 + SDKROOT = iphoneos;
  719 + SKIP_INSTALL = YES;
  720 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  721 + SWIFT_VERSION = 4.0;
  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 + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  732 + isa = XCConfigurationList;
  733 + buildConfigurations = (
  734 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */,
  735 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */,
  736 + );
  737 + defaultConfigurationIsVisible = 0;
  738 + defaultConfigurationName = Release;
  739 + };
  740 + D3C0CD0A7A27799C88450409645114F9 /* Build configuration list for PBXNativeTarget "DSCommonModuleF" */ = {
  741 + isa = XCConfigurationList;
  742 + buildConfigurations = (
  743 + E789571755BDA6137CF2D2CFB1FCEE16 /* Debug */,
  744 + 53D9EE36F595FB71BF02BF378DB416B5 /* Release */,
  745 + );
  746 + defaultConfigurationIsVisible = 0;
  747 + defaultConfigurationName = Release;
  748 + };
  749 + D8623BA8AAC84B49BF4F73A13FA0A369 /* Build configuration list for PBXNativeTarget "Pods-DSCommonModuleF_Tests" */ = {
  750 + isa = XCConfigurationList;
  751 + buildConfigurations = (
  752 + B2A43A7CDAC66A77B288D254EFBBDDD3 /* Debug */,
  753 + 019CDABE775BCC878A38AD8617072A65 /* Release */,
  754 + );
  755 + defaultConfigurationIsVisible = 0;
  756 + defaultConfigurationName = Release;
  757 + };
  758 + F9D3DB6D1E465B32A1027D0B74C10230 /* Build configuration list for PBXNativeTarget "Pods-DSCommonModuleF_Example" */ = {
  759 + isa = XCConfigurationList;
  760 + buildConfigurations = (
  761 + 43B988D897917D81C68C3790FCB9E90B /* Debug */,
  762 + 3D8F325BAA25EF1D3D85A3994AF2FBC6 /* 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/DSCommonModuleF.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSCommonModuleF.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 = "210C9895422E0C087B324B5FD70145B3"
  18 + BuildableName = "DSCommonModuleF.framework"
  19 + BlueprintName = "DSCommonModuleF"
  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-DSCommonModuleF_Example.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSCommonModuleF_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 = "EDDFF858EA92A2A049EB58DD3ED462A5"
  18 + BuildableName = "Pods_DSCommonModuleF_Example.framework"
  19 + BlueprintName = "Pods-DSCommonModuleF_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-DSCommonModuleF_Tests.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSCommonModuleF_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 = "C75180B40C0CEAD504ACF664F1B66516"
  18 + BuildableName = "Pods_DSCommonModuleF_Tests.framework"
  19 + BlueprintName = "Pods-DSCommonModuleF_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>DSCommonModuleF.xcscheme</key>
  8 + <dict>
  9 + <key>isShown</key>
  10 + <false/>
  11 + </dict>
  12 + <key>Pods-DSCommonModuleF_Example.xcscheme</key>
  13 + <dict>
  14 + <key>isShown</key>
  15 + <false/>
  16 + </dict>
  17 + <key>Pods-DSCommonModuleF_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/DSCommonModuleF/DSCommonModuleF-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF-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/DSCommonModuleF/DSCommonModuleF-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_DSCommonModuleF : NSObject
  3 +@end
  4 +@implementation PodsDummy_DSCommonModuleF
  5 +@end
... ...
Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF-prefix.pch 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF-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/DSCommonModuleF/DSCommonModuleF-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF-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 DSCommonModuleFVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char DSCommonModuleFVersionString[];
  16 +
... ...
Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF.modulemap
  1 +framework module DSCommonModuleF {
  2 + umbrella header "DSCommonModuleF-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSCommonModuleF/DSCommonModuleF.xcconfig
  1 +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF
  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-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_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-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +
  4 +## DSCommonModuleF
  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-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_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>DSCommonModuleF</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-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSCommonModuleF_Example : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSCommonModuleF_Example
  5 +@end
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-frameworks.sh 0 → 100755
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_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}/DSCommonModuleF/DSCommonModuleF.framework"
  165 +fi
  166 +if [[ "$CONFIGURATION" == "Release" ]]; then
  167 + install_framework "${BUILT_PRODUCTS_DIR}/DSCommonModuleF/DSCommonModuleF.framework"
  168 +fi
  169 +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
  170 + wait
  171 +fi
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_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_DSCommonModuleF_ExampleVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSCommonModuleF_ExampleVersionString[];
  16 +
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF/DSCommonModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSCommonModuleF"
  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-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.modulemap
  1 +framework module Pods_DSCommonModuleF_Example {
  2 + umbrella header "Pods-DSCommonModuleF_Example-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Example/Pods-DSCommonModuleF_Example.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF/DSCommonModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSCommonModuleF"
  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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSCommonModuleF_Tests : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSCommonModuleF_Tests
  5 +@end
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_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_DSCommonModuleF_TestsVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSCommonModuleF_TestsVersionString[];
  16 +
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF/DSCommonModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSCommonModuleF"
  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-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.modulemap
  1 +framework module Pods_DSCommonModuleF_Tests {
  2 + umbrella header "Pods-DSCommonModuleF_Tests-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSCommonModuleF_Tests/Pods-DSCommonModuleF_Tests.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSCommonModuleF/DSCommonModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSCommonModuleF"
  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 +// DSCommonModuleFTests.m
  3 +// DSCommonModuleFTests
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/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 +# DSCommonModuleF
  2 +
  3 +[![CI Status](https://img.shields.io/travis/694092596@qq.com/DSCommonModuleF.svg?style=flat)](https://travis-ci.org/694092596@qq.com/DSCommonModuleF)
  4 +[![Version](https://img.shields.io/cocoapods/v/DSCommonModuleF.svg?style=flat)](https://cocoapods.org/pods/DSCommonModuleF)
  5 +[![License](https://img.shields.io/cocoapods/l/DSCommonModuleF.svg?style=flat)](https://cocoapods.org/pods/DSCommonModuleF)
  6 +[![Platform](https://img.shields.io/cocoapods/p/DSCommonModuleF.svg?style=flat)](https://cocoapods.org/pods/DSCommonModuleF)
  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 +DSCommonModuleF is available through [CocoaPods](https://cocoapods.org). To install
  17 +it, simply add the following line to your Podfile:
  18 +
  19 +```ruby
  20 +pod 'DSCommonModuleF'
  21 +```
  22 +
  23 +## Author
  24 +
  25 +694092596@qq.com, 694092596@qq.com
  26 +
  27 +## License
  28 +
  29 +DSCommonModuleF 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 2 \ No newline at end of file
... ...