Commit 2910abf7df5134c293c982093501a8127bf20700

Authored by 毕珂
0 parents

0.0.5

Showing 74 changed files with 3750 additions and 0 deletions
DSExtensionModuleF.podspec 0 → 100644
  1 +++ a/DSExtensionModuleF.podspec
  1 +Pod::Spec.new do |s|
  2 +
  3 + s.name = "DSExtensionModuleF"
  4 + s.version = "0.0.5"
  5 + s.summary = "DSExtensionModuleF"
  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/DSExtensionModuleF.git', :tag => s.version.to_s }
  10 + s.ios.deployment_target = '9.0'
  11 + s.vendored_frameworks = "DSExtensionModuleF/Frameworks/DSExtensionModule.framework"
  12 + s.frameworks = 'Foundation', 'UIKit', 'CoreText', 'MapKit'
  13 + s.dependency 'MJRefresh', '3.2.0'
  14 + s.dependency 'MBProgressHUD', '1.1.0'
  15 + s.dependency 'DSGTMBase64'
  16 + if ENV['ds']
  17 + s.dependency 'DSBaseModule'
  18 + else
  19 + s.dependency 'DSBaseModuleF'
  20 + end
  21 +
  22 +end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/DSExtensionModule 0 → 100755
No preview for this file type
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/DSExtensionModule-umbrella.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/DSExtensionModule-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 "DSExtensionModuleHeader.h"
  14 +#import "MKMapView+DSEMExtension.h"
  15 +#import "NSAttributedString+DSEMExtension.h"
  16 +#import "NSDate+DSEMExtension.h"
  17 +#import "NSObject+DSEMExtension.h"
  18 +#import "NSString+DSEMExtension.h"
  19 +#import "NSUserDefaults+DSEMExtension.h"
  20 +#import "UIColor+DSEMExtension.h"
  21 +#import "UIImage+DSEMExtension.h"
  22 +#import "UIImageView+DSEMExtension.h"
  23 +#import "UILabel+DSEMExtension.h"
  24 +#import "UIScrollView+DSEMExtension.h"
  25 +#import "UITextField+DSEMExtension.h"
  26 +#import "UIView+DSEMExtension.h"
  27 +
  28 +FOUNDATION_EXPORT double DSExtensionModuleVersionNumber;
  29 +FOUNDATION_EXPORT const unsigned char DSExtensionModuleVersionString[];
  30 +
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/DSExtensionModuleHeader.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/DSExtensionModuleHeader.h
  1 +//
  2 +// DSExtensionModuleHeader.h
  3 +// DSExtensionModule
  4 +//
  5 +// Created by zhaolin on 2020/1/16.
  6 +// Copyright © 2020 CNLive. All rights reserved.
  7 +//
  8 +
  9 +#ifndef DSExtensionModuleHeader_h
  10 +#define DSExtensionModuleHeader_h
  11 +
  12 +#import "NSObject+DSEMExtension.h"
  13 +#import "NSDate+DSEMExtension.h"
  14 +#import "NSUserDefaults+DSEMExtension.h"
  15 +#import "UIView+DSEMExtension.h"
  16 +#import "NSString+DSEMExtension.h"
  17 +#import "UIImageView+DSEMExtension.h"
  18 +#import "UIImage+DSEMExtension.h"
  19 +#import "UILabel+DSEMExtension.h"
  20 +#import "NSAttributedString+DSEMExtension.h"
  21 +#import "UITextField+DSEMExtension.h"
  22 +#import "UIScrollView+DSEMExtension.h"
  23 +#import "UIColor+DSEMExtension.h"
  24 +#import "MKMapView+DSEMExtension.h"
  25 +
  26 +#endif /* DSExtensionModuleHeader_h */
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/MKMapView+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/MKMapView+DSEMExtension.h
  1 +//
  2 +// MKMapView+DSEMExtension.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/2/18.
  6 +//
  7 +
  8 +#import <MapKit/MapKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface MKMapView (DSEMExtension)
  13 +
  14 +/**
  15 + 设置中心
  16 +
  17 + @param centerCoordinate 中心
  18 + @param zoomLevel 缩放级别
  19 + @param animated 是否动画
  20 + */
  21 +-(void)setCenterCoordinate:(CLLocationCoordinate2D)centerCoordinate zoomLevel:(NSUInteger)zoomLevel animated:(BOOL)animated;
  22 +
  23 +@end
  24 +
  25 +NS_ASSUME_NONNULL_END
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSAttributedString+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSAttributedString+DSEMExtension.h
  1 +//
  2 +// NSAttributedString+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/10/8.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface NSAttributedString (DSEMExtension)
  14 +
  15 +#pragma mark - 计算文本大小
  16 +
  17 +/**
  18 + 计算文本高度(固定宽)
  19 +
  20 + @param width 固定宽度
  21 + @return 文本大小
  22 + */
  23 +-(CGFloat)calculateHeightWithUIWidth:(CGFloat)width;
  24 +
  25 +/**
  26 + 计算文本宽度(固定高)
  27 +
  28 + @param height 固定高度
  29 + @return 文本大小
  30 + */
  31 +-(CGFloat)calculateWidthWithUIHeight:(CGFloat)height;
  32 +
  33 +@end
  34 +
  35 +NS_ASSUME_NONNULL_END
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSDate+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSDate+DSEMExtension.h
  1 +//
  2 +// NSDate+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/5.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +typedef NS_ENUM(NSUInteger, DSDateFormat) {
  12 + DSDateFormatYYYY_MM_dd_HH_mm_ss = 0, //YYYY-MM-dd HH:mm:ss
  13 + DSDateFormatYYYY_MM_dd_HH_mm, //YYYY-MM-dd HH:mm
  14 + DSDateFormatYYYY_MM_dd_HH, //YYYY-MM-dd HH
  15 + DSDateFormatYYYY_MM_dd, //YYYY-MM-dd
  16 + DSDateFormatYYYY_MM_HH_mm_ss, //YYYY-MM HH:mm:ss
  17 + DSDateFormatYYYY_MM_HH_mm, //YYYY-MM HH:mm
  18 + DSDateFormatYYYY_MM_HH, //YYYY-MM HH
  19 + DSDateFormatYYYY_MM, //YYYY-MM
  20 + DSDateFormatYYYY, //YYYY
  21 + DSDateFormatMM_dd_HH_mm_ss, //MM-dd HH:mm:ss
  22 + DSDateFormatMM_dd_HH_mm, //MM-dd HH:mm
  23 + DSDateFormatMM_dd_HH, //MM-dd HH
  24 + DSDateFormatMM_dd, //MM-dd
  25 + DSDateFormatMM, //MM
  26 + DSDateFormatdd_HH_mm_ss, //dd HH:mm:ss
  27 + DSDateFormatdd_HH_mm, //dd HH:mm
  28 + DSDateFormatdd_HH, //dd HH
  29 + DSDateFormatdd, //dd
  30 + DSDateFormatHH_mm_ss, //HH:mm:ss
  31 + DSDateFormatHH_mm, //HH:mm
  32 + DSDateFormatHH, //HH
  33 + DSDateFormatmm_ss, //mm:ss
  34 + DSDateFormatmm, //mm
  35 + DSDateFormatss, //ss
  36 +};
  37 +
  38 +@interface NSDate (DSEMExtension)
  39 +
  40 +#pragma mark - 时间转换 Format形式
  41 +
  42 +/**
  43 + 时间转换
  44 +
  45 + @param format 转换形式
  46 + @return 转换结果
  47 + */
  48 +-(NSString*)transformStringWithFormat:(DSDateFormat)format;
  49 +
  50 +/**
  51 + 时间转换
  52 +
  53 + @param format 自定义转换形式
  54 + @return 转换结果
  55 + */
  56 +-(NSString*)transformStringWithCustomFormat:(NSString*)format;
  57 +
  58 +#pragma mark - 获取下一天
  59 +
  60 +/**
  61 + 获取下一天
  62 +
  63 + @return 下一天
  64 + */
  65 +-(NSDate*)getNextDayDate;
  66 +
  67 +#pragma mark - 时间相差
  68 +
  69 +/**
  70 + * 是否为同一天
  71 + */
  72 +- (BOOL)isSameDay:(NSDate*)date;
  73 +
  74 +/**
  75 + * 是否相差一天
  76 + */
  77 +- (BOOL)isSpacingOneDay:(NSDate*)date;
  78 +
  79 +/**
  80 + * 是否相差两天
  81 + */
  82 +- (BOOL)isSpacingTwoDay:(NSDate*)date;
  83 +
  84 +/**
  85 + 相差几天
  86 +
  87 + @param date 相比时间
  88 + @return 时间相差几天
  89 + */
  90 +-(NSInteger)compareToDateForSpaceDay:(NSDate*)date;
  91 +
  92 +#pragma mark - 日历
  93 +
  94 +/**
  95 + 获取当前日期为星期几
  96 +
  97 + @return 0是星期天 1是星期一 2是星期二 3是星期三 4是星期四 5是星期五 6是星期六
  98 + */
  99 +-(NSUInteger)getWeekNumber;
  100 +
  101 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSObject+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSObject+DSEMExtension.h
  1 +//
  2 +// NSObject+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/5.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +
  12 +@interface NSObject (DSEMExtension)
  13 +
  14 +#pragma mark - Tag
  15 +
  16 +/**
  17 + 字典Tag
  18 + */
  19 +@property (nonatomic,copy) NSDictionary * dicTag;
  20 +
  21 +/**
  22 + 字符串Tag
  23 + */
  24 +@property (nonatomic,copy) NSString * strTag;
  25 +
  26 +#pragma mark - 属性操作
  27 +
  28 +/**
  29 + 打印该对象所有的属性
  30 + */
  31 +-(void)printTotalProperty;
  32 +
  33 +/**
  34 + 判断对象中是否有该属性
  35 +
  36 + @param property 属性名称
  37 + @return 判断结果
  38 + */
  39 +-(BOOL)haveProperty:(NSString *)property;
  40 +
  41 +/**
  42 + 改变对象属性的值
  43 +
  44 + @param value 值
  45 + @param property 对象属性
  46 + */
  47 +-(void)changeValue:(id)value forProperty:(NSString*)property;
  48 +
  49 +/**
  50 + 取出对象属性的值
  51 +
  52 + @param property 对象属性
  53 + @return 值
  54 + */
  55 +-(id)getValueForProperty:(NSString*)property;
  56 +
  57 +#pragma mark - 获取当前显示的ViewController
  58 +
  59 +/// 获取当前显示的ViewController
  60 +@property (nonatomic,weak,readonly) UIViewController * displayViewController;
  61 +
  62 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSString+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSString+DSEMExtension.h
  1 +//
  2 +// NSString+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/11.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +
  12 +typedef NS_ENUM(NSUInteger, DSStringAESStyle) {//AES加密方式
  13 + DSStringAESStyleCBC = 0,
  14 + DSStringAESStyleECB,
  15 +};
  16 +
  17 +@interface NSString (DSEMExtension)
  18 +
  19 +//#pragma mark - 获取设备号
  20 +//
  21 +///**
  22 +// 获取设备号UUID
  23 +//
  24 +// @return UUID
  25 +// */
  26 +//+(NSString*)getDeviceUUID;
  27 +
  28 +#pragma mark - 转化拼音
  29 +
  30 +/**
  31 + 转化为拼音
  32 +
  33 + @return 拼音
  34 + */
  35 +-(NSString*)transformToPinyin;
  36 +
  37 +/**
  38 + 转化为拼音,并且取首字母
  39 +
  40 + @return 拼音首字母
  41 + */
  42 +-(NSString*)takeFirstLetterOfPinyin;
  43 +
  44 +#pragma mark - 七牛云网络图片压缩
  45 +
  46 +/**
  47 + 压缩宽为200
  48 +
  49 + @return 压缩图片路径
  50 + */
  51 +-(NSString*)smallThumbImageUrl;
  52 +/**
  53 + 压缩宽为400
  54 +
  55 + @return 压缩图片路径
  56 + */
  57 +-(NSString*)middleThumbImageUrl;
  58 +/**
  59 + 压缩宽为750
  60 +
  61 + @return 压缩图片路径
  62 + */
  63 +-(NSString*)largeThumbImageUrl;
  64 +
  65 +#pragma mark - 计算文本大小
  66 +
  67 +/**
  68 + 计算文本大小(固定宽)
  69 +
  70 + @param width 固定宽度
  71 + @param font 字体大小
  72 + @return 文本大小
  73 + */
  74 +-(CGSize)calculateSizeWithUIWidth:(CGFloat)width font:(UIFont*)font;
  75 +
  76 +/**
  77 + 计算文本大小(固定高)
  78 +
  79 + @param height 固定宽度
  80 + @param font 字体大小
  81 + @return 文本大小
  82 + */
  83 +-(CGSize)calculateSizeWithUIHeight:(CGFloat)height font:(UIFont*)font;
  84 +
  85 +#pragma mark - 删除小数点后的0
  86 +
  87 +/**
  88 + 删除小数点后的0
  89 +
  90 + @return 删除后的结果
  91 + */
  92 +-(NSString*)deleteZeroAfterDecimalPoint;
  93 +
  94 +#pragma mark - 保留2位小数
  95 +
  96 +/**
  97 + 保留2位小数
  98 +
  99 + @return 修改后的结果
  100 + */
  101 +-(NSString*)keepTwoDecimalPlaces;
  102 +
  103 +#pragma mark - 删除整数前的0
  104 +
  105 +/**
  106 + 删除整数前的0
  107 +
  108 + @return 删除后的结果
  109 + */
  110 +-(NSString*)deleteLeadingZero;
  111 +
  112 +#pragma mark - 查看允不允许输入
  113 +
  114 +/**
  115 + 查看允不允许输入 例如 允许输入1、2时传入12
  116 +
  117 + @param string 允许输入字符串
  118 + @return 允不允许
  119 + */
  120 +-(BOOL)allowWriteString:(NSString*)string;
  121 +
  122 +#pragma mark - 编码
  123 +
  124 +/**
  125 + * 转换为Base64编码
  126 + */
  127 +- (NSString *)base64EncodedString;
  128 +
  129 +/**
  130 + * 将Base64编码还原
  131 + */
  132 +- (NSString *)base64DecodedString;
  133 +
  134 +/**
  135 + aes加密
  136 +
  137 + @param key 密钥
  138 + @param style 加密方式
  139 + @return 加密结果
  140 + */
  141 +-(NSString *)aesEncodeStringWithKey:(NSString*)key style:(DSStringAESStyle)style;
  142 +
  143 +/**
  144 + aes解密
  145 + @param key 密钥
  146 + @param style 加密方式
  147 + @return 解密结果
  148 + */
  149 +-(NSString *)aesDecodedStringWithKey:(NSString*)key style:(DSStringAESStyle)style;
  150 +
  151 +/**
  152 + * md5
  153 + * @return md5加密结果
  154 + */
  155 +- (NSString *)md5EncodeString;
  156 +
  157 +/**
  158 + * sha1
  159 + * @return sha1加密结果
  160 + */
  161 +- (NSString *)sha1EncodeString;
  162 +
  163 +#pragma mark - 获取设备型号
  164 +
  165 +/**
  166 + 获取设备型号然后手动转化为对应名称
  167 + */
  168 ++(NSString *)getDeviceName;
  169 +
  170 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSUserDefaults+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/NSUserDefaults+DSEMExtension.h
  1 +//
  2 +// NSUserDefaults+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/6.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +@interface NSUserDefaults (DSEMExtension)
  12 +
  13 +/**
  14 + * 用 NSUserDefaults 存储
  15 + *
  16 + * @param object 存储的对象
  17 + * @param key 存储对象的key
  18 + */
  19 ++(void)saveDataUseMethodUserDefaults:(nullable id)object key:(nullable NSString*)key;
  20 +
  21 +/**
  22 + * 用 NSUserDefaults 取数据
  23 + *
  24 + * @param key 存储对象的key
  25 + *
  26 + * @return 取出的对象
  27 + */
  28 ++(nullable id)takeDataUseMethodUserDefaults:(nullable NSString*)key;
  29 +
  30 +/**
  31 + * 获取 NSUserDefaults 存储的所有数据
  32 + *
  33 + * @return NSUserDefaults 存储的所有数据
  34 + */
  35 ++(nullable NSDictionary*)takeAllUserDefaults;
  36 +
  37 +/**
  38 + * 删除 NSUserDefaults 中所有的key
  39 + */
  40 ++(void)resetAllUserDefaults;
  41 +
  42 +/**
  43 + * 删除 NSUserDefaults 中对应的key
  44 + *
  45 + * @param resetKey 删除的key
  46 + */
  47 ++(void)deleteUserDefaultsKey:(nullable NSString*)resetKey;
  48 +
  49 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIColor+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIColor+DSEMExtension.h
  1 +//
  2 +// UIColor+DSEMExtension.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/4/11.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface UIColor (DSEMExtension)
  13 +
  14 +#pragma mark - 16进制颜色获取 0x000000 或 #000000
  15 +
  16 +/**
  17 + 16进制颜色获取
  18 +
  19 + @param color 16进制颜色字符串
  20 + @return 16进制颜色
  21 + */
  22 ++(UIColor *)colorwithHexString:(NSString *)color;
  23 +
  24 +@end
  25 +
  26 +NS_ASSUME_NONNULL_END
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIImage+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIImage+DSEMExtension.h
  1 +//
  2 +// UIImage+DSEMExtension.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 (DSEMExtension)
  12 +
  13 +#pragma mark - 图片调整方向
  14 +
  15 +/**
  16 + 调整图片为正常方向(iPhone照出的照片是倒着的)
  17 +
  18 + @return 调整后的图片
  19 + */
  20 +-(UIImage*)editImageOrientation;
  21 +
  22 +#pragma mark - 图片压缩
  23 +
  24 +/**
  25 + 图片压缩
  26 +
  27 + @return 压缩后的数据
  28 + */
  29 +-(NSData*)compress;
  30 +
  31 +#pragma mark - 图片合成
  32 +
  33 +/**
  34 + 图片合成
  35 +
  36 + @param image 所需合成的图片
  37 + @param frame 合成图片的frame
  38 + @param complete 合成完后的图片
  39 + */
  40 +-(void)synthesisImage:(UIImage *)image withFrame:(CGRect)frame complete:(void (^)(UIImage*image))complete;
  41 +
  42 +#pragma mark - 图片切角
  43 +
  44 +/**
  45 + 获取圆形图片
  46 +
  47 + @return 圆形图片
  48 + */
  49 +-(UIImage*)getCircleImage;
  50 +
  51 +/**
  52 + 获取圆角矩形图片
  53 +
  54 + @return 圆形图片
  55 + */
  56 +-(UIImage*)getRectCircleImage;
  57 +
  58 +#pragma mark - 重绘图片
  59 +
  60 +/**
  61 + 从新设定图片大小
  62 +
  63 + @param reSize 新大小
  64 + @return 新图片
  65 + */
  66 +-(UIImage *)reSize:(CGSize)reSize;
  67 +
  68 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIImageView+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIImageView+DSEMExtension.h
  1 +//
  2 +// UIImageView+DSEMExtension.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 UIImageView (DSEMExtension)
  12 +
  13 +#pragma mark - 虚线
  14 +
  15 +/**
  16 + 添加虚线
  17 +
  18 + @param color 虚线颜色
  19 + @param length 单条线长度
  20 + @param space 每条线之间的距离
  21 + @param height 线的高度
  22 + */
  23 +-(void)addDottedLineImageWithColor:(UIColor*)color length:(CGFloat)length space:(CGFloat)space height:(CGFloat)height;
  24 +
  25 +#pragma mark - 添加自定义颜色的图片
  26 +
  27 +/**
  28 + 添加自定义颜色的图片
  29 +
  30 + @param image 图片
  31 + @param csColor 自定义颜色的图片
  32 + */
  33 +-(void)setImage:(UIImage *)image csColor:(UIColor*)csColor;
  34 +
  35 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UILabel+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UILabel+DSEMExtension.h
  1 +//
  2 +// UILabel+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/10/8.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface UILabel (DSEMExtension)
  14 +
  15 +#pragma mark - 计算文本大小
  16 +
  17 +/**
  18 + 根据行数计算文本的高
  19 +
  20 + @param count 限制行数
  21 + @return 高度
  22 + */
  23 +-(CGFloat)calculateHeightWithLimitLineCount:(NSUInteger)count;
  24 +
  25 +#pragma mark - 分行
  26 +
  27 +/**
  28 + 分行
  29 +
  30 + @return 每行的字数组
  31 + */
  32 +-(NSArray<NSString*>*)separatedLines;
  33 +
  34 +@end
  35 +
  36 +NS_ASSUME_NONNULL_END
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIScrollView+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIScrollView+DSEMExtension.h
  1 +//
  2 +// UIScrollView+DSEMExtension.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 (DSEMExtension)
  13 +
  14 +#pragma mark - 页数
  15 +
  16 +/**
  17 + 页数
  18 + */
  19 +@property (nonatomic,assign) NSUInteger page;
  20 +/**
  21 + 一页数据数 默认20条数据
  22 + */
  23 +@property (nonatomic,assign) NSUInteger pageCount;
  24 +
  25 +#pragma mark - 列表数据
  26 +
  27 +/**
  28 + 列表数据
  29 + */
  30 +@property (nonatomic,strong) NSMutableArray * listDataArr;
  31 +
  32 +#pragma mark - 列表数据是否为空
  33 +
  34 +/**
  35 + 列表数据是否为空
  36 + */
  37 +@property (nonatomic,assign,readonly) BOOL isEmpty;
  38 +
  39 +#pragma mark - 数据处理
  40 +
  41 +/**
  42 + 处理获取数据
  43 +
  44 + @param dataArr 数据
  45 + @param isError 请求是否失败
  46 + */
  47 +-(void)disposeDataArr:(NSArray*)dataArr isError:(BOOL)isError;
  48 +/**
  49 + 处理当前页获取的数据
  50 +
  51 + @param dataArr 数据
  52 + @param currentPage 当前页数
  53 + @param isError 请求是否失败
  54 + */
  55 +-(void)disposeCurrentPageDataArr:(NSArray*)dataArr currentPage:(NSUInteger)currentPage isError:(BOOL)isError;
  56 +
  57 +#pragma mark - 刷新
  58 +
  59 +/**
  60 + 添加刷新
  61 + */
  62 +-(void)addHeaderRefreshBlock:(void (^)(void))block;
  63 +/**
  64 + 删除刷新
  65 + */
  66 +-(void)removeHeaderRefresh;
  67 +/**
  68 + 结束头部刷新状态
  69 + */
  70 +-(void)endHeaderRefresh;
  71 +
  72 +#pragma mark - 加载
  73 +
  74 +/**
  75 + 添加加载更多
  76 + */
  77 +-(void)addFooterRefreshBlock:(void (^)(void))block;
  78 +/**
  79 + 删除加载更多
  80 + */
  81 +-(void)removeFooterRefresh;
  82 +/**
  83 + 结束底部加载状态
  84 + */
  85 +-(void)endFooterRefresh;
  86 +/**
  87 + 结束底部加载状态并显示没有更多数据的提示
  88 + */
  89 +-(void)endFooterRefreshAndDisplayNoMoreData;
  90 +/**
  91 + 清除没有更多数据的提示
  92 + */
  93 +-(void)resetNoMoreData;
  94 +
  95 +@end
  96 +
  97 +NS_ASSUME_NONNULL_END
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UITextField+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UITextField+DSEMExtension.h
  1 +//
  2 +// UITextField+DSEMExtension.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/10/9.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface UITextField (DSEMExtension)
  14 +
  15 +/**
  16 + 获取光标range
  17 +
  18 + @return range
  19 + */
  20 +-(NSRange)selectedRange;
  21 +
  22 +/**
  23 + 根据range改变光标位置
  24 + 备注:UITextField必须为第一响应者才有效
  25 +
  26 + @param range range
  27 + */
  28 +-(void)setSelectedRange:(NSRange)range;
  29 +
  30 +@end
  31 +
  32 +NS_ASSUME_NONNULL_END
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIView+DSEMExtension.h 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Headers/UIView+DSEMExtension.h
  1 +//
  2 +// UIView+DSEMExtension.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 +#import <MBProgressHUD/MBProgressHUD.h>
  11 +#import <DSBaseModule/DSBaseModuleHeader.h>
  12 +
  13 +#define DS_showMessage(msg) [DS_APP_KEY_WINDOW showMessage:msg]
  14 +
  15 +@interface UIView (DSEMExtension)
  16 +
  17 +#pragma mark - 附加属性
  18 +
  19 +/**
  20 + x
  21 + */
  22 +@property (nonatomic, assign) CGFloat x;
  23 +/**
  24 + y
  25 + */
  26 +@property (nonatomic, assign) CGFloat y;
  27 +/**
  28 + width
  29 + */
  30 +@property (nonatomic, assign) CGFloat width;
  31 +/**
  32 + height
  33 + */
  34 +@property (nonatomic, assign) CGFloat height;
  35 +/**
  36 + origin
  37 + */
  38 +@property (nonatomic, assign) CGPoint origin;
  39 +/**
  40 + size
  41 + */
  42 +@property (nonatomic, assign) CGSize size;
  43 +/**
  44 + centerX
  45 + */
  46 +@property (nonatomic, assign) CGFloat centerX;
  47 +/**
  48 + centerY
  49 + */
  50 +@property (nonatomic, assign) CGFloat centerY;
  51 +
  52 +#pragma mark - 查找Controller
  53 +
  54 +/**
  55 + 查找controller
  56 +
  57 + @return UIViewController
  58 + */
  59 +-(nullable UIViewController *)findViewController;
  60 +
  61 +#pragma mark - 加载框
  62 +
  63 +/**
  64 + 显示加载框 (不可点击)
  65 + */
  66 +-(nonnull MBProgressHUD*)showLoading;
  67 +
  68 +/**
  69 + 显示带提示加载框 (不可点击)
  70 +
  71 + @param remind 提示
  72 + */
  73 +-(void)showLoading:(nullable NSString*)remind;
  74 +
  75 +/**
  76 + 隐藏加载框 (不可点击)
  77 + */
  78 +-(void)hideLoading;
  79 +
  80 +/**
  81 + 显示加载框 (可点击)
  82 + */
  83 +-(nonnull MBProgressHUD*)showHUD;
  84 +
  85 +/**
  86 + 显示带提示加载框 (可点击)
  87 +
  88 + @param remind 提示
  89 + */
  90 +-(void)showHUD:(nullable NSString*)remind;
  91 +
  92 +/**
  93 + 隐藏加载框 (可点击)
  94 + */
  95 +-(void)hideHUD;
  96 +
  97 +#pragma mark - 提示框
  98 +
  99 +/// 提示框
  100 +/// @param message 提示信息
  101 +-(void)showMessage:(nullable NSString *)message;
  102 +
  103 +#pragma mark - 加入购物车动画
  104 +
  105 +/**
  106 + 加入购物车动画
  107 +
  108 + @param frame 开始frame
  109 + @param targetFrame 结束frame
  110 + @param complete 完成
  111 + */
  112 +-(void)addShopingCartAnimateWithbeginFrame:(CGRect)frame targetFrame:(CGRect)targetFrame complete:(nullable void (^)(void))complete;
  113 +
  114 +#pragma mark - 截图
  115 +
  116 +/**
  117 + 截图
  118 +
  119 + @return 截图
  120 + */
  121 +-(nonnull UIImage *)getScreenshot;
  122 +
  123 +@end
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Info.plist 0 → 100644
No preview for this file type
DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Modules/module.modulemap 0 → 100644
  1 +++ a/DSExtensionModuleF/Frameworks/DSExtensionModule.framework/Modules/module.modulemap
  1 +framework module DSExtensionModule {
  2 + umbrella header "DSExtensionModule-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/DSExtensionModuleF.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/DSExtensionModuleF.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 11636FE2A04A95A6930E31E3 /* Pods_DSExtensionModuleF_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C7E15AE83EFC2D114C864C2 /* Pods_DSExtensionModuleF_Example.framework */; };
  11 + 3F1DA7E66C6A572B5FC9E134 /* Pods_DSExtensionModuleF_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0630E133975BAAE45BE047E /* Pods_DSExtensionModuleF_Tests.framework */; };
  12 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  13 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
  14 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  15 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
  16 + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
  17 + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* DSAppDelegate.m */; };
  18 + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* DSViewController.m */; };
  19 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
  20 + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
  21 + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  22 + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  23 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
  24 + 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
  25 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
  26 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
  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 = DSExtensionModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 22089EE3D39C55CBD1B7B12F /* Pods-DSExtensionModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSExtensionModuleF_Tests.debug.xcconfig"; path = "Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  41 + 3885D7256AD1C1A6717F82AE /* Pods-DSExtensionModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSExtensionModuleF_Example.release.xcconfig"; path = "Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  42 + 6003F58A195388D20070C39A /* DSExtensionModuleF_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSExtensionModuleF_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 /* DSExtensionModuleF-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSExtensionModuleF-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 /* DSExtensionModuleF-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DSExtensionModuleF-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 /* DSExtensionModuleF_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DSExtensionModuleF_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 + 6C7E15AE83EFC2D114C864C2 /* Pods_DSExtensionModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSExtensionModuleF_Example.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 + 93A8DFE491B67F66EB3F9A43 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  65 + A641BA49DE44D8AA5591EE18 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  66 + B801327B794DB1D4153D9A8D /* Pods-DSExtensionModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSExtensionModuleF_Tests.release.xcconfig"; path = "Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  67 + D45335E4C722BA0A8D7AFD22 /* Pods-DSExtensionModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSExtensionModuleF_Example.debug.xcconfig"; path = "Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  68 + DCCE3E12A65A8777883AE6D3 /* DSExtensionModuleF.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = DSExtensionModuleF.podspec; path = ../DSExtensionModuleF.podspec; sourceTree = "<group>"; };
  69 + E0630E133975BAAE45BE047E /* Pods_DSExtensionModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSExtensionModuleF_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  70 +/* End PBXFileReference section */
  71 +
  72 +/* Begin PBXFrameworksBuildPhase section */
  73 + 6003F587195388D20070C39A /* Frameworks */ = {
  74 + isa = PBXFrameworksBuildPhase;
  75 + buildActionMask = 2147483647;
  76 + files = (
  77 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
  78 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
  79 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
  80 + 11636FE2A04A95A6930E31E3 /* Pods_DSExtensionModuleF_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 + 3F1DA7E66C6A572B5FC9E134 /* Pods_DSExtensionModuleF_Tests.framework in Frameworks */,
  92 + );
  93 + runOnlyForDeploymentPostprocessing = 0;
  94 + };
  95 +/* End PBXFrameworksBuildPhase section */
  96 +
  97 +/* Begin PBXGroup section */
  98 + 6003F581195388D10070C39A = {
  99 + isa = PBXGroup;
  100 + children = (
  101 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
  102 + 6003F593195388D20070C39A /* Example for DSExtensionModuleF */,
  103 + 6003F5B5195388D20070C39A /* Tests */,
  104 + 6003F58C195388D20070C39A /* Frameworks */,
  105 + 6003F58B195388D20070C39A /* Products */,
  106 + 94008328CB38F77A071152F9 /* Pods */,
  107 + );
  108 + sourceTree = "<group>";
  109 + };
  110 + 6003F58B195388D20070C39A /* Products */ = {
  111 + isa = PBXGroup;
  112 + children = (
  113 + 6003F58A195388D20070C39A /* DSExtensionModuleF_Example.app */,
  114 + 6003F5AE195388D20070C39A /* DSExtensionModuleF_Tests.xctest */,
  115 + );
  116 + name = Products;
  117 + sourceTree = "<group>";
  118 + };
  119 + 6003F58C195388D20070C39A /* Frameworks */ = {
  120 + isa = PBXGroup;
  121 + children = (
  122 + 6003F58D195388D20070C39A /* Foundation.framework */,
  123 + 6003F58F195388D20070C39A /* CoreGraphics.framework */,
  124 + 6003F591195388D20070C39A /* UIKit.framework */,
  125 + 6003F5AF195388D20070C39A /* XCTest.framework */,
  126 + 6C7E15AE83EFC2D114C864C2 /* Pods_DSExtensionModuleF_Example.framework */,
  127 + E0630E133975BAAE45BE047E /* Pods_DSExtensionModuleF_Tests.framework */,
  128 + );
  129 + name = Frameworks;
  130 + sourceTree = "<group>";
  131 + };
  132 + 6003F593195388D20070C39A /* Example for DSExtensionModuleF */ = {
  133 + isa = PBXGroup;
  134 + children = (
  135 + 6003F59C195388D20070C39A /* DSAppDelegate.h */,
  136 + 6003F59D195388D20070C39A /* DSAppDelegate.m */,
  137 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
  138 + 6003F5A5195388D20070C39A /* DSViewController.h */,
  139 + 6003F5A6195388D20070C39A /* DSViewController.m */,
  140 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
  141 + 6003F5A8195388D20070C39A /* Images.xcassets */,
  142 + 6003F594195388D20070C39A /* Supporting Files */,
  143 + );
  144 + name = "Example for DSExtensionModuleF";
  145 + path = DSExtensionModuleF;
  146 + sourceTree = "<group>";
  147 + };
  148 + 6003F594195388D20070C39A /* Supporting Files */ = {
  149 + isa = PBXGroup;
  150 + children = (
  151 + 6003F595195388D20070C39A /* DSExtensionModuleF-Info.plist */,
  152 + 6003F596195388D20070C39A /* InfoPlist.strings */,
  153 + 6003F599195388D20070C39A /* main.m */,
  154 + 6003F59B195388D20070C39A /* DSExtensionModuleF-Prefix.pch */,
  155 + );
  156 + name = "Supporting Files";
  157 + sourceTree = "<group>";
  158 + };
  159 + 6003F5B5195388D20070C39A /* Tests */ = {
  160 + isa = PBXGroup;
  161 + children = (
  162 + 6003F5BB195388D20070C39A /* Tests.m */,
  163 + 6003F5B6195388D20070C39A /* Supporting Files */,
  164 + );
  165 + path = Tests;
  166 + sourceTree = "<group>";
  167 + };
  168 + 6003F5B6195388D20070C39A /* Supporting Files */ = {
  169 + isa = PBXGroup;
  170 + children = (
  171 + 6003F5B7195388D20070C39A /* Tests-Info.plist */,
  172 + 6003F5B8195388D20070C39A /* InfoPlist.strings */,
  173 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
  174 + );
  175 + name = "Supporting Files";
  176 + sourceTree = "<group>";
  177 + };
  178 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
  179 + isa = PBXGroup;
  180 + children = (
  181 + DCCE3E12A65A8777883AE6D3 /* DSExtensionModuleF.podspec */,
  182 + A641BA49DE44D8AA5591EE18 /* README.md */,
  183 + 93A8DFE491B67F66EB3F9A43 /* LICENSE */,
  184 + );
  185 + name = "Podspec Metadata";
  186 + sourceTree = "<group>";
  187 + };
  188 + 94008328CB38F77A071152F9 /* Pods */ = {
  189 + isa = PBXGroup;
  190 + children = (
  191 + D45335E4C722BA0A8D7AFD22 /* Pods-DSExtensionModuleF_Example.debug.xcconfig */,
  192 + 3885D7256AD1C1A6717F82AE /* Pods-DSExtensionModuleF_Example.release.xcconfig */,
  193 + 22089EE3D39C55CBD1B7B12F /* Pods-DSExtensionModuleF_Tests.debug.xcconfig */,
  194 + B801327B794DB1D4153D9A8D /* Pods-DSExtensionModuleF_Tests.release.xcconfig */,
  195 + );
  196 + name = Pods;
  197 + path = Pods;
  198 + sourceTree = "<group>";
  199 + };
  200 +/* End PBXGroup section */
  201 +
  202 +/* Begin PBXNativeTarget section */
  203 + 6003F589195388D20070C39A /* DSExtensionModuleF_Example */ = {
  204 + isa = PBXNativeTarget;
  205 + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSExtensionModuleF_Example" */;
  206 + buildPhases = (
  207 + BA6E410B0D6E1B43617AEB12 /* [CP] Check Pods Manifest.lock */,
  208 + 6003F586195388D20070C39A /* Sources */,
  209 + 6003F587195388D20070C39A /* Frameworks */,
  210 + 6003F588195388D20070C39A /* Resources */,
  211 + 93D9E5207C1E2FE704E93B45 /* [CP] Embed Pods Frameworks */,
  212 + );
  213 + buildRules = (
  214 + );
  215 + dependencies = (
  216 + );
  217 + name = DSExtensionModuleF_Example;
  218 + productName = DSExtensionModuleF;
  219 + productReference = 6003F58A195388D20070C39A /* DSExtensionModuleF_Example.app */;
  220 + productType = "com.apple.product-type.application";
  221 + };
  222 + 6003F5AD195388D20070C39A /* DSExtensionModuleF_Tests */ = {
  223 + isa = PBXNativeTarget;
  224 + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSExtensionModuleF_Tests" */;
  225 + buildPhases = (
  226 + D83687272532C06F41B4D51D /* [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 = DSExtensionModuleF_Tests;
  237 + productName = DSExtensionModuleFTests;
  238 + productReference = 6003F5AE195388D20070C39A /* DSExtensionModuleF_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 "DSExtensionModuleF" */;
  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 /* DSExtensionModuleF_Example */,
  270 + 6003F5AD195388D20070C39A /* DSExtensionModuleF_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 + 93D9E5207C1E2FE704E93B45 /* [CP] Embed Pods Frameworks */ = {
  299 + isa = PBXShellScriptBuildPhase;
  300 + buildActionMask = 2147483647;
  301 + files = (
  302 + );
  303 + inputPaths = (
  304 + "${PODS_ROOT}/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-frameworks.sh",
  305 + "${BUILT_PRODUCTS_DIR}/DSExtensionModuleF/DSExtensionModuleF.framework",
  306 + );
  307 + name = "[CP] Embed Pods Frameworks";
  308 + outputPaths = (
  309 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DSExtensionModuleF.framework",
  310 + );
  311 + runOnlyForDeploymentPostprocessing = 0;
  312 + shellPath = /bin/sh;
  313 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-frameworks.sh\"\n";
  314 + showEnvVarsInLog = 0;
  315 + };
  316 + BA6E410B0D6E1B43617AEB12 /* [CP] Check Pods Manifest.lock */ = {
  317 + isa = PBXShellScriptBuildPhase;
  318 + buildActionMask = 2147483647;
  319 + files = (
  320 + );
  321 + inputFileListPaths = (
  322 + );
  323 + inputPaths = (
  324 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  325 + "${PODS_ROOT}/Manifest.lock",
  326 + );
  327 + name = "[CP] Check Pods Manifest.lock";
  328 + outputFileListPaths = (
  329 + );
  330 + outputPaths = (
  331 + "$(DERIVED_FILE_DIR)/Pods-DSExtensionModuleF_Example-checkManifestLockResult.txt",
  332 + );
  333 + runOnlyForDeploymentPostprocessing = 0;
  334 + shellPath = /bin/sh;
  335 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  336 + showEnvVarsInLog = 0;
  337 + };
  338 + D83687272532C06F41B4D51D /* [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-DSExtensionModuleF_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 /* DSExtensionModuleF_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 = D45335E4C722BA0A8D7AFD22 /* Pods-DSExtensionModuleF_Example.debug.xcconfig */;
  495 + buildSettings = {
  496 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  497 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  498 + GCC_PREFIX_HEADER = "DSExtensionModuleF/DSExtensionModuleF-Prefix.pch";
  499 + INFOPLIST_FILE = "DSExtensionModuleF/DSExtensionModuleF-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 = 3885D7256AD1C1A6717F82AE /* Pods-DSExtensionModuleF_Example.release.xcconfig */;
  511 + buildSettings = {
  512 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  513 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  514 + GCC_PREFIX_HEADER = "DSExtensionModuleF/DSExtensionModuleF-Prefix.pch";
  515 + INFOPLIST_FILE = "DSExtensionModuleF/DSExtensionModuleF-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 = 22089EE3D39C55CBD1B7B12F /* Pods-DSExtensionModuleF_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)/DSExtensionModuleF_Example.app/DSExtensionModuleF_Example";
  545 + WRAPPER_EXTENSION = xctest;
  546 + };
  547 + name = Debug;
  548 + };
  549 + 6003F5C4195388D20070C39A /* Release */ = {
  550 + isa = XCBuildConfiguration;
  551 + baseConfigurationReference = B801327B794DB1D4153D9A8D /* Pods-DSExtensionModuleF_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)/DSExtensionModuleF_Example.app/DSExtensionModuleF_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 "DSExtensionModuleF" */ = {
  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 "DSExtensionModuleF_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 "DSExtensionModuleF_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/DSExtensionModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSExtensionModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:DSExtensionModuleF.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
Example/DSExtensionModuleF.xcodeproj/xcshareddata/xcschemes/DSExtensionModuleF-Example.xcscheme 0 → 100644
  1 +++ a/Example/DSExtensionModuleF.xcodeproj/xcshareddata/xcschemes/DSExtensionModuleF-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 = "DSExtensionModuleF_Example.app"
  19 + BlueprintName = "DSExtensionModuleF_Example"
  20 + ReferencedContainer = "container:DSExtensionModuleF.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 = "DSExtensionModuleF_Tests.xctest"
  37 + BlueprintName = "DSExtensionModuleF_Tests"
  38 + ReferencedContainer = "container:DSExtensionModuleF.xcodeproj">
  39 + </BuildableReference>
  40 + </TestableReference>
  41 + </Testables>
  42 + <MacroExpansion>
  43 + <BuildableReference
  44 + BuildableIdentifier = "primary"
  45 + BlueprintIdentifier = "6003F589195388D20070C39A"
  46 + BuildableName = "DSExtensionModuleF_Example.app"
  47 + BlueprintName = "DSExtensionModuleF_Example"
  48 + ReferencedContainer = "container:DSExtensionModuleF.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 = "DSExtensionModuleF_Example.app"
  70 + BlueprintName = "DSExtensionModuleF_Example"
  71 + ReferencedContainer = "container:DSExtensionModuleF.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 = "DSExtensionModuleF_Example.app"
  89 + BlueprintName = "DSExtensionModuleF_Example"
  90 + ReferencedContainer = "container:DSExtensionModuleF.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/DSExtensionModuleF.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSExtensionModuleF.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "group:DSExtensionModuleF.xcodeproj">
  6 + </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
  10 +</Workspace>
Example/DSExtensionModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 0 → 100644
  1 +++ a/Example/DSExtensionModuleF.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/DSExtensionModuleF/Base.lproj/LaunchScreen.storyboard 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/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/DSExtensionModuleF/Base.lproj/Main.storyboard 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/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/DSExtensionModuleF/DSAppDelegate.h 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/DSAppDelegate.h
  1 +//
  2 +// DSAppDelegate.h
  3 +// DSExtensionModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface DSAppDelegate : UIResponder <UIApplicationDelegate>
  12 +
  13 +@property (strong, nonatomic) UIWindow *window;
  14 +
  15 +@end
Example/DSExtensionModuleF/DSAppDelegate.m 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/DSAppDelegate.m
  1 +//
  2 +// DSAppDelegate.m
  3 +// DSExtensionModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +#import "DSAppDelegate.h"
  10 +
  11 +@implementation DSAppDelegate
  12 +
  13 +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  14 +{
  15 + // Override point for customization after application launch.
  16 + return YES;
  17 +}
  18 +
  19 +- (void)applicationWillResignActive:(UIApplication *)application
  20 +{
  21 + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
  22 + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
  23 +}
  24 +
  25 +- (void)applicationDidEnterBackground:(UIApplication *)application
  26 +{
  27 + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
  28 + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  29 +}
  30 +
  31 +- (void)applicationWillEnterForeground:(UIApplication *)application
  32 +{
  33 + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
  34 +}
  35 +
  36 +- (void)applicationDidBecomeActive:(UIApplication *)application
  37 +{
  38 + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  39 +}
  40 +
  41 +- (void)applicationWillTerminate:(UIApplication *)application
  42 +{
  43 + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  44 +}
  45 +
  46 +@end
Example/DSExtensionModuleF/DSExtensionModuleF-Info.plist 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/DSExtensionModuleF-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/DSExtensionModuleF/DSExtensionModuleF-Prefix.pch 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/DSExtensionModuleF-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/DSExtensionModuleF/DSViewController.h 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/DSViewController.h
  1 +//
  2 +// DSViewController.h
  3 +// DSExtensionModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface DSViewController : UIViewController
  12 +
  13 +@end
Example/DSExtensionModuleF/DSViewController.m 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/DSViewController.m
  1 +//
  2 +// DSViewController.m
  3 +// DSExtensionModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +#import "DSViewController.h"
  10 +
  11 +@interface DSViewController ()
  12 +
  13 +@end
  14 +
  15 +@implementation DSViewController
  16 +
  17 +- (void)viewDidLoad
  18 +{
  19 + [super viewDidLoad];
  20 + // Do any additional setup after loading the view, typically from a nib.
  21 +}
  22 +
  23 +- (void)didReceiveMemoryWarning
  24 +{
  25 + [super didReceiveMemoryWarning];
  26 + // Dispose of any resources that can be recreated.
  27 +}
  28 +
  29 +@end
Example/DSExtensionModuleF/Images.xcassets/AppIcon.appiconset/Contents.json 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/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/DSExtensionModuleF/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
Example/DSExtensionModuleF/main.m 0 → 100644
  1 +++ a/Example/DSExtensionModuleF/main.m
  1 +//
  2 +// main.m
  3 +// DSExtensionModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +#import "DSAppDelegate.h"
  11 +
  12 +int main(int argc, char * argv[])
  13 +{
  14 + @autoreleasepool {
  15 + return UIApplicationMain(argc, argv, nil, NSStringFromClass([DSAppDelegate class]));
  16 + }
  17 +}
Example/Podfile 0 → 100644
  1 +++ a/Example/Podfile
  1 +use_frameworks!
  2 +
  3 +platform :ios, '8.0'
  4 +
  5 +target 'DSExtensionModuleF_Example' do
  6 + pod 'DSExtensionModuleF', :path => '../'
  7 +
  8 + target 'DSExtensionModuleF_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 + - DSExtensionModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSExtensionModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSExtensionModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSExtensionModuleF: 54e780b404ac28698eee2da5e06cd3aadadd70d9
  13 +
  14 +PODFILE CHECKSUM: 7806faa99a834885d2f7c3430166be5f2112da7c
  15 +
  16 +COCOAPODS: 1.8.4
Example/Pods/Local Podspecs/DSExtensionModuleF.podspec.json 0 → 100644
  1 +++ a/Example/Pods/Local Podspecs/DSExtensionModuleF.podspec.json
  1 +{
  2 + "name": "DSExtensionModuleF",
  3 + "version": "0.1.0",
  4 + "summary": "A short description of DSExtensionModuleF.",
  5 + "description": "TODO: Add long description of the pod here.",
  6 + "homepage": "https://github.com/694092596@qq.com/DSExtensionModuleF",
  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/DSExtensionModuleF.git",
  16 + "tag": "0.1.0"
  17 + },
  18 + "platforms": {
  19 + "ios": "8.0"
  20 + },
  21 + "source_files": "DSExtensionModuleF/Classes/**/*"
  22 +}
Example/Pods/Manifest.lock 0 → 100644
  1 +++ a/Example/Pods/Manifest.lock
  1 +PODS:
  2 + - DSExtensionModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSExtensionModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSExtensionModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSExtensionModuleF: 54e780b404ac28698eee2da5e06cd3aadadd70d9
  13 +
  14 +PODFILE CHECKSUM: 7806faa99a834885d2f7c3430166be5f2112da7c
  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 + 0A32E097DA7483D6F6EC532838C5F86C /* Pods-DSExtensionModuleF_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCD309AC45A31C91FDBFF507325F9A1 /* Pods-DSExtensionModuleF_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  11 + 122F956A30ADE70791C363CE7C089773 /* Pods-DSExtensionModuleF_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D10961FAD05C9BD13D0D5BA848D08DB2 /* Pods-DSExtensionModuleF_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  12 + 21B470B033BD8D8715AA8B3E8A4755D4 /* Pods-DSExtensionModuleF_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0FDC30E03A8CEE5593725B515594E83 /* Pods-DSExtensionModuleF_Example-dummy.m */; };
  13 + 232B97FE0FDD883C27BBDCF9BC8ECB5F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  14 + 25B26BB83C0964953BF43D034A28AE94 /* DSExtensionModuleF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15643EBD0B3E02E7BB17AC28543B50A1 /* DSExtensionModuleF-dummy.m */; };
  15 + 2D65738FDC6BFCAB8BF007B0FAB1377C /* ReplaceMe.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A98BD2F9C854168C401782495AA296B /* ReplaceMe.m */; };
  16 + 2F1DB49FDBE5E092B8751A2634194559 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  17 + 78976F924CE7A414E315FC2603165D11 /* DSExtensionModuleF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 22CDC459A1A0B3AF4E55AC084EAEB3D2 /* DSExtensionModuleF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  18 + AB526DF5ED192A0236620AA1F3C46E42 /* Pods-DSExtensionModuleF_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7560BA165D905D3355E8AABD371B5FAA /* Pods-DSExtensionModuleF_Tests-dummy.m */; };
  19 + D759A5E1E1EFD98119BE12E8E10CD073 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  20 +/* End PBXBuildFile section */
  21 +
  22 +/* Begin PBXContainerItemProxy section */
  23 + 474378EDCBAFC51760A53A37422D1400 /* PBXContainerItemProxy */ = {
  24 + isa = PBXContainerItemProxy;
  25 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  26 + proxyType = 1;
  27 + remoteGlobalIDString = 6B68EA1997B81BD7795E34B60BF5CD93;
  28 + remoteInfo = "Pods-DSExtensionModuleF_Example";
  29 + };
  30 + FD4337931DE0B3A8BAD6BCBE1B7D9D21 /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = D04E311B8121F276220F3591A76D2539;
  35 + remoteInfo = DSExtensionModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 05A1C952E2E92AD01C9A8449E0E1C6F8 /* Pods-DSExtensionModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSExtensionModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  41 + 1267425B9EBC46776F585FE37C4689C8 /* DSExtensionModuleF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DSExtensionModuleF.framework; path = DSExtensionModuleF.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  42 + 1331D92753DEE53A2F7548617B076154 /* Pods-DSExtensionModuleF_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DSExtensionModuleF_Example-frameworks.sh"; sourceTree = "<group>"; };
  43 + 15643EBD0B3E02E7BB17AC28543B50A1 /* DSExtensionModuleF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DSExtensionModuleF-dummy.m"; sourceTree = "<group>"; };
  44 + 15A3C5D31CF7F1F3AF91010E320C25F7 /* Pods-DSExtensionModuleF_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSExtensionModuleF_Tests-Info.plist"; sourceTree = "<group>"; };
  45 + 16C23FA198079E8D7B3F34226E12B706 /* Pods-DSExtensionModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSExtensionModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  46 + 228D95449653AF580D576C6C2C44BAD8 /* Pods-DSExtensionModuleF_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSExtensionModuleF_Example.modulemap"; sourceTree = "<group>"; };
  47 + 22CDC459A1A0B3AF4E55AC084EAEB3D2 /* DSExtensionModuleF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSExtensionModuleF-umbrella.h"; sourceTree = "<group>"; };
  48 + 2FEDF69116FAC4D13F4AC2CF92E5D059 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  49 + 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; };
  50 + 481BA8B3D72E5B55E17D039B3B5F4456 /* DSExtensionModuleF.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DSExtensionModuleF.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  51 + 6A98BD2F9C854168C401782495AA296B /* ReplaceMe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReplaceMe.m; path = DSExtensionModuleF/Classes/ReplaceMe.m; sourceTree = "<group>"; };
  52 + 6E3C959D71C429C74947995B17A2690C /* Pods-DSExtensionModuleF_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSExtensionModuleF_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
  53 + 7560BA165D905D3355E8AABD371B5FAA /* Pods-DSExtensionModuleF_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSExtensionModuleF_Tests-dummy.m"; sourceTree = "<group>"; };
  54 + 7E793CD195E3C5CBA824D022FD75C64C /* Pods-DSExtensionModuleF_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSExtensionModuleF_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  55 + 7E80A783D75928D13A96E2ACE94E6979 /* Pods-DSExtensionModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSExtensionModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  56 + 8054FE9EA3A09A68AF836DDF8626AD4C /* DSExtensionModuleF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSExtensionModuleF-prefix.pch"; sourceTree = "<group>"; };
  57 + 817B62F35ED462E4292F4B78A5340DCA /* Pods-DSExtensionModuleF_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSExtensionModuleF_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
  58 + 81E3015A73BFDBA3B32ED830CD1D18C2 /* Pods-DSExtensionModuleF_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSExtensionModuleF_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  59 + 978614D49B7BB74EC434FAB9B7825DAB /* DSExtensionModuleF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DSExtensionModuleF.modulemap; sourceTree = "<group>"; };
  60 + 9C5BC1B048624CCA1B032531EB3ED18D /* Pods-DSExtensionModuleF_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSExtensionModuleF_Tests.modulemap"; sourceTree = "<group>"; };
  61 + 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; };
  62 + B43140D7D1E7CEE2579ACEC520C7AB88 /* DSExtensionModuleF-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DSExtensionModuleF-Info.plist"; sourceTree = "<group>"; };
  63 + B8130D53A77D666E8D82E59C8646DF9D /* Pods_DSExtensionModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSExtensionModuleF_Example.framework; path = "Pods-DSExtensionModuleF_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  64 + C0FDC30E03A8CEE5593725B515594E83 /* Pods-DSExtensionModuleF_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSExtensionModuleF_Example-dummy.m"; sourceTree = "<group>"; };
  65 + C3B1233D0247AFFF14D39BEB48560ADB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  66 + CDCD309AC45A31C91FDBFF507325F9A1 /* Pods-DSExtensionModuleF_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSExtensionModuleF_Tests-umbrella.h"; sourceTree = "<group>"; };
  67 + CFD7A49872465C1DDCD3E7D4AC80EB2F /* Pods-DSExtensionModuleF_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSExtensionModuleF_Example-Info.plist"; sourceTree = "<group>"; };
  68 + D10961FAD05C9BD13D0D5BA848D08DB2 /* Pods-DSExtensionModuleF_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSExtensionModuleF_Example-umbrella.h"; sourceTree = "<group>"; };
  69 + E15D359BDDD13792890BAA74C0921C86 /* Pods-DSExtensionModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSExtensionModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  70 + E17C6EBA7E9775390379D339010FB285 /* Pods_DSExtensionModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSExtensionModuleF_Tests.framework; path = "Pods-DSExtensionModuleF_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  71 + FF2570548ECB213485594A78325A53C1 /* DSExtensionModuleF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DSExtensionModuleF.xcconfig; sourceTree = "<group>"; };
  72 +/* End PBXFileReference section */
  73 +
  74 +/* Begin PBXFrameworksBuildPhase section */
  75 + 4A57D928C89F9663D37078E918A68927 /* Frameworks */ = {
  76 + isa = PBXFrameworksBuildPhase;
  77 + buildActionMask = 2147483647;
  78 + files = (
  79 + 232B97FE0FDD883C27BBDCF9BC8ECB5F /* Foundation.framework in Frameworks */,
  80 + );
  81 + runOnlyForDeploymentPostprocessing = 0;
  82 + };
  83 + A43559CC10F1C59DE7A3E46FFA2E54BA /* Frameworks */ = {
  84 + isa = PBXFrameworksBuildPhase;
  85 + buildActionMask = 2147483647;
  86 + files = (
  87 + D759A5E1E1EFD98119BE12E8E10CD073 /* Foundation.framework in Frameworks */,
  88 + );
  89 + runOnlyForDeploymentPostprocessing = 0;
  90 + };
  91 + C568818EB41D140EAE9EB87F551023AC /* Frameworks */ = {
  92 + isa = PBXFrameworksBuildPhase;
  93 + buildActionMask = 2147483647;
  94 + files = (
  95 + 2F1DB49FDBE5E092B8751A2634194559 /* Foundation.framework in Frameworks */,
  96 + );
  97 + runOnlyForDeploymentPostprocessing = 0;
  98 + };
  99 +/* End PBXFrameworksBuildPhase section */
  100 +
  101 +/* Begin PBXGroup section */
  102 + 0B36E15ADA082C17C320AC2D75F4E8A5 /* DSExtensionModuleF */ = {
  103 + isa = PBXGroup;
  104 + children = (
  105 + 6A98BD2F9C854168C401782495AA296B /* ReplaceMe.m */,
  106 + F8D950FB47C2C72A4B5DB9FE4108D6EA /* Pod */,
  107 + 8D4CE0498DC9D018D0F2DF846F9D82F0 /* Support Files */,
  108 + );
  109 + name = DSExtensionModuleF;
  110 + path = ../..;
  111 + sourceTree = "<group>";
  112 + };
  113 + 0EFF6A3661D510D0DCF2BF81C847B3CF /* Pods-DSExtensionModuleF_Example */ = {
  114 + isa = PBXGroup;
  115 + children = (
  116 + 228D95449653AF580D576C6C2C44BAD8 /* Pods-DSExtensionModuleF_Example.modulemap */,
  117 + 7E793CD195E3C5CBA824D022FD75C64C /* Pods-DSExtensionModuleF_Example-acknowledgements.markdown */,
  118 + 81E3015A73BFDBA3B32ED830CD1D18C2 /* Pods-DSExtensionModuleF_Example-acknowledgements.plist */,
  119 + C0FDC30E03A8CEE5593725B515594E83 /* Pods-DSExtensionModuleF_Example-dummy.m */,
  120 + 1331D92753DEE53A2F7548617B076154 /* Pods-DSExtensionModuleF_Example-frameworks.sh */,
  121 + CFD7A49872465C1DDCD3E7D4AC80EB2F /* Pods-DSExtensionModuleF_Example-Info.plist */,
  122 + D10961FAD05C9BD13D0D5BA848D08DB2 /* Pods-DSExtensionModuleF_Example-umbrella.h */,
  123 + 16C23FA198079E8D7B3F34226E12B706 /* Pods-DSExtensionModuleF_Example.debug.xcconfig */,
  124 + 05A1C952E2E92AD01C9A8449E0E1C6F8 /* Pods-DSExtensionModuleF_Example.release.xcconfig */,
  125 + );
  126 + name = "Pods-DSExtensionModuleF_Example";
  127 + path = "Target Support Files/Pods-DSExtensionModuleF_Example";
  128 + sourceTree = "<group>";
  129 + };
  130 + 2BD56A08A186237ACD66147D5504AECA /* Products */ = {
  131 + isa = PBXGroup;
  132 + children = (
  133 + 1267425B9EBC46776F585FE37C4689C8 /* DSExtensionModuleF.framework */,
  134 + B8130D53A77D666E8D82E59C8646DF9D /* Pods_DSExtensionModuleF_Example.framework */,
  135 + E17C6EBA7E9775390379D339010FB285 /* Pods_DSExtensionModuleF_Tests.framework */,
  136 + );
  137 + name = Products;
  138 + sourceTree = "<group>";
  139 + };
  140 + 521E0E0830BCE6638F12ECA667E7E41B /* Targets Support Files */ = {
  141 + isa = PBXGroup;
  142 + children = (
  143 + 0EFF6A3661D510D0DCF2BF81C847B3CF /* Pods-DSExtensionModuleF_Example */,
  144 + A0F2D89CDA40ED0C52EAA93DA2E1D225 /* Pods-DSExtensionModuleF_Tests */,
  145 + );
  146 + name = "Targets Support Files";
  147 + sourceTree = "<group>";
  148 + };
  149 + 8D4CE0498DC9D018D0F2DF846F9D82F0 /* Support Files */ = {
  150 + isa = PBXGroup;
  151 + children = (
  152 + 978614D49B7BB74EC434FAB9B7825DAB /* DSExtensionModuleF.modulemap */,
  153 + FF2570548ECB213485594A78325A53C1 /* DSExtensionModuleF.xcconfig */,
  154 + 15643EBD0B3E02E7BB17AC28543B50A1 /* DSExtensionModuleF-dummy.m */,
  155 + B43140D7D1E7CEE2579ACEC520C7AB88 /* DSExtensionModuleF-Info.plist */,
  156 + 8054FE9EA3A09A68AF836DDF8626AD4C /* DSExtensionModuleF-prefix.pch */,
  157 + 22CDC459A1A0B3AF4E55AC084EAEB3D2 /* DSExtensionModuleF-umbrella.h */,
  158 + );
  159 + name = "Support Files";
  160 + path = "Example/Pods/Target Support Files/DSExtensionModuleF";
  161 + sourceTree = "<group>";
  162 + };
  163 + A0F2D89CDA40ED0C52EAA93DA2E1D225 /* Pods-DSExtensionModuleF_Tests */ = {
  164 + isa = PBXGroup;
  165 + children = (
  166 + 9C5BC1B048624CCA1B032531EB3ED18D /* Pods-DSExtensionModuleF_Tests.modulemap */,
  167 + 817B62F35ED462E4292F4B78A5340DCA /* Pods-DSExtensionModuleF_Tests-acknowledgements.markdown */,
  168 + 6E3C959D71C429C74947995B17A2690C /* Pods-DSExtensionModuleF_Tests-acknowledgements.plist */,
  169 + 7560BA165D905D3355E8AABD371B5FAA /* Pods-DSExtensionModuleF_Tests-dummy.m */,
  170 + 15A3C5D31CF7F1F3AF91010E320C25F7 /* Pods-DSExtensionModuleF_Tests-Info.plist */,
  171 + CDCD309AC45A31C91FDBFF507325F9A1 /* Pods-DSExtensionModuleF_Tests-umbrella.h */,
  172 + E15D359BDDD13792890BAA74C0921C86 /* Pods-DSExtensionModuleF_Tests.debug.xcconfig */,
  173 + 7E80A783D75928D13A96E2ACE94E6979 /* Pods-DSExtensionModuleF_Tests.release.xcconfig */,
  174 + );
  175 + name = "Pods-DSExtensionModuleF_Tests";
  176 + path = "Target Support Files/Pods-DSExtensionModuleF_Tests";
  177 + sourceTree = "<group>";
  178 + };
  179 + BB40533915CA29E959DBE9731DC25038 /* Development Pods */ = {
  180 + isa = PBXGroup;
  181 + children = (
  182 + 0B36E15ADA082C17C320AC2D75F4E8A5 /* DSExtensionModuleF */,
  183 + );
  184 + name = "Development Pods";
  185 + sourceTree = "<group>";
  186 + };
  187 + C0834CEBB1379A84116EF29F93051C60 /* iOS */ = {
  188 + isa = PBXGroup;
  189 + children = (
  190 + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */,
  191 + );
  192 + name = iOS;
  193 + sourceTree = "<group>";
  194 + };
  195 + CF1408CF629C7361332E53B88F7BD30C = {
  196 + isa = PBXGroup;
  197 + children = (
  198 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  199 + BB40533915CA29E959DBE9731DC25038 /* Development Pods */,
  200 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
  201 + 2BD56A08A186237ACD66147D5504AECA /* Products */,
  202 + 521E0E0830BCE6638F12ECA667E7E41B /* Targets Support Files */,
  203 + );
  204 + sourceTree = "<group>";
  205 + };
  206 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
  207 + isa = PBXGroup;
  208 + children = (
  209 + C0834CEBB1379A84116EF29F93051C60 /* iOS */,
  210 + );
  211 + name = Frameworks;
  212 + sourceTree = "<group>";
  213 + };
  214 + F8D950FB47C2C72A4B5DB9FE4108D6EA /* Pod */ = {
  215 + isa = PBXGroup;
  216 + children = (
  217 + 481BA8B3D72E5B55E17D039B3B5F4456 /* DSExtensionModuleF.podspec */,
  218 + 2FEDF69116FAC4D13F4AC2CF92E5D059 /* LICENSE */,
  219 + C3B1233D0247AFFF14D39BEB48560ADB /* README.md */,
  220 + );
  221 + name = Pod;
  222 + sourceTree = "<group>";
  223 + };
  224 +/* End PBXGroup section */
  225 +
  226 +/* Begin PBXHeadersBuildPhase section */
  227 + 9EEC3D23C1FF536FC70D733685643DBA /* Headers */ = {
  228 + isa = PBXHeadersBuildPhase;
  229 + buildActionMask = 2147483647;
  230 + files = (
  231 + 122F956A30ADE70791C363CE7C089773 /* Pods-DSExtensionModuleF_Example-umbrella.h in Headers */,
  232 + );
  233 + runOnlyForDeploymentPostprocessing = 0;
  234 + };
  235 + A3F6488011234CC8A155513659D2B20B /* Headers */ = {
  236 + isa = PBXHeadersBuildPhase;
  237 + buildActionMask = 2147483647;
  238 + files = (
  239 + 0A32E097DA7483D6F6EC532838C5F86C /* Pods-DSExtensionModuleF_Tests-umbrella.h in Headers */,
  240 + );
  241 + runOnlyForDeploymentPostprocessing = 0;
  242 + };
  243 + B53060FB05E1EC82F5FDCDCDFD50F129 /* Headers */ = {
  244 + isa = PBXHeadersBuildPhase;
  245 + buildActionMask = 2147483647;
  246 + files = (
  247 + 78976F924CE7A414E315FC2603165D11 /* DSExtensionModuleF-umbrella.h in Headers */,
  248 + );
  249 + runOnlyForDeploymentPostprocessing = 0;
  250 + };
  251 +/* End PBXHeadersBuildPhase section */
  252 +
  253 +/* Begin PBXNativeTarget section */
  254 + 6B68EA1997B81BD7795E34B60BF5CD93 /* Pods-DSExtensionModuleF_Example */ = {
  255 + isa = PBXNativeTarget;
  256 + buildConfigurationList = 7EDE903EA15301AD4E789607E892B3E5 /* Build configuration list for PBXNativeTarget "Pods-DSExtensionModuleF_Example" */;
  257 + buildPhases = (
  258 + 9EEC3D23C1FF536FC70D733685643DBA /* Headers */,
  259 + 2E947DBE5A75491D6607013E31E5A97A /* Sources */,
  260 + A43559CC10F1C59DE7A3E46FFA2E54BA /* Frameworks */,
  261 + D5CB19038A3B3B83F7FD5754F090E60D /* Resources */,
  262 + );
  263 + buildRules = (
  264 + );
  265 + dependencies = (
  266 + 2A7D2DE9EBDA9040B29CAFA7BB0905D7 /* PBXTargetDependency */,
  267 + );
  268 + name = "Pods-DSExtensionModuleF_Example";
  269 + productName = "Pods-DSExtensionModuleF_Example";
  270 + productReference = B8130D53A77D666E8D82E59C8646DF9D /* Pods_DSExtensionModuleF_Example.framework */;
  271 + productType = "com.apple.product-type.framework";
  272 + };
  273 + D04E311B8121F276220F3591A76D2539 /* DSExtensionModuleF */ = {
  274 + isa = PBXNativeTarget;
  275 + buildConfigurationList = FE63EA60326CE655102D7D4859ED46C9 /* Build configuration list for PBXNativeTarget "DSExtensionModuleF" */;
  276 + buildPhases = (
  277 + B53060FB05E1EC82F5FDCDCDFD50F129 /* Headers */,
  278 + 23FE366C7B196384E1ACED18010C3076 /* Sources */,
  279 + 4A57D928C89F9663D37078E918A68927 /* Frameworks */,
  280 + C41E2B8E204163E62B857F72661C2CC4 /* Resources */,
  281 + );
  282 + buildRules = (
  283 + );
  284 + dependencies = (
  285 + );
  286 + name = DSExtensionModuleF;
  287 + productName = DSExtensionModuleF;
  288 + productReference = 1267425B9EBC46776F585FE37C4689C8 /* DSExtensionModuleF.framework */;
  289 + productType = "com.apple.product-type.framework";
  290 + };
  291 + D99D861038769FEA5CC173CB9C8D253E /* Pods-DSExtensionModuleF_Tests */ = {
  292 + isa = PBXNativeTarget;
  293 + buildConfigurationList = AF0BDE528AE7AA5384A2CD8D38895DCC /* Build configuration list for PBXNativeTarget "Pods-DSExtensionModuleF_Tests" */;
  294 + buildPhases = (
  295 + A3F6488011234CC8A155513659D2B20B /* Headers */,
  296 + A81FEE6E6FD30C8F87F584A015597D0B /* Sources */,
  297 + C568818EB41D140EAE9EB87F551023AC /* Frameworks */,
  298 + 8A143534BB759D75E0FA5B7E1A98931A /* Resources */,
  299 + );
  300 + buildRules = (
  301 + );
  302 + dependencies = (
  303 + 9A7A65D499DE4C4059E6E15540C6ED5B /* PBXTargetDependency */,
  304 + );
  305 + name = "Pods-DSExtensionModuleF_Tests";
  306 + productName = "Pods-DSExtensionModuleF_Tests";
  307 + productReference = E17C6EBA7E9775390379D339010FB285 /* Pods_DSExtensionModuleF_Tests.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 = 2BD56A08A186237ACD66147D5504AECA /* Products */;
  329 + projectDirPath = "";
  330 + projectRoot = "";
  331 + targets = (
  332 + D04E311B8121F276220F3591A76D2539 /* DSExtensionModuleF */,
  333 + 6B68EA1997B81BD7795E34B60BF5CD93 /* Pods-DSExtensionModuleF_Example */,
  334 + D99D861038769FEA5CC173CB9C8D253E /* Pods-DSExtensionModuleF_Tests */,
  335 + );
  336 + };
  337 +/* End PBXProject section */
  338 +
  339 +/* Begin PBXResourcesBuildPhase section */
  340 + 8A143534BB759D75E0FA5B7E1A98931A /* Resources */ = {
  341 + isa = PBXResourcesBuildPhase;
  342 + buildActionMask = 2147483647;
  343 + files = (
  344 + );
  345 + runOnlyForDeploymentPostprocessing = 0;
  346 + };
  347 + C41E2B8E204163E62B857F72661C2CC4 /* Resources */ = {
  348 + isa = PBXResourcesBuildPhase;
  349 + buildActionMask = 2147483647;
  350 + files = (
  351 + );
  352 + runOnlyForDeploymentPostprocessing = 0;
  353 + };
  354 + D5CB19038A3B3B83F7FD5754F090E60D /* Resources */ = {
  355 + isa = PBXResourcesBuildPhase;
  356 + buildActionMask = 2147483647;
  357 + files = (
  358 + );
  359 + runOnlyForDeploymentPostprocessing = 0;
  360 + };
  361 +/* End PBXResourcesBuildPhase section */
  362 +
  363 +/* Begin PBXSourcesBuildPhase section */
  364 + 23FE366C7B196384E1ACED18010C3076 /* Sources */ = {
  365 + isa = PBXSourcesBuildPhase;
  366 + buildActionMask = 2147483647;
  367 + files = (
  368 + 25B26BB83C0964953BF43D034A28AE94 /* DSExtensionModuleF-dummy.m in Sources */,
  369 + 2D65738FDC6BFCAB8BF007B0FAB1377C /* ReplaceMe.m in Sources */,
  370 + );
  371 + runOnlyForDeploymentPostprocessing = 0;
  372 + };
  373 + 2E947DBE5A75491D6607013E31E5A97A /* Sources */ = {
  374 + isa = PBXSourcesBuildPhase;
  375 + buildActionMask = 2147483647;
  376 + files = (
  377 + 21B470B033BD8D8715AA8B3E8A4755D4 /* Pods-DSExtensionModuleF_Example-dummy.m in Sources */,
  378 + );
  379 + runOnlyForDeploymentPostprocessing = 0;
  380 + };
  381 + A81FEE6E6FD30C8F87F584A015597D0B /* Sources */ = {
  382 + isa = PBXSourcesBuildPhase;
  383 + buildActionMask = 2147483647;
  384 + files = (
  385 + AB526DF5ED192A0236620AA1F3C46E42 /* Pods-DSExtensionModuleF_Tests-dummy.m in Sources */,
  386 + );
  387 + runOnlyForDeploymentPostprocessing = 0;
  388 + };
  389 +/* End PBXSourcesBuildPhase section */
  390 +
  391 +/* Begin PBXTargetDependency section */
  392 + 2A7D2DE9EBDA9040B29CAFA7BB0905D7 /* PBXTargetDependency */ = {
  393 + isa = PBXTargetDependency;
  394 + name = DSExtensionModuleF;
  395 + target = D04E311B8121F276220F3591A76D2539 /* DSExtensionModuleF */;
  396 + targetProxy = FD4337931DE0B3A8BAD6BCBE1B7D9D21 /* PBXContainerItemProxy */;
  397 + };
  398 + 9A7A65D499DE4C4059E6E15540C6ED5B /* PBXTargetDependency */ = {
  399 + isa = PBXTargetDependency;
  400 + name = "Pods-DSExtensionModuleF_Example";
  401 + target = 6B68EA1997B81BD7795E34B60BF5CD93 /* Pods-DSExtensionModuleF_Example */;
  402 + targetProxy = 474378EDCBAFC51760A53A37422D1400 /* PBXContainerItemProxy */;
  403 + };
  404 +/* End PBXTargetDependency section */
  405 +
  406 +/* Begin XCBuildConfiguration section */
  407 + 1C9AC57AD92144C83F08646898616C08 /* Debug */ = {
  408 + isa = XCBuildConfiguration;
  409 + baseConfigurationReference = FF2570548ECB213485594A78325A53C1 /* DSExtensionModuleF.xcconfig */;
  410 + buildSettings = {
  411 + CODE_SIGN_IDENTITY = "";
  412 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  413 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  414 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  415 + CURRENT_PROJECT_VERSION = 1;
  416 + DEFINES_MODULE = YES;
  417 + DYLIB_COMPATIBILITY_VERSION = 1;
  418 + DYLIB_CURRENT_VERSION = 1;
  419 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  420 + GCC_PREFIX_HEADER = "Target Support Files/DSExtensionModuleF/DSExtensionModuleF-prefix.pch";
  421 + INFOPLIST_FILE = "Target Support Files/DSExtensionModuleF/DSExtensionModuleF-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 + MODULEMAP_FILE = "Target Support Files/DSExtensionModuleF/DSExtensionModuleF.modulemap";
  426 + PRODUCT_MODULE_NAME = DSExtensionModuleF;
  427 + PRODUCT_NAME = DSExtensionModuleF;
  428 + SDKROOT = iphoneos;
  429 + SKIP_INSTALL = YES;
  430 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  431 + SWIFT_VERSION = 4.0;
  432 + TARGETED_DEVICE_FAMILY = "1,2";
  433 + VERSIONING_SYSTEM = "apple-generic";
  434 + VERSION_INFO_PREFIX = "";
  435 + };
  436 + name = Debug;
  437 + };
  438 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = {
  439 + isa = XCBuildConfiguration;
  440 + buildSettings = {
  441 + ALWAYS_SEARCH_USER_PATHS = NO;
  442 + CLANG_ANALYZER_NONNULL = YES;
  443 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  444 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  445 + CLANG_CXX_LIBRARY = "libc++";
  446 + CLANG_ENABLE_MODULES = YES;
  447 + CLANG_ENABLE_OBJC_ARC = YES;
  448 + CLANG_ENABLE_OBJC_WEAK = YES;
  449 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  450 + CLANG_WARN_BOOL_CONVERSION = YES;
  451 + CLANG_WARN_COMMA = YES;
  452 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  453 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  454 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  455 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  456 + CLANG_WARN_EMPTY_BODY = YES;
  457 + CLANG_WARN_ENUM_CONVERSION = YES;
  458 + CLANG_WARN_INFINITE_RECURSION = YES;
  459 + CLANG_WARN_INT_CONVERSION = YES;
  460 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  461 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  462 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  463 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  464 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  465 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  466 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  467 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  468 + CLANG_WARN_UNREACHABLE_CODE = YES;
  469 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  470 + COPY_PHASE_STRIP = NO;
  471 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  472 + ENABLE_NS_ASSERTIONS = NO;
  473 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  474 + GCC_C_LANGUAGE_STANDARD = gnu11;
  475 + GCC_NO_COMMON_BLOCKS = YES;
  476 + GCC_PREPROCESSOR_DEFINITIONS = (
  477 + "POD_CONFIGURATION_RELEASE=1",
  478 + "$(inherited)",
  479 + );
  480 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  481 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  482 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  483 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  484 + GCC_WARN_UNUSED_FUNCTION = YES;
  485 + GCC_WARN_UNUSED_VARIABLE = YES;
  486 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  487 + MTL_ENABLE_DEBUG_INFO = NO;
  488 + MTL_FAST_MATH = YES;
  489 + PRODUCT_NAME = "$(TARGET_NAME)";
  490 + STRIP_INSTALLED_PRODUCT = NO;
  491 + SWIFT_COMPILATION_MODE = wholemodule;
  492 + SWIFT_OPTIMIZATION_LEVEL = "-O";
  493 + SWIFT_VERSION = 5.0;
  494 + SYMROOT = "${SRCROOT}/../build";
  495 + };
  496 + name = Release;
  497 + };
  498 + 5B7D68C606963B2BE81E642C17CE870E /* Release */ = {
  499 + isa = XCBuildConfiguration;
  500 + baseConfigurationReference = FF2570548ECB213485594A78325A53C1 /* DSExtensionModuleF.xcconfig */;
  501 + buildSettings = {
  502 + CODE_SIGN_IDENTITY = "";
  503 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  504 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  505 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  506 + CURRENT_PROJECT_VERSION = 1;
  507 + DEFINES_MODULE = YES;
  508 + DYLIB_COMPATIBILITY_VERSION = 1;
  509 + DYLIB_CURRENT_VERSION = 1;
  510 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  511 + GCC_PREFIX_HEADER = "Target Support Files/DSExtensionModuleF/DSExtensionModuleF-prefix.pch";
  512 + INFOPLIST_FILE = "Target Support Files/DSExtensionModuleF/DSExtensionModuleF-Info.plist";
  513 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  514 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  515 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  516 + MODULEMAP_FILE = "Target Support Files/DSExtensionModuleF/DSExtensionModuleF.modulemap";
  517 + PRODUCT_MODULE_NAME = DSExtensionModuleF;
  518 + PRODUCT_NAME = DSExtensionModuleF;
  519 + SDKROOT = iphoneos;
  520 + SKIP_INSTALL = YES;
  521 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  522 + SWIFT_VERSION = 4.0;
  523 + TARGETED_DEVICE_FAMILY = "1,2";
  524 + VALIDATE_PRODUCT = YES;
  525 + VERSIONING_SYSTEM = "apple-generic";
  526 + VERSION_INFO_PREFIX = "";
  527 + };
  528 + name = Release;
  529 + };
  530 + 728142863D9156655476823419A25ACF /* Release */ = {
  531 + isa = XCBuildConfiguration;
  532 + baseConfigurationReference = 05A1C952E2E92AD01C9A8449E0E1C6F8 /* Pods-DSExtensionModuleF_Example.release.xcconfig */;
  533 + buildSettings = {
  534 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  535 + CODE_SIGN_IDENTITY = "";
  536 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  537 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  538 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  539 + CURRENT_PROJECT_VERSION = 1;
  540 + DEFINES_MODULE = YES;
  541 + DYLIB_COMPATIBILITY_VERSION = 1;
  542 + DYLIB_CURRENT_VERSION = 1;
  543 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  544 + INFOPLIST_FILE = "Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-Info.plist";
  545 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  546 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  547 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  548 + MACH_O_TYPE = staticlib;
  549 + MODULEMAP_FILE = "Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.modulemap";
  550 + OTHER_LDFLAGS = "";
  551 + OTHER_LIBTOOLFLAGS = "";
  552 + PODS_ROOT = "$(SRCROOT)";
  553 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  554 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  555 + SDKROOT = iphoneos;
  556 + SKIP_INSTALL = YES;
  557 + TARGETED_DEVICE_FAMILY = "1,2";
  558 + VALIDATE_PRODUCT = YES;
  559 + VERSIONING_SYSTEM = "apple-generic";
  560 + VERSION_INFO_PREFIX = "";
  561 + };
  562 + name = Release;
  563 + };
  564 + 7B7BE1F805DBACFBD4ED6F3ADF271F51 /* Release */ = {
  565 + isa = XCBuildConfiguration;
  566 + baseConfigurationReference = 7E80A783D75928D13A96E2ACE94E6979 /* Pods-DSExtensionModuleF_Tests.release.xcconfig */;
  567 + buildSettings = {
  568 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  569 + CODE_SIGN_IDENTITY = "";
  570 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  571 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  572 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  573 + CURRENT_PROJECT_VERSION = 1;
  574 + DEFINES_MODULE = YES;
  575 + DYLIB_COMPATIBILITY_VERSION = 1;
  576 + DYLIB_CURRENT_VERSION = 1;
  577 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  578 + INFOPLIST_FILE = "Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-Info.plist";
  579 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  580 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  581 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  582 + MACH_O_TYPE = staticlib;
  583 + MODULEMAP_FILE = "Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.modulemap";
  584 + OTHER_LDFLAGS = "";
  585 + OTHER_LIBTOOLFLAGS = "";
  586 + PODS_ROOT = "$(SRCROOT)";
  587 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  588 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  589 + SDKROOT = iphoneos;
  590 + SKIP_INSTALL = YES;
  591 + TARGETED_DEVICE_FAMILY = "1,2";
  592 + VALIDATE_PRODUCT = YES;
  593 + VERSIONING_SYSTEM = "apple-generic";
  594 + VERSION_INFO_PREFIX = "";
  595 + };
  596 + name = Release;
  597 + };
  598 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = {
  599 + isa = XCBuildConfiguration;
  600 + buildSettings = {
  601 + ALWAYS_SEARCH_USER_PATHS = NO;
  602 + CLANG_ANALYZER_NONNULL = YES;
  603 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  604 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  605 + CLANG_CXX_LIBRARY = "libc++";
  606 + CLANG_ENABLE_MODULES = YES;
  607 + CLANG_ENABLE_OBJC_ARC = YES;
  608 + CLANG_ENABLE_OBJC_WEAK = YES;
  609 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  610 + CLANG_WARN_BOOL_CONVERSION = YES;
  611 + CLANG_WARN_COMMA = YES;
  612 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  613 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  614 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  615 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  616 + CLANG_WARN_EMPTY_BODY = YES;
  617 + CLANG_WARN_ENUM_CONVERSION = YES;
  618 + CLANG_WARN_INFINITE_RECURSION = YES;
  619 + CLANG_WARN_INT_CONVERSION = YES;
  620 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  621 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  622 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  623 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  624 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  625 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  626 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  627 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  628 + CLANG_WARN_UNREACHABLE_CODE = YES;
  629 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  630 + COPY_PHASE_STRIP = NO;
  631 + DEBUG_INFORMATION_FORMAT = dwarf;
  632 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  633 + ENABLE_TESTABILITY = YES;
  634 + GCC_C_LANGUAGE_STANDARD = gnu11;
  635 + GCC_DYNAMIC_NO_PIC = NO;
  636 + GCC_NO_COMMON_BLOCKS = YES;
  637 + GCC_OPTIMIZATION_LEVEL = 0;
  638 + GCC_PREPROCESSOR_DEFINITIONS = (
  639 + "POD_CONFIGURATION_DEBUG=1",
  640 + "DEBUG=1",
  641 + "$(inherited)",
  642 + );
  643 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  644 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  645 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  646 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  647 + GCC_WARN_UNUSED_FUNCTION = YES;
  648 + GCC_WARN_UNUSED_VARIABLE = YES;
  649 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  650 + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  651 + MTL_FAST_MATH = YES;
  652 + ONLY_ACTIVE_ARCH = YES;
  653 + PRODUCT_NAME = "$(TARGET_NAME)";
  654 + STRIP_INSTALLED_PRODUCT = NO;
  655 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  656 + SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  657 + SWIFT_VERSION = 5.0;
  658 + SYMROOT = "${SRCROOT}/../build";
  659 + };
  660 + name = Debug;
  661 + };
  662 + 9470A860DB71D2E58C9BE70BC86EAE7C /* Debug */ = {
  663 + isa = XCBuildConfiguration;
  664 + baseConfigurationReference = 16C23FA198079E8D7B3F34226E12B706 /* Pods-DSExtensionModuleF_Example.debug.xcconfig */;
  665 + buildSettings = {
  666 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  667 + CODE_SIGN_IDENTITY = "";
  668 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  669 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  670 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  671 + CURRENT_PROJECT_VERSION = 1;
  672 + DEFINES_MODULE = YES;
  673 + DYLIB_COMPATIBILITY_VERSION = 1;
  674 + DYLIB_CURRENT_VERSION = 1;
  675 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  676 + INFOPLIST_FILE = "Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-Info.plist";
  677 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  678 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  679 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  680 + MACH_O_TYPE = staticlib;
  681 + MODULEMAP_FILE = "Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.modulemap";
  682 + OTHER_LDFLAGS = "";
  683 + OTHER_LIBTOOLFLAGS = "";
  684 + PODS_ROOT = "$(SRCROOT)";
  685 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  686 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  687 + SDKROOT = iphoneos;
  688 + SKIP_INSTALL = YES;
  689 + TARGETED_DEVICE_FAMILY = "1,2";
  690 + VERSIONING_SYSTEM = "apple-generic";
  691 + VERSION_INFO_PREFIX = "";
  692 + };
  693 + name = Debug;
  694 + };
  695 + A6D91AB2771943C7EB30306A0C1ACAB1 /* Debug */ = {
  696 + isa = XCBuildConfiguration;
  697 + baseConfigurationReference = E15D359BDDD13792890BAA74C0921C86 /* Pods-DSExtensionModuleF_Tests.debug.xcconfig */;
  698 + buildSettings = {
  699 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  700 + CODE_SIGN_IDENTITY = "";
  701 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  702 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  703 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  704 + CURRENT_PROJECT_VERSION = 1;
  705 + DEFINES_MODULE = YES;
  706 + DYLIB_COMPATIBILITY_VERSION = 1;
  707 + DYLIB_CURRENT_VERSION = 1;
  708 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  709 + INFOPLIST_FILE = "Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-Info.plist";
  710 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  711 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  712 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  713 + MACH_O_TYPE = staticlib;
  714 + MODULEMAP_FILE = "Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.modulemap";
  715 + OTHER_LDFLAGS = "";
  716 + OTHER_LIBTOOLFLAGS = "";
  717 + PODS_ROOT = "$(SRCROOT)";
  718 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  719 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  720 + SDKROOT = iphoneos;
  721 + SKIP_INSTALL = YES;
  722 + TARGETED_DEVICE_FAMILY = "1,2";
  723 + VERSIONING_SYSTEM = "apple-generic";
  724 + VERSION_INFO_PREFIX = "";
  725 + };
  726 + name = Debug;
  727 + };
  728 +/* End XCBuildConfiguration section */
  729 +
  730 +/* Begin XCConfigurationList section */
  731 + 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 + 7EDE903EA15301AD4E789607E892B3E5 /* Build configuration list for PBXNativeTarget "Pods-DSExtensionModuleF_Example" */ = {
  741 + isa = XCConfigurationList;
  742 + buildConfigurations = (
  743 + 9470A860DB71D2E58C9BE70BC86EAE7C /* Debug */,
  744 + 728142863D9156655476823419A25ACF /* Release */,
  745 + );
  746 + defaultConfigurationIsVisible = 0;
  747 + defaultConfigurationName = Release;
  748 + };
  749 + AF0BDE528AE7AA5384A2CD8D38895DCC /* Build configuration list for PBXNativeTarget "Pods-DSExtensionModuleF_Tests" */ = {
  750 + isa = XCConfigurationList;
  751 + buildConfigurations = (
  752 + A6D91AB2771943C7EB30306A0C1ACAB1 /* Debug */,
  753 + 7B7BE1F805DBACFBD4ED6F3ADF271F51 /* Release */,
  754 + );
  755 + defaultConfigurationIsVisible = 0;
  756 + defaultConfigurationName = Release;
  757 + };
  758 + FE63EA60326CE655102D7D4859ED46C9 /* Build configuration list for PBXNativeTarget "DSExtensionModuleF" */ = {
  759 + isa = XCConfigurationList;
  760 + buildConfigurations = (
  761 + 1C9AC57AD92144C83F08646898616C08 /* Debug */,
  762 + 5B7D68C606963B2BE81E642C17CE870E /* 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/DSExtensionModuleF.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSExtensionModuleF.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 = "D04E311B8121F276220F3591A76D2539"
  18 + BuildableName = "DSExtensionModuleF.framework"
  19 + BlueprintName = "DSExtensionModuleF"
  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-DSExtensionModuleF_Example.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSExtensionModuleF_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 = "6B68EA1997B81BD7795E34B60BF5CD93"
  18 + BuildableName = "Pods_DSExtensionModuleF_Example.framework"
  19 + BlueprintName = "Pods-DSExtensionModuleF_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-DSExtensionModuleF_Tests.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSExtensionModuleF_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 = "D99D861038769FEA5CC173CB9C8D253E"
  18 + BuildableName = "Pods_DSExtensionModuleF_Tests.framework"
  19 + BlueprintName = "Pods-DSExtensionModuleF_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>DSExtensionModuleF.xcscheme</key>
  8 + <dict>
  9 + <key>isShown</key>
  10 + <false/>
  11 + </dict>
  12 + <key>Pods-DSExtensionModuleF_Example.xcscheme</key>
  13 + <dict>
  14 + <key>isShown</key>
  15 + <false/>
  16 + </dict>
  17 + <key>Pods-DSExtensionModuleF_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/DSExtensionModuleF/DSExtensionModuleF-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF-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/DSExtensionModuleF/DSExtensionModuleF-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_DSExtensionModuleF : NSObject
  3 +@end
  4 +@implementation PodsDummy_DSExtensionModuleF
  5 +@end
Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF-prefix.pch 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF-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/DSExtensionModuleF/DSExtensionModuleF-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF-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 DSExtensionModuleFVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char DSExtensionModuleFVersionString[];
  16 +
Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF.modulemap
  1 +framework module DSExtensionModuleF {
  2 + umbrella header "DSExtensionModuleF-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSExtensionModuleF/DSExtensionModuleF.xcconfig
  1 +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF
  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-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_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-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +
  4 +## DSExtensionModuleF
  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-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_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>DSExtensionModuleF</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-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSExtensionModuleF_Example : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSExtensionModuleF_Example
  5 +@end
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-frameworks.sh 0 → 100755
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_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}/DSExtensionModuleF/DSExtensionModuleF.framework"
  165 +fi
  166 +if [[ "$CONFIGURATION" == "Release" ]]; then
  167 + install_framework "${BUILT_PRODUCTS_DIR}/DSExtensionModuleF/DSExtensionModuleF.framework"
  168 +fi
  169 +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
  170 + wait
  171 +fi
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_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_DSExtensionModuleF_ExampleVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSExtensionModuleF_ExampleVersionString[];
  16 +
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF/DSExtensionModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSExtensionModuleF"
  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-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.modulemap
  1 +framework module Pods_DSExtensionModuleF_Example {
  2 + umbrella header "Pods-DSExtensionModuleF_Example-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Example/Pods-DSExtensionModuleF_Example.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF/DSExtensionModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSExtensionModuleF"
  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-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_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-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_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-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_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-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSExtensionModuleF_Tests : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSExtensionModuleF_Tests
  5 +@end
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_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_DSExtensionModuleF_TestsVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSExtensionModuleF_TestsVersionString[];
  16 +
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF/DSExtensionModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSExtensionModuleF"
  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-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.modulemap
  1 +framework module Pods_DSExtensionModuleF_Tests {
  2 + umbrella header "Pods-DSExtensionModuleF_Tests-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSExtensionModuleF_Tests/Pods-DSExtensionModuleF_Tests.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSExtensionModuleF/DSExtensionModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSExtensionModuleF"
  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 +// DSExtensionModuleFTests.m
  3 +// DSExtensionModuleFTests
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import XCTest;
  10 +
  11 +@interface Tests : XCTestCase
  12 +
  13 +@end
  14 +
  15 +@implementation Tests
  16 +
  17 +- (void)setUp
  18 +{
  19 + [super setUp];
  20 + // Put setup code here. This method is called before the invocation of each test method in the class.
  21 +}
  22 +
  23 +- (void)tearDown
  24 +{
  25 + // Put teardown code here. This method is called after the invocation of each test method in the class.
  26 + [super tearDown];
  27 +}
  28 +
  29 +- (void)testExample
  30 +{
  31 + XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
  32 +}
  33 +
  34 +@end
  35 +
Example/Tests/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/Tests/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
LICENSE 0 → 100644
  1 +++ a/LICENSE
  1 +Copyright (c) 2020 694092596@qq.com <694092596@qq.com>
  2 +
  3 +Permission is hereby granted, free of charge, to any person obtaining a copy
  4 +of this software and associated documentation files (the "Software"), to deal
  5 +in the Software without restriction, including without limitation the rights
  6 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7 +copies of the Software, and to permit persons to whom the Software is
  8 +furnished to do so, subject to the following conditions:
  9 +
  10 +The above copyright notice and this permission notice shall be included in
  11 +all copies or substantial portions of the Software.
  12 +
  13 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19 +THE SOFTWARE.
README.md 0 → 100644
  1 +++ a/README.md
  1 +# DSExtensionModuleF
  2 +
  3 +[![CI Status](https://img.shields.io/travis/694092596@qq.com/DSExtensionModuleF.svg?style=flat)](https://travis-ci.org/694092596@qq.com/DSExtensionModuleF)
  4 +[![Version](https://img.shields.io/cocoapods/v/DSExtensionModuleF.svg?style=flat)](https://cocoapods.org/pods/DSExtensionModuleF)
  5 +[![License](https://img.shields.io/cocoapods/l/DSExtensionModuleF.svg?style=flat)](https://cocoapods.org/pods/DSExtensionModuleF)
  6 +[![Platform](https://img.shields.io/cocoapods/p/DSExtensionModuleF.svg?style=flat)](https://cocoapods.org/pods/DSExtensionModuleF)
  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 +DSExtensionModuleF is available through [CocoaPods](https://cocoapods.org). To install
  17 +it, simply add the following line to your Podfile:
  18 +
  19 +```ruby
  20 +pod 'DSExtensionModuleF'
  21 +```
  22 +
  23 +## Author
  24 +
  25 +694092596@qq.com, 694092596@qq.com
  26 +
  27 +## License
  28 +
  29 +DSExtensionModuleF is available under the MIT license. See the LICENSE file for more info.
_Pods.xcodeproj 0 → 120000
  1 +++ a/_Pods.xcodeproj
  1 +Example/Pods/Pods.xcodeproj
0 \ No newline at end of file 2 \ No newline at end of file