Commit 32fd4f3f9f2cf73c8a0f78e002a0928b2d776e50

Authored by 毕珂
0 parents

0.0.3

Showing 111 changed files with 4927 additions and 0 deletions
DSVideoContestModuleF.podspec 0 → 100644
  1 +++ a/DSVideoContestModuleF.podspec
  1 +Pod::Spec.new do |s|
  2 +
  3 + s.name = "DSVideoContestModuleF"
  4 + s.version = "0.0.3"
  5 + s.summary = "DSVideoContestModuleF"
  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/DSVideoContestModuleF.git', :tag => s.version.to_s }
  10 + s.ios.deployment_target = '9.0'
  11 + s.vendored_frameworks = "DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework"
  12 + s.frameworks = 'Foundation', 'UIKit'
  13 + s.xcconfig = {
  14 + 'ENABLE_BITCODE' => 'NO'
  15 + }
  16 + s.pod_target_xcconfig = {
  17 + 'VALID_ARCHS' => 'arm64'
  18 + }
  19 +
  20 + s.dependency 'MGJRouter', '~> 0.10.0'
  21 +
  22 + s.dependency 'DSBaseModuleF', '>=0.0.0', '<1.0.0'
  23 + s.dependency 'DSToolsModuleF', '>=0.0.0', '<1.0.0'
  24 + s.dependency 'DSCommonModuleF', '>=0.0.0', '<1.0.0'
  25 + s.dependency 'DSWebViewModuleF', '>=0.0.0', '<1.0.0'
  26 +
  27 +end
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/DSVideoContestModule 0 → 100755
No preview for this file type
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/DSVideoContestModule.bundle/Assets.car 0 → 100644
No preview for this file type
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/DSVideoContestModule.bundle/Info.plist 0 → 100644
No preview for this file type
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPModel.h
  1 +//
  2 +// DSGamePlayerHPModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/24.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +#pragma mark - 活动信息-直播信息-播流地址
  14 +
  15 +@interface DSGamePlayerHPVALivePlayModel : NSObject
  16 +
  17 +/**
  18 + RTMP播流
  19 + */
  20 +@property (nonatomic,copy) NSString * RTMPPlayURL;
  21 +/**
  22 + M3U8播流
  23 + */
  24 +@property (nonatomic,copy) NSString * HLSPlayURL;
  25 +/**
  26 + FLV播流
  27 + */
  28 +@property (nonatomic,copy) NSString * HDLPlayURL;
  29 +
  30 +@end
  31 +
  32 +#pragma mark - 活动信息-直播信息-预热视频
  33 +
  34 +@interface DSGamePlayerHPVALivePreVideoModel : NSObject
  35 +
  36 +/**
  37 +
  38 + */
  39 +@property (nonatomic,copy) NSString * id;
  40 +/**
  41 +
  42 + */
  43 +@property (nonatomic,copy) NSString * title;
  44 +/**
  45 + 预热视频封面
  46 + */
  47 +@property (nonatomic,copy) NSString * img;
  48 +/**
  49 + 预热视频地址
  50 + */
  51 +@property (nonatomic,copy) NSString * video;
  52 +
  53 +@end
  54 +
  55 +#pragma mark - 活动信息-直播信息-回放列表
  56 +
  57 +@interface DSGamePlayerHPVALivePlaybackListModel : NSObject
  58 +
  59 +/**
  60 +
  61 + */
  62 +@property (nonatomic,copy) NSString * id;
  63 +/**
  64 +
  65 + */
  66 +@property (nonatomic,copy) NSString * title;
  67 +/**
  68 + 回放链接
  69 + */
  70 +@property (nonatomic,copy) NSString * video;
  71 +/**
  72 +
  73 + */
  74 +@property (nonatomic,copy) NSString * live_id;
  75 +/**
  76 +
  77 + */
  78 +@property (nonatomic,copy) NSString * start_time;
  79 +/**
  80 +
  81 + */
  82 +@property (nonatomic,copy) NSString * end_time;
  83 +/**
  84 +
  85 + */
  86 +@property (nonatomic,copy) NSString * state;
  87 +
  88 +@end
  89 +
  90 +#pragma mark - 活动信息-直播信息
  91 +
  92 +@interface DSGamePlayerHPVALiveModel : NSObject
  93 +
  94 +/**
  95 + 直播id
  96 + */
  97 +@property (nonatomic,copy) NSString * id;
  98 +/**
  99 + 直播标题
  100 + */
  101 +@property (nonatomic,copy) NSString * title;
  102 +/**
  103 + 封面图
  104 + */
  105 +@property (nonatomic,copy) NSString * img;
  106 +/**
  107 + 主办单位
  108 + */
  109 +@property (nonatomic,copy) NSString * host;
  110 +/**
  111 + 合作单位
  112 + */
  113 +@property (nonatomic,copy) NSString * cooperation;
  114 +/**
  115 + 地点
  116 + */
  117 +@property (nonatomic,copy) NSString * address;
  118 +/**
  119 + 分享标题
  120 + */
  121 +@property (nonatomic,copy) NSString * share_title;
  122 +/**
  123 + 分享图片
  124 + */
  125 +@property (nonatomic,copy) NSString * share_img;
  126 +/**
  127 + 分享简介
  128 + */
  129 +@property (nonatomic,copy) NSString * share_desc;
  130 +/**
  131 + 直播预计开始时间
  132 + */
  133 +@property (nonatomic,copy) NSString * start_time;
  134 +/**
  135 + 2开启回放 1关闭回放
  136 + */
  137 +@property (nonatomic,copy) NSString * playback;
  138 +/**
  139 + 1 未开启直播 2直播中 3直播已结束
  140 + */
  141 +@property (nonatomic,copy) NSString * status;
  142 +/**
  143 + 播流地址
  144 + */
  145 +@property (nonatomic,strong) DSGamePlayerHPVALivePlayModel * play;
  146 +/**
  147 + 预热视频
  148 + */
  149 +@property (nonatomic,strong) DSGamePlayerHPVALivePreVideoModel * live_pre_video;
  150 +/**
  151 + 回放列表
  152 + */
  153 +@property (nonatomic,copy) NSArray<DSGamePlayerHPVALivePlaybackListModel*> * playbackList;
  154 +
  155 +@end
  156 +
  157 +#pragma mark - 活动信息
  158 +
  159 +@interface DSGamePlayerHPVoteActivityModel : NSObject
  160 +
  161 +/**
  162 +
  163 + */
  164 +@property (nonatomic,copy) NSString * id;
  165 +/**
  166 + 活动标题
  167 + */
  168 +@property (nonatomic,copy) NSString * title;
  169 +/**
  170 + 用户排名
  171 + */
  172 +@property (nonatomic,copy) NSString * ranking;
  173 +/**
  174 + 直播信息
  175 + */
  176 +@property (nonatomic,strong) DSGamePlayerHPVALiveModel * live;
  177 +
  178 +@end
  179 +
  180 +#pragma mark - 粉丝列表
  181 +
  182 +@interface DSGamePlayerHPFansModel : NSObject
  183 +
  184 +/**
  185 + 粉丝id
  186 + */
  187 +@property (nonatomic,copy) NSString * id;
  188 +/**
  189 + 粉丝标题
  190 + */
  191 +@property (nonatomic,copy) NSString * title;
  192 +/**
  193 + 粉丝图片
  194 + */
  195 +@property (nonatomic,copy) NSString * img;
  196 +
  197 +@end
  198 +
  199 +#pragma mark - 第一级
  200 +
  201 +@interface DSGamePlayerHPModel : NSObject
  202 +
  203 +/**
  204 + 选手id
  205 + */
  206 +@property (nonatomic,copy) NSString * id;
  207 +/**
  208 + 用户名称
  209 + */
  210 +@property (nonatomic,copy) NSString * title;
  211 +/**
  212 + 用户头像
  213 + */
  214 +@property (nonatomic,copy) NSString * img;
  215 +/**
  216 + 签名
  217 + */
  218 +@property (nonatomic,copy) NSString * desc;
  219 +/**
  220 + 分享标题
  221 + */
  222 +@property (nonatomic,copy) NSString * share_title;
  223 +/**
  224 + 分享图片
  225 + */
  226 +@property (nonatomic,copy) NSString * share_img;
  227 +/**
  228 + 分享简介
  229 + */
  230 +@property (nonatomic,copy) NSString * share_desc;
  231 +/**
  232 + 分享链接
  233 + */
  234 +@property (nonatomic,copy) NSString * share_url;
  235 +/**
  236 + 活动id
  237 + */
  238 +@property (nonatomic,copy) NSString * vote_activity_id;
  239 +/**
  240 +
  241 + */
  242 +@property (nonatomic,copy) NSString * number;
  243 +/**
  244 + 守护值
  245 + */
  246 +@property (nonatomic,copy) NSString * votes;
  247 +/**
  248 + 总守护值
  249 + */
  250 +@property (nonatomic,copy) NSString * votes_count;
  251 +/**
  252 + 粉丝数
  253 + */
  254 +@property (nonatomic,copy) NSString * fans_count;
  255 +/**
  256 + 1未关注 2已关注
  257 + */
  258 +@property (nonatomic,copy) NSString * is_fans;
  259 +/**
  260 + 活动信息
  261 + */
  262 +@property (nonatomic,strong) DSGamePlayerHPVoteActivityModel * vote_activity;
  263 +/**
  264 + 粉丝列表
  265 + */
  266 +@property (nonatomic,copy) NSArray<DSGamePlayerHPFansModel*> * fans;
  267 +
  268 +@end
  269 +
  270 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableHeaderPCollectionViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableHeaderPCollectionViewCell.h
  1 +//
  2 +// DSGamePlayerHPTableHeaderPCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/24.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSGamePlayerHPModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSGamePlayerHPTableHeaderPCollectionViewCell : UICollectionViewCell
  15 +
  16 +@property (nonatomic,strong,nullable) DSGamePlayerHPFansModel * model;
  17 +
  18 +@end
  19 +
  20 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableHeaderView.h
  1 +//
  2 +// DSGamePlayerHPTableHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/22.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSGamePlayerHPModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSGamePlayerHPTableHeaderView : UIView
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSGamePlayerHPModel * model;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 点击关注回调
  24 + */
  25 +@property (nonatomic,copy) void (^clickAttentionCallBack)(void);
  26 +/**
  27 + 点击个人主页回调
  28 + */
  29 +@property (nonatomic,copy) void (^clickHomepageCallBack)(void);
  30 +/**
  31 + 点击粉丝更多回调
  32 + */
  33 +@property (nonatomic,copy) void (^clickMoreFansCallBack)(void);
  34 +
  35 +@end
  36 +
  37 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableSectionHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableSectionHeaderView.h
  1 +//
  2 +// DSGamePlayerHPTableSectionHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/24.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSGamePlayerHPTableSectionHeaderView : UITableViewHeaderFooterView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTableViewCell.h
  1 +//
  2 +// DSGamePlayerHPTableViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/22.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +#import "DSGamePlayerHPModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSGamePlayerHPTableViewCell : DSTableViewCell
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSGamePlayerHPModel * model;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 点击守护回调
  24 + */
  25 +@property (nonatomic,copy) void (^clickGuardCallBack)(DSGamePlayerHPModel * model);
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTopBgGradientView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSGamePlayerHPTopBgGradientView.h
  1 +//
  2 +// DSGamePlayerHPTopBgGradientView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSGamePlayerHPTopBgGradientView : UIView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCDisplaySendGameGiftModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCDisplaySendGameGiftModel.h
  1 +//
  2 +// DSVCDisplaySendGameGiftModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/27.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +@class DSVCDisplaySendGameSingleGiftView;
  12 +
  13 +NS_ASSUME_NONNULL_BEGIN
  14 +
  15 +@interface DSVCDisplaySendGameGiftModel : NSObject
  16 +
  17 +/**
  18 + 模拟礼物类型
  19 + */
  20 +@property (nonatomic,copy) NSString * type;
  21 +/**
  22 + 礼物数量
  23 + */
  24 +@property (nonatomic,assign) NSUInteger count;
  25 +/**
  26 + 礼物显示时间
  27 + */
  28 +@property (nonatomic,assign) CGFloat displayTime;
  29 +
  30 +/**
  31 + 正在显示的礼物
  32 + */
  33 +@property (nonatomic,strong,nullable) DSVCDisplaySendGameSingleGiftView * displayGiftView;
  34 +
  35 +@end
  36 +
  37 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCDisplaySendGameGiftView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCDisplaySendGameGiftView.h
  1 +//
  2 +// DSVCDisplaySendGameGiftView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/27.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCDisplaySendGameGiftView : UIView
  14 +
  15 +-(void)sendGift1;
  16 +-(void)sendGift2;
  17 +-(void)sendGift3;
  18 +
  19 +@end
  20 +
  21 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCDisplaySendGameSingleGiftView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCDisplaySendGameSingleGiftView.h
  1 +//
  2 +// DSVCDisplaySendGameSingleGiftView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/27.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCDisplaySendGameGiftModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCDisplaySendGameSingleGiftView : UIView
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSVCDisplaySendGameGiftModel * model;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantCollectionReusableFooterView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantCollectionReusableFooterView.h
  1 +//
  2 +// DSVCGLContestantCollectionReusableFooterView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/19.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLContestantCollectionReusableFooterView : UICollectionReusableView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantCollectionReusableHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantCollectionReusableHeaderView.h
  1 +//
  2 +// DSVCGLContestantCollectionReusableHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGLContestantCollectionReusableHeaderView : UICollectionReusableView
  15 +
  16 +@property (nonatomic,strong) DSVCGLContestantModel * model;
  17 +
  18 +@end
  19 +
  20 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantCollectionViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantCollectionViewCell.h
  1 +//
  2 +// DSVCGLContestantCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGLContestantCollectionViewCell : UICollectionViewCell
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSVCGLContestantUserModel * model;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 点击选手守护回调
  24 + */
  25 +@property (nonatomic,copy) void (^clickGuardPlayerCallBack)(DSVCGLContestantUserModel * model);
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantModel.h
  1 +//
  2 +// DSVCGLContestantModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLContestantUserModel : NSObject
  14 +
  15 +/**
  16 + 参赛选手id
  17 + */
  18 +@property (nonatomic,copy) NSString * id;
  19 +/**
  20 + 参赛选手名称
  21 + */
  22 +@property (nonatomic,copy) NSString * title;
  23 +/**
  24 + 参赛选手图片
  25 + */
  26 +@property (nonatomic,copy) NSString * img;
  27 +/**
  28 + 签名
  29 + */
  30 +@property (nonatomic,copy) NSString * desc;
  31 +/**
  32 + 分享标题
  33 + */
  34 +@property (nonatomic,copy) NSString * share_title;
  35 +/**
  36 + 分享图片
  37 + */
  38 +@property (nonatomic,copy) NSString * share_img;
  39 +/**
  40 + 分享简介
  41 + */
  42 +@property (nonatomic,copy) NSString * share_desc;
  43 +/**
  44 + 活动id
  45 + */
  46 +@property (nonatomic,copy) NSString * vote_activity_id;
  47 +/**
  48 + 参赛选手编号
  49 + */
  50 +@property (nonatomic,copy) NSString * number;
  51 +/**
  52 + 1男 2女
  53 + */
  54 +@property (nonatomic,copy) NSString * sex;
  55 +/**
  56 + 守护值
  57 + */
  58 +@property (nonatomic,copy) NSString * votes;
  59 +/**
  60 + 排名
  61 + */
  62 +@property (nonatomic,copy) NSString * ranking;
  63 +
  64 +@end
  65 +
  66 +@interface DSVCGLContestantModel : NSObject
  67 +
  68 +/**
  69 + 参赛选手列表
  70 + */
  71 +@property (nonatomic,copy) NSArray<DSVCGLContestantUserModel*> * user;
  72 +/**
  73 + 总参与选手
  74 + */
  75 +@property (nonatomic,copy) NSString * count;
  76 +/**
  77 + 总守护值
  78 + */
  79 +@property (nonatomic,copy) NSString * votes;
  80 +/**
  81 + 年
  82 + */
  83 +@property (nonatomic,copy) NSString * year;
  84 +/**
  85 + 活动标题
  86 + */
  87 +@property (nonatomic,copy) NSString * title;
  88 +
  89 +@end
  90 +
  91 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantSearchView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantSearchView.h
  1 +//
  2 +// DSVCGLContestantSearchView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLContestantSearchView : UIView
  14 +
  15 +#pragma mark - UI
  16 +
  17 +@property (nonatomic,strong) UITextField * searhcTextField;
  18 +
  19 +#pragma mark - 回调
  20 +
  21 +/**
  22 + 点击客服回调
  23 + */
  24 +@property (nonatomic,copy) void (^clickServiceCallBack)(void);
  25 +/**
  26 + 搜索回调
  27 + */
  28 +@property (nonatomic,copy) void (^searchCallBack)(void);
  29 +
  30 +@end
  31 +
  32 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLContestantViewController.h
  1 +//
  2 +// DSVCGLContestantViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLContestantViewController : DSBaseViewController
  14 +
  15 +/**
  16 + 活动id
  17 + */
  18 +@property (nonatomic,copy) NSString * activityId;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 滚动到header下面
  24 + */
  25 +@property (nonatomic,copy) void (^scrollToSliderHeaderBottomCallBack)(void);
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteCollectionReusableFooterView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteCollectionReusableFooterView.h
  1 +//
  2 +// DSVCGLMyVoteCollectionReusableFooterView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLMyVoteCollectionReusableFooterView : UICollectionReusableView
  14 +
  15 +//@property (nonatomic,assign,readonly) BOOL isHaveMore;//是否还有更多
  16 +//@property (nonatomic,assign,readonly) BOOL isLoadingMore;//是否正在获取数据中
  17 +//
  18 +//-(void)setIsHaveMore:(BOOL)isHaveMore isLoadingMore:(BOOL)isLoadingMore;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteCollectionReusableHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteCollectionReusableHeaderView.h
  1 +//
  2 +// DSVCGLMyVoteCollectionReusableHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGLMyVoteModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGLMyVoteCollectionReusableHeaderView : UICollectionReusableView
  15 +
  16 +@property (nonatomic,strong) DSVCGLMyVoteModel * model;
  17 +
  18 +@end
  19 +
  20 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteCollectionViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteCollectionViewCell.h
  1 +//
  2 +// DSVCGLMyVoteCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGLMyVoteModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGLMyVoteCollectionViewCell : UICollectionViewCell
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSVCGLMyVoteListModel * model;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 点击守护回调
  24 + */
  25 +@property (nonatomic,copy) void (^clickGuardBtnCallBack)(DSVCGLMyVoteListModel * model);
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteModel.h
  1 +//
  2 +// DSVCGLMyVoteModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLMyVoteListModel : NSObject
  14 +
  15 +/**
  16 + 活动id
  17 + */
  18 +@property (nonatomic,copy) NSString * to_id;
  19 +/**
  20 +
  21 + */
  22 +@property (nonatomic,copy) NSString * activity_title;
  23 +/**
  24 +
  25 + */
  26 +@property (nonatomic,copy) NSString * start_time;
  27 +/**
  28 + 选手id
  29 + */
  30 +@property (nonatomic,copy) NSString * user_id;
  31 +/**
  32 + 我为该选手投的票
  33 + */
  34 +@property (nonatomic,copy) NSString * votes;
  35 +/**
  36 + 选手名称
  37 + */
  38 +@property (nonatomic,copy) NSString * user_title;
  39 +/**
  40 + 选手头像
  41 + */
  42 +@property (nonatomic,copy) NSString * user_img;
  43 +/**
  44 + 选手号码
  45 + */
  46 +@property (nonatomic,copy) NSString * user_number;
  47 +/**
  48 + 选手总票数
  49 + */
  50 +@property (nonatomic,copy) NSString * user_votes;
  51 +/**
  52 +
  53 + */
  54 +@property (nonatomic,copy) NSString * user_state;
  55 +/**
  56 + 选手排名 为0时无排名
  57 + */
  58 +@property (nonatomic,copy) NSString * rank;
  59 +
  60 +@end
  61 +
  62 +@interface DSVCGLMyVoteModel : NSObject
  63 +
  64 +/**
  65 + 活动id
  66 + */
  67 +@property (nonatomic,copy) NSString * id;
  68 +/**
  69 + 活动名称
  70 + */
  71 +@property (nonatomic,copy) NSString * title;
  72 +/**
  73 + 年
  74 + */
  75 +@property (nonatomic,copy) NSString * year;
  76 +/**
  77 + 选手列表
  78 + */
  79 +@property (nonatomic,copy) NSArray<DSVCGLMyVoteListModel*> * list;
  80 +
  81 +@end
  82 +
  83 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLMyVoteViewController.h
  1 +//
  2 +// DSVCGLMyVoteViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLMyVoteViewController : DSBaseViewController
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingHeaderView.h
  1 +//
  2 +// DSVCGLRankingHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/19.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLRankingHeaderView : UIView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingTableFooterView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingTableFooterView.h
  1 +//
  2 +// DSVCGLRankingTableFooterView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/19.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLRankingTableFooterView : UIView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingTableViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingTableViewCell.h
  1 +//
  2 +// DSVCGLRankingTableViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/19.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGLRankingTableViewCell : DSTableViewCell
  15 +
  16 +@property (nonatomic,strong,readonly) DSVCGLContestantUserModel * model;
  17 +@property (nonatomic,assign,readonly) BOOL isHideLine;
  18 +
  19 +-(void)setModel:(DSVCGLContestantUserModel*)model isHideLine:(BOOL)isHideLine;
  20 +
  21 +@end
  22 +
  23 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLRankingViewController.h
  1 +//
  2 +// DSVCGLRankingViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLRankingViewController : DSBaseViewController
  14 +
  15 +/**
  16 + 活动id
  17 + */
  18 +@property (nonatomic,copy) NSString * activityId;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLWebSubViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGLWebSubViewController.h
  1 +//
  2 +// DSVCGLWebSubViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGLWebSubViewController : DSBaseViewController
  14 +
  15 +/**
  16 + 即将显示的url
  17 + */
  18 +@property (nonatomic,copy) NSString * displayUrl;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftCollectionViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftCollectionViewCell.h
  1 +//
  2 +// DSVCGameGiftCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/26.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGameGiftModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGameGiftCollectionViewCell : UICollectionViewCell
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +/**
  19 + 这页的数据
  20 + */
  21 +@property (nonatomic,copy,readonly) NSArray<DSVCGameGiftListModel*> * dataArr;
  22 +/**
  23 + 选中的数据
  24 + */
  25 +@property (nonatomic,strong,readonly) DSVCGameGiftListModel * selectModel;
  26 +
  27 +/**
  28 + 赋值
  29 +
  30 + @param dataArr 这页的数据
  31 + @param selectModel 选中的数据
  32 + */
  33 +-(void)setDataArr:(NSArray<DSVCGameGiftListModel *> *)dataArr selectModel:(DSVCGameGiftListModel*)selectModel;
  34 +
  35 +#pragma mark - 回调
  36 +
  37 +/**
  38 + 点击礼物回调
  39 + */
  40 +@property (nonatomic,copy) void (^clickGiftCallBack)(DSVCGameGiftListModel * model);
  41 +
  42 +@end
  43 +
  44 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftModel.h
  1 +//
  2 +// DSVCGameGiftModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/27.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +#pragma mark - 用户信息
  14 +
  15 +@interface DSVCGameGiftUserModel : NSObject
  16 +
  17 +/**
  18 + 选手id
  19 + */
  20 +@property (nonatomic,copy) NSString * id;
  21 +/**
  22 + 名称
  23 + */
  24 +@property (nonatomic,copy) NSString * title;
  25 +/**
  26 + 头像
  27 + */
  28 +@property (nonatomic,copy) NSString * img;
  29 +/**
  30 + 介绍
  31 + */
  32 +@property (nonatomic,copy) NSString * desc;
  33 +/**
  34 +
  35 + */
  36 +@property (nonatomic,copy) NSString * share_title;
  37 +/**
  38 +
  39 + */
  40 +@property (nonatomic,copy) NSString * share_img;
  41 +/**
  42 +
  43 + */
  44 +@property (nonatomic,copy) NSString * share_desc;
  45 +/**
  46 +
  47 + */
  48 +@property (nonatomic,copy) NSString * vote_activity_id;
  49 +/**
  50 + 号码
  51 + */
  52 +@property (nonatomic,copy) NSString * number;
  53 +/**
  54 +
  55 + */
  56 +@property (nonatomic,copy) NSString * sex;
  57 +/**
  58 +
  59 + */
  60 +@property (nonatomic,copy) NSString * phone;
  61 +/**
  62 +
  63 + */
  64 +@property (nonatomic,copy) NSString * card;
  65 +/**
  66 + 票数
  67 + */
  68 +@property (nonatomic,copy) NSString * votes;
  69 +/**
  70 + 粉丝
  71 + */
  72 +@property (nonatomic,copy) NSString * fans;
  73 +/**
  74 + 排名
  75 + */
  76 +@property (nonatomic,copy) NSString * rank;
  77 +
  78 +@end
  79 +
  80 +#pragma mark - 礼物列表
  81 +
  82 +@interface DSVCGameGiftListModel : NSObject
  83 +
  84 +/**
  85 + 礼物id
  86 + */
  87 +@property (nonatomic,copy) NSString * id;
  88 +/**
  89 + 名称
  90 + */
  91 +@property (nonatomic,copy) NSString * title;
  92 +/**
  93 + 图片
  94 + */
  95 +@property (nonatomic,copy) NSString * img;
  96 +/**
  97 + 要使用的虚拟币数
  98 + */
  99 +@property (nonatomic,copy) NSString * money;
  100 +/**
  101 + 给对方增加的票数
  102 + */
  103 +@property (nonatomic,copy) NSString * votes;
  104 +/**
  105 + 1免费票 0正常票
  106 + */
  107 +@property (nonatomic,copy) NSString * is_free;
  108 +
  109 +@end
  110 +
  111 +#pragma mark - 第一级
  112 +
  113 +@interface DSVCGameGiftModel : NSObject
  114 +
  115 +/**
  116 + 礼物列表
  117 + */
  118 +@property (nonatomic,copy) NSArray<DSVCGameGiftListModel*> * list;
  119 +/**
  120 + 支付协议链接
  121 + */
  122 +@property (nonatomic,copy) NSString * url_pay_agreement;
  123 +/**
  124 + 用户信息
  125 + */
  126 +@property (nonatomic,strong) DSVCGameGiftUserModel * user;
  127 +
  128 +@end
  129 +
  130 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftSingleView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftSingleView.h
  1 +//
  2 +// DSVCGameGiftSingleView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/27.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGameGiftModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGameGiftSingleView : UIView
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSVCGameGiftListModel * model;
  19 +@property (nonatomic,assign) BOOL isSelect;
  20 +
  21 +-(void)setModel:(DSVCGameGiftListModel *)model isSelect:(BOOL)isSelect;
  22 +
  23 +@end
  24 +
  25 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameGiftView.h
  1 +//
  2 +// DSVCGameGiftView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/26.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGameGiftView : UIView
  14 +
  15 +#pragma mark - 赋值
  16 +
  17 +/**
  18 + 活动id
  19 + */
  20 +@property (nonatomic,copy,readonly) NSString * activityId;
  21 +/**
  22 + 选手id
  23 + */
  24 +@property (nonatomic,copy,readonly) NSString * playerId;
  25 +/**
  26 + 选手id
  27 +
  28 + @param activityId 活动id
  29 + @param playerId 选手id
  30 + */
  31 +-(void)setActivityId:(NSString*)activityId playerId:(NSString*)playerId;
  32 +
  33 +@end
  34 +
  35 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveModel.h
  1 +//
  2 +// DSVCGameLiveModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +#pragma mark - 直播信息 预热视频
  15 +
  16 +@interface DSVCGameLiveLivePreModel : NSObject
  17 +
  18 +/**
  19 +
  20 + */
  21 +@property (nonatomic,copy) NSString * id;
  22 +/**
  23 +
  24 + */
  25 +@property (nonatomic,copy) NSString * title;
  26 +/**
  27 + 预热视频封面图
  28 + */
  29 +@property (nonatomic,copy) NSString * img;
  30 +/**
  31 + 预热视频地址
  32 + */
  33 +@property (nonatomic,copy) NSString * video;
  34 +
  35 +@end
  36 +
  37 +#pragma mark - 直播信息 播流地址
  38 +
  39 +@interface DSVCGameLiveLivePlayModel : NSObject
  40 +
  41 +/**
  42 + 播流地址一
  43 + */
  44 +@property (nonatomic,copy) NSString * RTMPPlayURL;
  45 +/**
  46 + 播流地址二
  47 + */
  48 +@property (nonatomic,copy) NSString * HLSPlayURL;
  49 +/**
  50 + 播流地址三
  51 + */
  52 +@property (nonatomic,copy) NSString * HDLPlayURL;
  53 +
  54 +@end
  55 +
  56 +#pragma mark - 直播信息 回放信息
  57 +
  58 +@interface DSVCGameLiveLivePlaybackListModel : NSObject
  59 +
  60 +/**
  61 +
  62 + */
  63 +@property (nonatomic,copy) NSString * id;
  64 +/**
  65 +
  66 + */
  67 +@property (nonatomic,copy) NSString * title;
  68 +/**
  69 + 回放视频地址
  70 + */
  71 +@property (nonatomic,copy) NSString * video;
  72 +/**
  73 +
  74 + */
  75 +@property (nonatomic,copy) NSString * live_id;
  76 +/**
  77 +
  78 + */
  79 +@property (nonatomic,copy) NSString * start_time;
  80 +/**
  81 +
  82 + */
  83 +@property (nonatomic,copy) NSString * end_time;
  84 +/**
  85 +
  86 + */
  87 +@property (nonatomic,copy) NSString * state;
  88 +
  89 +@end
  90 +
  91 +#pragma mark - 直播信息
  92 +
  93 +@interface DSVCGameLiveLiveModel : NSObject
  94 +
  95 +/**
  96 + 直播id
  97 + */
  98 +@property (nonatomic,copy) NSString * id;
  99 +/**
  100 + 直播标题
  101 + */
  102 +@property (nonatomic,copy) NSString * title;
  103 +/**
  104 + 封面图
  105 + */
  106 +@property (nonatomic,copy) NSString * img;
  107 +/**
  108 + 主办单位
  109 + */
  110 +@property (nonatomic,copy) NSString * host;
  111 +/**
  112 + 合作单位
  113 + */
  114 +@property (nonatomic,copy) NSString * cooperation;
  115 +/**
  116 + 地点
  117 + */
  118 +@property (nonatomic,copy) NSString * address;
  119 +/**
  120 + 分享标题
  121 + */
  122 +@property (nonatomic,copy) NSString * share_title;
  123 +/**
  124 + 分享图片
  125 + */
  126 +@property (nonatomic,copy) NSString * share_img;
  127 +/**
  128 + 分享简介
  129 + */
  130 +@property (nonatomic,copy) NSString * share_desc;
  131 +/**
  132 + 直播预计开始时间
  133 + */
  134 +@property (nonatomic,copy) NSString * start_time;
  135 +/**
  136 + 2开启回放 1关闭回放
  137 + */
  138 +@property (nonatomic,copy) NSString * playback;
  139 +/**
  140 + 1 未开启直播 2直播中 3直播已结束
  141 + */
  142 +@property (nonatomic,copy) NSString * status;
  143 +/**
  144 + 播流地址
  145 + */
  146 +@property (nonatomic,strong) DSVCGameLiveLivePlayModel * play;
  147 +/**
  148 + 预热视频
  149 + */
  150 +@property (nonatomic,strong) DSVCGameLiveLivePreModel * live_pre_video;
  151 +/**
  152 + 回放列表
  153 + */
  154 +@property (nonatomic,copy) NSArray<DSVCGameLiveLivePlaybackListModel*> * playbackList;
  155 +
  156 +@end
  157 +
  158 +#pragma mark - 第一级
  159 +
  160 +@interface DSVCGameLiveModel : NSObject
  161 +
  162 +/**
  163 + 活动id
  164 + */
  165 +@property (nonatomic,copy) NSString * id;
  166 +/**
  167 + 活动标题
  168 + */
  169 +@property (nonatomic,copy) NSString * title;
  170 +/**
  171 + 主办单位
  172 + */
  173 +@property (nonatomic,copy) NSString * host;
  174 +/**
  175 + 合作单位
  176 + */
  177 +@property (nonatomic,copy) NSString * cooperation;
  178 +/**
  179 + 地点
  180 + */
  181 +@property (nonatomic,copy) NSString * address;
  182 +/**
  183 + 分享标题
  184 + */
  185 +@property (nonatomic,copy) NSString * share_title;
  186 +/**
  187 + 分享图片
  188 + */
  189 +@property (nonatomic,copy) NSString * share_img;
  190 +/**
  191 + 分享简介
  192 + */
  193 +@property (nonatomic,copy) NSString * share_desc;
  194 +/**
  195 + 直播id
  196 + */
  197 +@property (nonatomic,copy) NSString * live_id;
  198 +/**
  199 + 活动开始时间
  200 + */
  201 +@property (nonatomic,copy) NSString * start_time;
  202 +/**
  203 + 活动结束时间
  204 + */
  205 +@property (nonatomic,copy) NSString * end_time;
  206 +/**
  207 + 当前时间
  208 + */
  209 +@property (nonatomic,copy) NSString * time;
  210 +/**
  211 + 查看次数
  212 + */
  213 +@property (nonatomic,copy) NSString * pv;
  214 +/**
  215 + 边框图
  216 + */
  217 +@property (nonatomic,copy) NSString * frame_img;
  218 +/**
  219 + 背景色值
  220 + */
  221 +@property (nonatomic,copy) NSString * color;
  222 +/**
  223 + 群组id
  224 + */
  225 +@property (nonatomic,copy) NSString * group_id;
  226 +/**
  227 + 年
  228 + */
  229 +@property (nonatomic,copy) NSString * year;
  230 +/**
  231 + 比赛介绍(html文本)
  232 + */
  233 +@property (nonatomic,copy) NSString * content;
  234 +/**
  235 + 比赛规则(html文本)
  236 + */
  237 +@property (nonatomic,copy) NSString * about;
  238 +/**
  239 + 比赛介绍(url)
  240 + */
  241 +@property (nonatomic,copy) NSString * url_content;
  242 +/**
  243 + 比赛规则(url)
  244 + */
  245 +@property (nonatomic,copy) NSString * url_about;
  246 +/**
  247 + 直播信息
  248 + */
  249 +@property (nonatomic,strong) DSVCGameLiveLiveModel * live;
  250 +/**
  251 + 排名前几名的信息
  252 + */
  253 +@property (nonatomic,copy) NSArray<DSVCGLContestantUserModel*> * user;
  254 +
  255 +@end
  256 +
  257 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveNavView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveNavView.h
  1 +//
  2 +// DSVCGameLiveNavView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGameLiveModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGameLiveNavView : UIView
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong,nullable) DSVCGameLiveModel * liveModel;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 点击返回回调
  24 + */
  25 +@property (nonatomic,copy) void (^clickBackCallBack)(void);
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveSHRankingCollectionViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveSHRankingCollectionViewCell.h
  1 +//
  2 +// DSVCGameLiveSHRankingCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGameLiveModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGameLiveSHRankingCollectionViewCell : UICollectionViewCell
  15 +
  16 +@property (nonatomic,strong,readonly) NSIndexPath * indexPath;
  17 +@property (nonatomic,strong,nullable,readonly) DSVCGLContestantUserModel * model;
  18 +
  19 +-(void)setModel:(DSVCGLContestantUserModel * _Nullable)model indexPath:(NSIndexPath*)indexPath;
  20 +
  21 +@end
  22 +
  23 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveSliderHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveSliderHeaderView.h
  1 +//
  2 +// DSVCGameLiveSliderHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGameLiveModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCGameLiveSliderHeaderView : UIView
  15 +
  16 +#pragma mark - UI
  17 +
  18 +/**
  19 + 播放器
  20 + */
  21 +@property (nonatomic,strong) DSPlayerView * playerView;
  22 +
  23 +#pragma mark - 赋值
  24 +
  25 +@property (nonatomic,strong) DSVCGameLiveModel * liveModel;
  26 +
  27 +#pragma mark - 回调
  28 +
  29 +/**
  30 + 点击选手回调
  31 + */
  32 +@property (nonatomic,copy) void (^clickPlayerCallBack)(DSVCGLContestantUserModel * model);
  33 +/**
  34 + 点击更多排行回调
  35 + */
  36 +@property (nonatomic,copy) void (^clickMoreRankingCallBack)(void);
  37 +
  38 +@end
  39 +
  40 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGameLiveViewController.h
  1 +//
  2 +// DSVCGameLiveViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGameLiveViewController : DSBaseViewController
  14 +
  15 +/**
  16 + 活动id
  17 + */
  18 +@property (nonatomic,copy) NSString * activityId;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGamePlayerHPViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCGamePlayerHPViewController.h
  1 +//
  2 +// DSVCGamePlayerHPViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/22.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCGamePlayerHPViewController : DSBaseViewController
  14 +
  15 +/**
  16 + 参赛选手id
  17 + */
  18 +@property (nonatomic,copy) NSString * playerId;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableFooterView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableFooterView.h
  1 +//
  2 +// DSVCMoreRankingTableFooterView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/22.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCMoreRankingTableFooterView : UIView
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableHeaderTopPeopleView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableHeaderTopPeopleView.h
  1 +//
  2 +// DSVCMoreRankingTableHeaderTopPeopleView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/22.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCMoreRankingTableHeaderTopPeopleView : UIView
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSVCGLContestantUserModel * model;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableHeaderView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableHeaderView.h
  1 +//
  2 +// DSVCMoreRankingTableHeaderView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCMoreRankingTableHeaderView : UIView
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong) DSVCGLContestantModel * model;
  19 +
  20 +#pragma mark - 回调
  21 +
  22 +/**
  23 + 点击用户头像回调
  24 + */
  25 +@property (nonatomic,copy) void (^clickUserHeaderCallBack)(DSVCGLContestantUserModel * model);
  26 +
  27 +@end
  28 +
  29 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingTableViewCell.h
  1 +//
  2 +// DSVCMoreRankingTableViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +#import "DSVCGLContestantModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCMoreRankingTableViewCell : DSTableViewCell
  15 +
  16 +#pragma mark - 赋值
  17 +
  18 +@property (nonatomic,strong,readonly) DSVCGLContestantUserModel * model;
  19 +@property (nonatomic,assign,readonly) BOOL isHideLine;
  20 +
  21 +-(void)setModel:(DSVCGLContestantUserModel*)model isHideLine:(BOOL)isHideLine;
  22 +
  23 +#pragma mark - 回调
  24 +
  25 +/**
  26 + 点击守护回调
  27 + */
  28 +@property (nonatomic,copy) void (^clickGuardCallBack)(DSVCGLContestantUserModel * model);
  29 +
  30 +@end
  31 +
  32 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingViewController.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCMoreRankingViewController.h
  1 +//
  2 +// DSVCMoreRankingViewController.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/20.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <DSBaseModule/DSBaseModule.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCMoreRankingViewController : DSBaseViewController
  14 +
  15 +/**
  16 + 活动id
  17 + */
  18 +@property (nonatomic,copy) NSString * activityId;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCTopupWJJGoldCoinsCollectionViewCell.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCTopupWJJGoldCoinsCollectionViewCell.h
  1 +//
  2 +// DSVCTopupWJJGoldCoinsCollectionViewCell.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +#import "DSVCTopupWJJGoldCoinsModel.h"
  11 +
  12 +NS_ASSUME_NONNULL_BEGIN
  13 +
  14 +@interface DSVCTopupWJJGoldCoinsCollectionViewCell : UICollectionViewCell
  15 +
  16 +@property (nonatomic,strong,readonly) DSVCTopupWJJGoldCoinsModel * model;
  17 +@property (nonatomic,assign,readonly) BOOL isSelect;
  18 +
  19 +-(void)setModel:(DSVCTopupWJJGoldCoinsModel*)model isSelect:(BOOL)isSelect;
  20 +
  21 +@end
  22 +
  23 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCTopupWJJGoldCoinsModel.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCTopupWJJGoldCoinsModel.h
  1 +//
  2 +// DSVCTopupWJJGoldCoinsModel.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCTopupWJJGoldCoinsModel : NSObject
  14 +
  15 +/**
  16 + 币数
  17 + */
  18 +@property (nonatomic,copy) NSString * goldCoins;
  19 +/**
  20 + 价格
  21 + */
  22 +@property (nonatomic,copy) NSString * price;
  23 +
  24 +@end
  25 +
  26 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCTopupWJJGoldCoinsView.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVCTopupWJJGoldCoinsView.h
  1 +//
  2 +// DSVCTopupWJJGoldCoinsView.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/28.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVCTopupWJJGoldCoinsView : UIView
  14 +
  15 +/**
  16 + 支付协议链接
  17 + */
  18 +@property (nonatomic,copy) NSString * paymentAgreementUrl;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoCRequest.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoCRequest.h
  1 +//
  2 +// DSVideoCRequest.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2019/6/18.
  6 +// Copyright © 2019 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import "DSVCGameLiveModel.h"
  11 +#import "DSVCGLContestantModel.h"
  12 +#import "DSGamePlayerHPModel.h"
  13 +#import "DSVCGLMyVoteModel.h"
  14 +#import "DSVCGameGiftModel.h"
  15 +
  16 +NS_ASSUME_NONNULL_BEGIN
  17 +
  18 +@interface DSVideoCRequest : NSObject
  19 +
  20 +#pragma mark - 比赛直播
  21 +
  22 +/**
  23 + 比赛直播
  24 +
  25 + @param activityId 活动id
  26 + @param result 结果
  27 + */
  28 ++(void)postVoteActivityInfoWithActivityId:(NSString*)activityId result:(void (^)(DSVCGameLiveModel * model, NSString * errorMessage))result;
  29 +
  30 +/**
  31 + 比赛选手
  32 +
  33 + @param activityId 活动id
  34 + @param keyword 关键字
  35 + @param result 结果
  36 + */
  37 ++(void)postVoteActivityUserWithActivityId:(NSString*)activityId keyword:(nullable NSString*)keyword result:(void (^)(DSVCGLContestantModel * model, NSString * errorMessage))result;
  38 +
  39 +/**
  40 + 参赛选手详情
  41 +
  42 + @param playerId 选手id
  43 + @param uid 查看人uid
  44 + @param result 结果
  45 + */
  46 ++(void)postVoteActivityUserInfoWithPlayerId:(NSString*)playerId uid:(nullable NSString*)uid result:(void (^)(DSGamePlayerHPModel * model, NSString * errorMessage))result;
  47 +
  48 +/**
  49 + 关注参赛选手
  50 +
  51 + @param playerId 选手id
  52 + @param uid 用户id
  53 + @param isCancelAttention 是否是取消关注
  54 + @param result 结果
  55 + */
  56 ++(void)postAddVoteActivityUserFansWithPlayerId:(NSString*)playerId uid:(NSString*)uid isCancelAttention:(BOOL)isCancelAttention result:(void (^)(DSGamePlayerHPModel * model, NSString * errorMessage))result;
  57 +
  58 +#pragma mark - 投票列表
  59 +
  60 +/**
  61 + 我的投票列表
  62 +
  63 + @param uid 用户id
  64 + @param result 结果
  65 + */
  66 ++(void)postMyVotesListWithUid:(NSString*)uid result:(void (^)(NSArray<DSVCGLMyVoteModel*> * dataArr, NSString * errorMessage))result;
  67 +
  68 +#pragma mark - 礼物
  69 +
  70 +/**
  71 + 礼物列表
  72 +
  73 + @param activityId 活动id
  74 + @param uid 用户id
  75 + @param userId 选手id
  76 + @param result 结果
  77 + */
  78 ++(void)postGiftListWithActivityId:(NSString*)activityId uid:(NSString*)uid userId:(NSString*)userId result:(void (^)(DSVCGameGiftModel * model, NSString * errorMessage))result;
  79 +
  80 +/**
  81 + 赠送礼物
  82 +
  83 + @param playerId 选手id
  84 + @param uid 用户id
  85 + @param giftId 礼物id
  86 + @param num 礼物数量
  87 + @param phoneType 客户端类型 1 ios 2 安卓 3 网页
  88 + @param result 结果
  89 + */
  90 ++(void)postGiveGiftWithPlayerId:(NSString*)playerId uid:(NSString*)uid giftId:(NSString*)giftId num:(NSString*)num phoneType:(NSInteger)phoneType result:(void (^)(NSString * money, BOOL isNoMoney, NSString * errorMessage))result;
  91 +
  92 +#pragma mark - 获取网家家币
  93 +
  94 +/**
  95 + 获取网家家币
  96 +
  97 + @param uid 用户id
  98 + @param result 结果
  99 + */
  100 ++(void)postGetCardMoneyWithUid:(NSString*)uid result:(void (^)(NSUInteger money, NSString * errorMessage))result;
  101 +
  102 +@end
  103 +
  104 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModule-umbrella.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModule-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 "DSVideoContestModuleDelegate.h"
  14 +#import "DSVideoContestModuleManager.h"
  15 +#import "DSVideoContestModulePCH.h"
  16 +#import "DSVideoContestModuleRouter.h"
  17 +#import "UIImage+DSVideoContestModule.h"
  18 +#import "DSVideoCRequest.h"
  19 +#import "DSVCDisplaySendGameGiftModel.h"
  20 +#import "DSVCDisplaySendGameGiftView.h"
  21 +#import "DSVCDisplaySendGameSingleGiftView.h"
  22 +#import "DSVCGameGiftModel.h"
  23 +#import "DSVCGameGiftCollectionViewCell.h"
  24 +#import "DSVCGameGiftSingleView.h"
  25 +#import "DSVCGameGiftView.h"
  26 +#import "DSVCGLContestantViewController.h"
  27 +#import "DSVCGLContestantModel.h"
  28 +#import "DSVCGLContestantCollectionReusableFooterView.h"
  29 +#import "DSVCGLContestantCollectionReusableHeaderView.h"
  30 +#import "DSVCGLContestantCollectionViewCell.h"
  31 +#import "DSVCGLContestantSearchView.h"
  32 +#import "DSVCGameLiveViewController.h"
  33 +#import "DSVCGameLiveModel.h"
  34 +#import "DSVCGameLiveNavView.h"
  35 +#import "DSVCGameLiveSHRankingCollectionViewCell.h"
  36 +#import "DSVCGameLiveSliderHeaderView.h"
  37 +#import "DSVCGLRankingViewController.h"
  38 +#import "DSVCGLRankingHeaderView.h"
  39 +#import "DSVCGLRankingTableFooterView.h"
  40 +#import "DSVCGLRankingTableViewCell.h"
  41 +#import "DSVCGLWebSubViewController.h"
  42 +#import "DSVCGamePlayerHPViewController.h"
  43 +#import "DSGamePlayerHPModel.h"
  44 +#import "DSGamePlayerHPTableHeaderPCollectionViewCell.h"
  45 +#import "DSGamePlayerHPTableHeaderView.h"
  46 +#import "DSGamePlayerHPTableSectionHeaderView.h"
  47 +#import "DSGamePlayerHPTableViewCell.h"
  48 +#import "DSGamePlayerHPTopBgGradientView.h"
  49 +#import "DSVCMoreRankingViewController.h"
  50 +#import "DSVCMoreRankingTableFooterView.h"
  51 +#import "DSVCMoreRankingTableHeaderTopPeopleView.h"
  52 +#import "DSVCMoreRankingTableHeaderView.h"
  53 +#import "DSVCMoreRankingTableViewCell.h"
  54 +#import "DSVCGLMyVoteViewController.h"
  55 +#import "DSVCGLMyVoteModel.h"
  56 +#import "DSVCGLMyVoteCollectionReusableFooterView.h"
  57 +#import "DSVCGLMyVoteCollectionReusableHeaderView.h"
  58 +#import "DSVCGLMyVoteCollectionViewCell.h"
  59 +#import "DSVCTopupWJJGoldCoinsModel.h"
  60 +#import "DSVCTopupWJJGoldCoinsCollectionViewCell.h"
  61 +#import "DSVCTopupWJJGoldCoinsView.h"
  62 +
  63 +FOUNDATION_EXPORT double DSVideoContestModuleVersionNumber;
  64 +FOUNDATION_EXPORT const unsigned char DSVideoContestModuleVersionString[];
  65 +
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModuleDelegate.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModuleDelegate.h
  1 +//
  2 +// DSVideoContestModuleDelegate.h
  3 +// DSVideoContestModule
  4 +//
  5 +// Created by zhaolin on 2020/3/11.
  6 +//
  7 +
  8 +#ifndef DSVideoContestModuleDelegate_h
  9 +#define DSVideoContestModuleDelegate_h
  10 +
  11 +@protocol DSVideoContestModuleDelegate <NSObject>
  12 +
  13 +@end
  14 +
  15 +#endif /* DSVideoContestModuleDelegate_h */
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModuleManager.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModuleManager.h
  1 +//
  2 +// DSVideoContestModuleManager.h
  3 +// DSVideoContestModule
  4 +//
  5 +// Created by zhaolin on 2020/3/4.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +#import "DSVideoContestModuleDelegate.h"
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVideoContestModuleManager : NSObject
  14 +
  15 +#pragma mark - 单例
  16 +
  17 ++(instancetype)sharedManager;
  18 +
  19 +#pragma mark - 代理
  20 +
  21 +/// 代理
  22 +@property (nonatomic,weak,nullable) id<DSVideoContestModuleDelegate> delegate;
  23 +
  24 +
  25 +
  26 +@end
  27 +
  28 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModulePCH.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModulePCH.h
  1 +//
  2 +// DSVideoContestModulePCH.h
  3 +// DSCnliveShopSDK
  4 +//
  5 +// Created by zhaolin on 2020/3/2.
  6 +//
  7 +
  8 +#ifndef DSVideoContestModulePCH_h
  9 +#define DSVideoContestModulePCH_h
  10 +
  11 +#import <DSBaseModule/DSBaseModule.h>
  12 +#import <DSToolsModule/DSToolsModule.h>
  13 +#import <DSCommonModule/DSCommonModule.h>
  14 +
  15 +#import "UIImage+DSVideoContestModule.h"
  16 +#import "DSVideoContestModuleRouter.h"
  17 +#import "DSVideoContestModuleManager.h"
  18 +
  19 +#import <DSWebViewModule/DSWebViewController.h>
  20 +
  21 +#endif /* DSVideoContestModulePCH_h */
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModuleRouter.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/DSVideoContestModuleRouter.h
  1 +//
  2 +// DSVideoContestModuleRouter.h
  3 +// DSVideoContestModule
  4 +//
  5 +// Created by zhaolin on 2020/3/5.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface DSVideoContestModuleRouter : NSObject
  14 +
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/UIImage+DSVideoContestModule.h 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Headers/UIImage+DSVideoContestModule.h
  1 +//
  2 +// UIImage+DSVideoContestModule.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by zhaolin on 2020/3/4.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface UIImage (DSVideoContestModule)
  13 +
  14 +#pragma mark - 获取图片
  15 +
  16 +/// DSVideoContestModule获取图片
  17 +/// @param imageName 图片名称
  18 ++(UIImage*)imageWithDSVideoContestModuleImageName:(NSString*)imageName;
  19 +
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Info.plist 0 → 100644
No preview for this file type
DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Modules/module.modulemap 0 → 100644
  1 +++ a/DSVideoContestModuleF/Frameworks/DSVideoContestModule.framework/Modules/module.modulemap
  1 +framework module DSVideoContestModule {
  2 + umbrella header "DSVideoContestModule-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/DSVideoContestModuleF.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 09A7BA9AED750296C0067141 /* Pods_DSVideoContestModuleF_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 381D3448C205AEF0E9F11E21 /* Pods_DSVideoContestModuleF_Example.framework */; };
  11 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  12 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
  13 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  14 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
  15 + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
  16 + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* DSAppDelegate.m */; };
  17 + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* DSViewController.m */; };
  18 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
  19 + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
  20 + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  21 + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  22 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
  23 + 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
  24 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
  25 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
  26 + F73DDF3B4CD41BE5A4FB2CA3 /* Pods_DSVideoContestModuleF_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD942C931B441F336AC3B370 /* Pods_DSVideoContestModuleF_Tests.framework */; };
  27 +/* End PBXBuildFile section */
  28 +
  29 +/* Begin PBXContainerItemProxy section */
  30 + 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = 6003F582195388D10070C39A /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = 6003F589195388D20070C39A;
  35 + remoteInfo = DSVideoContestModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 20244AF1B9AF5FBB111BDA4A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  41 + 24460C45889827C98ADC8CFF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  42 + 24617B381FA06459ECA68972 /* Pods-DSVideoContestModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSVideoContestModuleF_Tests.debug.xcconfig"; path = "Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  43 + 381D3448C205AEF0E9F11E21 /* Pods_DSVideoContestModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSVideoContestModuleF_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  44 + 3EF5372FB6EF9B2C35C10434 /* Pods-DSVideoContestModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSVideoContestModuleF_Tests.release.xcconfig"; path = "Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  45 + 4EB8B65BC1896129B06BBAED /* Pods-DSVideoContestModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSVideoContestModuleF_Example.debug.xcconfig"; path = "Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  46 + 5800A95F51CF70E25010DA78 /* DSVideoContestModuleF.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = DSVideoContestModuleF.podspec; path = ../DSVideoContestModuleF.podspec; sourceTree = "<group>"; };
  47 + 6003F58A195388D20070C39A /* DSVideoContestModuleF_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSVideoContestModuleF_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  48 + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  49 + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  50 + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  51 + 6003F595195388D20070C39A /* DSVideoContestModuleF-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSVideoContestModuleF-Info.plist"; sourceTree = "<group>"; };
  52 + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  53 + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  54 + 6003F59B195388D20070C39A /* DSVideoContestModuleF-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DSVideoContestModuleF-Prefix.pch"; sourceTree = "<group>"; };
  55 + 6003F59C195388D20070C39A /* DSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSAppDelegate.h; sourceTree = "<group>"; };
  56 + 6003F59D195388D20070C39A /* DSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSAppDelegate.m; sourceTree = "<group>"; };
  57 + 6003F5A5195388D20070C39A /* DSViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSViewController.h; sourceTree = "<group>"; };
  58 + 6003F5A6195388D20070C39A /* DSViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSViewController.m; sourceTree = "<group>"; };
  59 + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  60 + 6003F5AE195388D20070C39A /* DSVideoContestModuleF_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DSVideoContestModuleF_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  61 + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  62 + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  63 + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  64 + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
  65 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
  66 + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  67 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  68 + E0E5FDC2B59276439CA5AA3E /* Pods-DSVideoContestModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSVideoContestModuleF_Example.release.xcconfig"; path = "Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  69 + FD942C931B441F336AC3B370 /* Pods_DSVideoContestModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSVideoContestModuleF_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 + 09A7BA9AED750296C0067141 /* Pods_DSVideoContestModuleF_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 + F73DDF3B4CD41BE5A4FB2CA3 /* Pods_DSVideoContestModuleF_Tests.framework in Frameworks */,
  92 + );
  93 + runOnlyForDeploymentPostprocessing = 0;
  94 + };
  95 +/* End PBXFrameworksBuildPhase section */
  96 +
  97 +/* Begin PBXGroup section */
  98 + 1E4CFCB1046DF143E8AFC5EB /* Pods */ = {
  99 + isa = PBXGroup;
  100 + children = (
  101 + 4EB8B65BC1896129B06BBAED /* Pods-DSVideoContestModuleF_Example.debug.xcconfig */,
  102 + E0E5FDC2B59276439CA5AA3E /* Pods-DSVideoContestModuleF_Example.release.xcconfig */,
  103 + 24617B381FA06459ECA68972 /* Pods-DSVideoContestModuleF_Tests.debug.xcconfig */,
  104 + 3EF5372FB6EF9B2C35C10434 /* Pods-DSVideoContestModuleF_Tests.release.xcconfig */,
  105 + );
  106 + name = Pods;
  107 + path = Pods;
  108 + sourceTree = "<group>";
  109 + };
  110 + 6003F581195388D10070C39A = {
  111 + isa = PBXGroup;
  112 + children = (
  113 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
  114 + 6003F593195388D20070C39A /* Example for DSVideoContestModuleF */,
  115 + 6003F5B5195388D20070C39A /* Tests */,
  116 + 6003F58C195388D20070C39A /* Frameworks */,
  117 + 6003F58B195388D20070C39A /* Products */,
  118 + 1E4CFCB1046DF143E8AFC5EB /* Pods */,
  119 + );
  120 + sourceTree = "<group>";
  121 + };
  122 + 6003F58B195388D20070C39A /* Products */ = {
  123 + isa = PBXGroup;
  124 + children = (
  125 + 6003F58A195388D20070C39A /* DSVideoContestModuleF_Example.app */,
  126 + 6003F5AE195388D20070C39A /* DSVideoContestModuleF_Tests.xctest */,
  127 + );
  128 + name = Products;
  129 + sourceTree = "<group>";
  130 + };
  131 + 6003F58C195388D20070C39A /* Frameworks */ = {
  132 + isa = PBXGroup;
  133 + children = (
  134 + 6003F58D195388D20070C39A /* Foundation.framework */,
  135 + 6003F58F195388D20070C39A /* CoreGraphics.framework */,
  136 + 6003F591195388D20070C39A /* UIKit.framework */,
  137 + 6003F5AF195388D20070C39A /* XCTest.framework */,
  138 + 381D3448C205AEF0E9F11E21 /* Pods_DSVideoContestModuleF_Example.framework */,
  139 + FD942C931B441F336AC3B370 /* Pods_DSVideoContestModuleF_Tests.framework */,
  140 + );
  141 + name = Frameworks;
  142 + sourceTree = "<group>";
  143 + };
  144 + 6003F593195388D20070C39A /* Example for DSVideoContestModuleF */ = {
  145 + isa = PBXGroup;
  146 + children = (
  147 + 6003F59C195388D20070C39A /* DSAppDelegate.h */,
  148 + 6003F59D195388D20070C39A /* DSAppDelegate.m */,
  149 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
  150 + 6003F5A5195388D20070C39A /* DSViewController.h */,
  151 + 6003F5A6195388D20070C39A /* DSViewController.m */,
  152 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
  153 + 6003F5A8195388D20070C39A /* Images.xcassets */,
  154 + 6003F594195388D20070C39A /* Supporting Files */,
  155 + );
  156 + name = "Example for DSVideoContestModuleF";
  157 + path = DSVideoContestModuleF;
  158 + sourceTree = "<group>";
  159 + };
  160 + 6003F594195388D20070C39A /* Supporting Files */ = {
  161 + isa = PBXGroup;
  162 + children = (
  163 + 6003F595195388D20070C39A /* DSVideoContestModuleF-Info.plist */,
  164 + 6003F596195388D20070C39A /* InfoPlist.strings */,
  165 + 6003F599195388D20070C39A /* main.m */,
  166 + 6003F59B195388D20070C39A /* DSVideoContestModuleF-Prefix.pch */,
  167 + );
  168 + name = "Supporting Files";
  169 + sourceTree = "<group>";
  170 + };
  171 + 6003F5B5195388D20070C39A /* Tests */ = {
  172 + isa = PBXGroup;
  173 + children = (
  174 + 6003F5BB195388D20070C39A /* Tests.m */,
  175 + 6003F5B6195388D20070C39A /* Supporting Files */,
  176 + );
  177 + path = Tests;
  178 + sourceTree = "<group>";
  179 + };
  180 + 6003F5B6195388D20070C39A /* Supporting Files */ = {
  181 + isa = PBXGroup;
  182 + children = (
  183 + 6003F5B7195388D20070C39A /* Tests-Info.plist */,
  184 + 6003F5B8195388D20070C39A /* InfoPlist.strings */,
  185 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
  186 + );
  187 + name = "Supporting Files";
  188 + sourceTree = "<group>";
  189 + };
  190 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
  191 + isa = PBXGroup;
  192 + children = (
  193 + 5800A95F51CF70E25010DA78 /* DSVideoContestModuleF.podspec */,
  194 + 20244AF1B9AF5FBB111BDA4A /* README.md */,
  195 + 24460C45889827C98ADC8CFF /* LICENSE */,
  196 + );
  197 + name = "Podspec Metadata";
  198 + sourceTree = "<group>";
  199 + };
  200 +/* End PBXGroup section */
  201 +
  202 +/* Begin PBXNativeTarget section */
  203 + 6003F589195388D20070C39A /* DSVideoContestModuleF_Example */ = {
  204 + isa = PBXNativeTarget;
  205 + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSVideoContestModuleF_Example" */;
  206 + buildPhases = (
  207 + 4FCA38C33EEE2B9176A357C2 /* [CP] Check Pods Manifest.lock */,
  208 + 6003F586195388D20070C39A /* Sources */,
  209 + 6003F587195388D20070C39A /* Frameworks */,
  210 + 6003F588195388D20070C39A /* Resources */,
  211 + 6DDF428FA3D32386E096B575 /* [CP] Embed Pods Frameworks */,
  212 + );
  213 + buildRules = (
  214 + );
  215 + dependencies = (
  216 + );
  217 + name = DSVideoContestModuleF_Example;
  218 + productName = DSVideoContestModuleF;
  219 + productReference = 6003F58A195388D20070C39A /* DSVideoContestModuleF_Example.app */;
  220 + productType = "com.apple.product-type.application";
  221 + };
  222 + 6003F5AD195388D20070C39A /* DSVideoContestModuleF_Tests */ = {
  223 + isa = PBXNativeTarget;
  224 + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSVideoContestModuleF_Tests" */;
  225 + buildPhases = (
  226 + A4038297FC2636F3A7FB48C5 /* [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 = DSVideoContestModuleF_Tests;
  237 + productName = DSVideoContestModuleFTests;
  238 + productReference = 6003F5AE195388D20070C39A /* DSVideoContestModuleF_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 "DSVideoContestModuleF" */;
  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 /* DSVideoContestModuleF_Example */,
  270 + 6003F5AD195388D20070C39A /* DSVideoContestModuleF_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 + 4FCA38C33EEE2B9176A357C2 /* [CP] Check Pods Manifest.lock */ = {
  299 + isa = PBXShellScriptBuildPhase;
  300 + buildActionMask = 2147483647;
  301 + files = (
  302 + );
  303 + inputFileListPaths = (
  304 + );
  305 + inputPaths = (
  306 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  307 + "${PODS_ROOT}/Manifest.lock",
  308 + );
  309 + name = "[CP] Check Pods Manifest.lock";
  310 + outputFileListPaths = (
  311 + );
  312 + outputPaths = (
  313 + "$(DERIVED_FILE_DIR)/Pods-DSVideoContestModuleF_Example-checkManifestLockResult.txt",
  314 + );
  315 + runOnlyForDeploymentPostprocessing = 0;
  316 + shellPath = /bin/sh;
  317 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  318 + showEnvVarsInLog = 0;
  319 + };
  320 + 6DDF428FA3D32386E096B575 /* [CP] Embed Pods Frameworks */ = {
  321 + isa = PBXShellScriptBuildPhase;
  322 + buildActionMask = 2147483647;
  323 + files = (
  324 + );
  325 + inputPaths = (
  326 + "${PODS_ROOT}/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-frameworks.sh",
  327 + "${BUILT_PRODUCTS_DIR}/DSVideoContestModuleF/DSVideoContestModuleF.framework",
  328 + );
  329 + name = "[CP] Embed Pods Frameworks";
  330 + outputPaths = (
  331 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DSVideoContestModuleF.framework",
  332 + );
  333 + runOnlyForDeploymentPostprocessing = 0;
  334 + shellPath = /bin/sh;
  335 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-frameworks.sh\"\n";
  336 + showEnvVarsInLog = 0;
  337 + };
  338 + A4038297FC2636F3A7FB48C5 /* [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-DSVideoContestModuleF_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 /* DSVideoContestModuleF_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 = 4EB8B65BC1896129B06BBAED /* Pods-DSVideoContestModuleF_Example.debug.xcconfig */;
  495 + buildSettings = {
  496 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  497 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  498 + GCC_PREFIX_HEADER = "DSVideoContestModuleF/DSVideoContestModuleF-Prefix.pch";
  499 + INFOPLIST_FILE = "DSVideoContestModuleF/DSVideoContestModuleF-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 = E0E5FDC2B59276439CA5AA3E /* Pods-DSVideoContestModuleF_Example.release.xcconfig */;
  511 + buildSettings = {
  512 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  513 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  514 + GCC_PREFIX_HEADER = "DSVideoContestModuleF/DSVideoContestModuleF-Prefix.pch";
  515 + INFOPLIST_FILE = "DSVideoContestModuleF/DSVideoContestModuleF-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 = 24617B381FA06459ECA68972 /* Pods-DSVideoContestModuleF_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)/DSVideoContestModuleF_Example.app/DSVideoContestModuleF_Example";
  545 + WRAPPER_EXTENSION = xctest;
  546 + };
  547 + name = Debug;
  548 + };
  549 + 6003F5C4195388D20070C39A /* Release */ = {
  550 + isa = XCBuildConfiguration;
  551 + baseConfigurationReference = 3EF5372FB6EF9B2C35C10434 /* Pods-DSVideoContestModuleF_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)/DSVideoContestModuleF_Example.app/DSVideoContestModuleF_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 "DSVideoContestModuleF" */ = {
  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 "DSVideoContestModuleF_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 "DSVideoContestModuleF_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/DSVideoContestModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:DSVideoContestModuleF.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
... ...
Example/DSVideoContestModuleF.xcodeproj/xcshareddata/xcschemes/DSVideoContestModuleF-Example.xcscheme 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF.xcodeproj/xcshareddata/xcschemes/DSVideoContestModuleF-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 = "DSVideoContestModuleF_Example.app"
  19 + BlueprintName = "DSVideoContestModuleF_Example"
  20 + ReferencedContainer = "container:DSVideoContestModuleF.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 = "DSVideoContestModuleF_Tests.xctest"
  37 + BlueprintName = "DSVideoContestModuleF_Tests"
  38 + ReferencedContainer = "container:DSVideoContestModuleF.xcodeproj">
  39 + </BuildableReference>
  40 + </TestableReference>
  41 + </Testables>
  42 + <MacroExpansion>
  43 + <BuildableReference
  44 + BuildableIdentifier = "primary"
  45 + BlueprintIdentifier = "6003F589195388D20070C39A"
  46 + BuildableName = "DSVideoContestModuleF_Example.app"
  47 + BlueprintName = "DSVideoContestModuleF_Example"
  48 + ReferencedContainer = "container:DSVideoContestModuleF.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 = "DSVideoContestModuleF_Example.app"
  70 + BlueprintName = "DSVideoContestModuleF_Example"
  71 + ReferencedContainer = "container:DSVideoContestModuleF.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 = "DSVideoContestModuleF_Example.app"
  89 + BlueprintName = "DSVideoContestModuleF_Example"
  90 + ReferencedContainer = "container:DSVideoContestModuleF.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/DSVideoContestModuleF.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "group:DSVideoContestModuleF.xcodeproj">
  6 + </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
  10 +</Workspace>
... ...
Example/DSVideoContestModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF.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/DSVideoContestModuleF/Base.lproj/LaunchScreen.storyboard 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/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/DSVideoContestModuleF/Base.lproj/Main.storyboard 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/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/DSVideoContestModuleF/DSAppDelegate.h 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/DSAppDelegate.h
  1 +//
  2 +// DSAppDelegate.h
  3 +// DSVideoContestModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface DSAppDelegate : UIResponder <UIApplicationDelegate>
  12 +
  13 +@property (strong, nonatomic) UIWindow *window;
  14 +
  15 +@end
... ...
Example/DSVideoContestModuleF/DSAppDelegate.m 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/DSAppDelegate.m
  1 +//
  2 +// DSAppDelegate.m
  3 +// DSVideoContestModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +#import "DSAppDelegate.h"
  10 +
  11 +@implementation DSAppDelegate
  12 +
  13 +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  14 +{
  15 + // Override point for customization after application launch.
  16 + return YES;
  17 +}
  18 +
  19 +- (void)applicationWillResignActive:(UIApplication *)application
  20 +{
  21 + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
  22 + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
  23 +}
  24 +
  25 +- (void)applicationDidEnterBackground:(UIApplication *)application
  26 +{
  27 + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
  28 + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  29 +}
  30 +
  31 +- (void)applicationWillEnterForeground:(UIApplication *)application
  32 +{
  33 + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
  34 +}
  35 +
  36 +- (void)applicationDidBecomeActive:(UIApplication *)application
  37 +{
  38 + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  39 +}
  40 +
  41 +- (void)applicationWillTerminate:(UIApplication *)application
  42 +{
  43 + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  44 +}
  45 +
  46 +@end
... ...
Example/DSVideoContestModuleF/DSVideoContestModuleF-Info.plist 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/DSVideoContestModuleF-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/DSVideoContestModuleF/DSVideoContestModuleF-Prefix.pch 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/DSVideoContestModuleF-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/DSVideoContestModuleF/DSViewController.h 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/DSViewController.h
  1 +//
  2 +// DSViewController.h
  3 +// DSVideoContestModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface DSViewController : UIViewController
  12 +
  13 +@end
... ...
Example/DSVideoContestModuleF/DSViewController.m 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/DSViewController.m
  1 +//
  2 +// DSViewController.m
  3 +// DSVideoContestModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +#import "DSViewController.h"
  10 +
  11 +@interface DSViewController ()
  12 +
  13 +@end
  14 +
  15 +@implementation DSViewController
  16 +
  17 +- (void)viewDidLoad
  18 +{
  19 + [super viewDidLoad];
  20 + // Do any additional setup after loading the view, typically from a nib.
  21 +}
  22 +
  23 +- (void)didReceiveMemoryWarning
  24 +{
  25 + [super didReceiveMemoryWarning];
  26 + // Dispose of any resources that can be recreated.
  27 +}
  28 +
  29 +@end
... ...
Example/DSVideoContestModuleF/Images.xcassets/AppIcon.appiconset/Contents.json 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/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/DSVideoContestModuleF/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
... ...
Example/DSVideoContestModuleF/main.m 0 → 100644
  1 +++ a/Example/DSVideoContestModuleF/main.m
  1 +//
  2 +// main.m
  3 +// DSVideoContestModuleF
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +#import "DSAppDelegate.h"
  11 +
  12 +int main(int argc, char * argv[])
  13 +{
  14 + @autoreleasepool {
  15 + return UIApplicationMain(argc, argv, nil, NSStringFromClass([DSAppDelegate class]));
  16 + }
  17 +}
... ...
Example/Podfile 0 → 100644
  1 +++ a/Example/Podfile
  1 +use_frameworks!
  2 +
  3 +platform :ios, '8.0'
  4 +
  5 +target 'DSVideoContestModuleF_Example' do
  6 + pod 'DSVideoContestModuleF', :path => '../'
  7 +
  8 + target 'DSVideoContestModuleF_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 + - DSVideoContestModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSVideoContestModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSVideoContestModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSVideoContestModuleF: 9bb051fb8b1246124b8ac6e07fcf8974e72f471e
  13 +
  14 +PODFILE CHECKSUM: 1f90d6c425805c1b7dad188797c3e374ed3f2dbe
  15 +
  16 +COCOAPODS: 1.8.4
... ...
Example/Pods/Local Podspecs/DSVideoContestModuleF.podspec.json 0 → 100644
  1 +++ a/Example/Pods/Local Podspecs/DSVideoContestModuleF.podspec.json
  1 +{
  2 + "name": "DSVideoContestModuleF",
  3 + "version": "0.1.0",
  4 + "summary": "A short description of DSVideoContestModuleF.",
  5 + "description": "TODO: Add long description of the pod here.",
  6 + "homepage": "https://github.com/694092596@qq.com/DSVideoContestModuleF",
  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/DSVideoContestModuleF.git",
  16 + "tag": "0.1.0"
  17 + },
  18 + "platforms": {
  19 + "ios": "8.0"
  20 + },
  21 + "source_files": "DSVideoContestModuleF/Classes/**/*"
  22 +}
... ...
Example/Pods/Manifest.lock 0 → 100644
  1 +++ a/Example/Pods/Manifest.lock
  1 +PODS:
  2 + - DSVideoContestModuleF (0.1.0)
  3 +
  4 +DEPENDENCIES:
  5 + - DSVideoContestModuleF (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSVideoContestModuleF:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSVideoContestModuleF: 9bb051fb8b1246124b8ac6e07fcf8974e72f471e
  13 +
  14 +PODFILE CHECKSUM: 1f90d6c425805c1b7dad188797c3e374ed3f2dbe
  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 + 08E40BF91B499BE48F21B6721528992B /* ReplaceMe.m in Sources */ = {isa = PBXBuildFile; fileRef = 19347FFFAFCA5F29B736672F3E488582 /* ReplaceMe.m */; };
  11 + 17DD45484C67A025F969E02FA8A7F4E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  12 + 34F3779C1E3F4477222DA20AEC6A0CAE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  13 + 3F7D9A742A1079D7765FBDFA3378E8A5 /* Pods-DSVideoContestModuleF_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4889026E7B09ECE7408CD74F6A49504C /* Pods-DSVideoContestModuleF_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  14 + 64DA3B063F449F59ED0153C97B8B08F5 /* Pods-DSVideoContestModuleF_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8AEF421A476EB5199D475484AEE9A5 /* Pods-DSVideoContestModuleF_Example-dummy.m */; };
  15 + 70338E6AEA72B4E4CC2BCBECC7A1F17D /* Pods-DSVideoContestModuleF_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E28287E46BD4DFAED657CDCDC6E4A70B /* Pods-DSVideoContestModuleF_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  16 + AFAF6049C9F591182382F242B77EA51E /* Pods-DSVideoContestModuleF_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D89351761A6B26214874EBE3739A52A9 /* Pods-DSVideoContestModuleF_Tests-dummy.m */; };
  17 + BEF37B7340789E4A68D19F90C38658F3 /* DSVideoContestModuleF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F48FC68B8C11056D7E4EC5E7DADB6954 /* DSVideoContestModuleF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  18 + EECC55CC29059D761032FA7C0ABB1888 /* DSVideoContestModuleF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 824E4F64B69DBB0B167B36C9757C0634 /* DSVideoContestModuleF-dummy.m */; };
  19 + F2169DFE535FDED2489C2E35F21663B9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  20 +/* End PBXBuildFile section */
  21 +
  22 +/* Begin PBXContainerItemProxy section */
  23 + B1730F530A4A8D4795EE816E286A1D92 /* PBXContainerItemProxy */ = {
  24 + isa = PBXContainerItemProxy;
  25 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  26 + proxyType = 1;
  27 + remoteGlobalIDString = 61D2D9F3B5A69096E2AC198CF6A63219;
  28 + remoteInfo = "Pods-DSVideoContestModuleF_Example";
  29 + };
  30 + BCB8BC34297226A0D126AFD376B43824 /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = 699A5F347F5800EA32BE9E32902D91FE;
  35 + remoteInfo = DSVideoContestModuleF;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 006BC5E9585363E4A8B360D65F71A67B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  41 + 19347FFFAFCA5F29B736672F3E488582 /* ReplaceMe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReplaceMe.m; path = DSVideoContestModuleF/Classes/ReplaceMe.m; sourceTree = "<group>"; };
  42 + 19378EEC24EB7974A8D1B5D52668FCF3 /* Pods-DSVideoContestModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSVideoContestModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; };
  43 + 1A8AEF421A476EB5199D475484AEE9A5 /* Pods-DSVideoContestModuleF_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSVideoContestModuleF_Example-dummy.m"; sourceTree = "<group>"; };
  44 + 1C17B6772F8B1E36D72DC891E852CA60 /* Pods-DSVideoContestModuleF_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSVideoContestModuleF_Example-Info.plist"; sourceTree = "<group>"; };
  45 + 1D218EB564DAA9F20F159B3F31EAE7BC /* DSVideoContestModuleF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DSVideoContestModuleF.modulemap; sourceTree = "<group>"; };
  46 + 2ECA7AD4184CFB1FD9C9F6894D59470B /* Pods-DSVideoContestModuleF_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSVideoContestModuleF_Example.modulemap"; sourceTree = "<group>"; };
  47 + 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; };
  48 + 354D4612F4A440491EB6DDAF488C7740 /* Pods_DSVideoContestModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSVideoContestModuleF_Example.framework; path = "Pods-DSVideoContestModuleF_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  49 + 4889026E7B09ECE7408CD74F6A49504C /* Pods-DSVideoContestModuleF_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSVideoContestModuleF_Tests-umbrella.h"; sourceTree = "<group>"; };
  50 + 48A61F50E6F3D3C10840667A7B75309A /* DSVideoContestModuleF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DSVideoContestModuleF.xcconfig; sourceTree = "<group>"; };
  51 + 6FD573B255979069848A258BF49AE4D3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  52 + 77DDEDE13DDC67BB6EC3599F1A6EAA89 /* Pods-DSVideoContestModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSVideoContestModuleF_Example.release.xcconfig"; sourceTree = "<group>"; };
  53 + 790B03957F13872F7D48CD79DD655800 /* Pods-DSVideoContestModuleF_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSVideoContestModuleF_Tests-Info.plist"; sourceTree = "<group>"; };
  54 + 79B65ABFC78355C17AB453D47523AA36 /* DSVideoContestModuleF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSVideoContestModuleF-prefix.pch"; sourceTree = "<group>"; };
  55 + 824E4F64B69DBB0B167B36C9757C0634 /* DSVideoContestModuleF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DSVideoContestModuleF-dummy.m"; sourceTree = "<group>"; };
  56 + 909A0E173EDFE5CF84E8BA023B1B7D6E /* Pods-DSVideoContestModuleF_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DSVideoContestModuleF_Example-frameworks.sh"; sourceTree = "<group>"; };
  57 + 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; };
  58 + A58368B74498B339071629AB900D15D4 /* DSVideoContestModuleF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DSVideoContestModuleF.framework; path = DSVideoContestModuleF.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  59 + B83D238AB17D724EFF4D72391AF0D21A /* DSVideoContestModuleF-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DSVideoContestModuleF-Info.plist"; sourceTree = "<group>"; };
  60 + BEC6CCCFFE48AEAA96D01442D5AEF97F /* Pods-DSVideoContestModuleF_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSVideoContestModuleF_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
  61 + BEED20BB4A0C147172E9F0F6BBECBECB /* DSVideoContestModuleF.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DSVideoContestModuleF.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  62 + C6BEAE6808DBA24E7107376B729C8E55 /* Pods-DSVideoContestModuleF_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSVideoContestModuleF_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  63 + C729D8A8C9EFF5DEB1445E90B62D6ACD /* Pods-DSVideoContestModuleF_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSVideoContestModuleF_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  64 + CC066A3EA1CA6700B7EA658F824D4615 /* Pods-DSVideoContestModuleF_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSVideoContestModuleF_Tests.modulemap"; sourceTree = "<group>"; };
  65 + D535CE213A960338D4F005283A648A61 /* Pods_DSVideoContestModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSVideoContestModuleF_Tests.framework; path = "Pods-DSVideoContestModuleF_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  66 + D59F2F81B2A07013F07F25B1AE7355B7 /* Pods-DSVideoContestModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSVideoContestModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  67 + D89351761A6B26214874EBE3739A52A9 /* Pods-DSVideoContestModuleF_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSVideoContestModuleF_Tests-dummy.m"; sourceTree = "<group>"; };
  68 + E28287E46BD4DFAED657CDCDC6E4A70B /* Pods-DSVideoContestModuleF_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSVideoContestModuleF_Example-umbrella.h"; sourceTree = "<group>"; };
  69 + E588C107614D25B91AC25B4C4EA8A99C /* Pods-DSVideoContestModuleF_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSVideoContestModuleF_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
  70 + F48FC68B8C11056D7E4EC5E7DADB6954 /* DSVideoContestModuleF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSVideoContestModuleF-umbrella.h"; sourceTree = "<group>"; };
  71 + FA96C539EED34358C3A621837AC6353A /* Pods-DSVideoContestModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSVideoContestModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; };
  72 +/* End PBXFileReference section */
  73 +
  74 +/* Begin PBXFrameworksBuildPhase section */
  75 + 7DDC9EE6BA570DBBA38A1E9BEE5B6E38 /* Frameworks */ = {
  76 + isa = PBXFrameworksBuildPhase;
  77 + buildActionMask = 2147483647;
  78 + files = (
  79 + 17DD45484C67A025F969E02FA8A7F4E0 /* Foundation.framework in Frameworks */,
  80 + );
  81 + runOnlyForDeploymentPostprocessing = 0;
  82 + };
  83 + 9A005A08CFF3E5CCDABDA31D4A4718A5 /* Frameworks */ = {
  84 + isa = PBXFrameworksBuildPhase;
  85 + buildActionMask = 2147483647;
  86 + files = (
  87 + 34F3779C1E3F4477222DA20AEC6A0CAE /* Foundation.framework in Frameworks */,
  88 + );
  89 + runOnlyForDeploymentPostprocessing = 0;
  90 + };
  91 + B5F20E375B05962ED6B19EAD1B8BE22A /* Frameworks */ = {
  92 + isa = PBXFrameworksBuildPhase;
  93 + buildActionMask = 2147483647;
  94 + files = (
  95 + F2169DFE535FDED2489C2E35F21663B9 /* Foundation.framework in Frameworks */,
  96 + );
  97 + runOnlyForDeploymentPostprocessing = 0;
  98 + };
  99 +/* End PBXFrameworksBuildPhase section */
  100 +
  101 +/* Begin PBXGroup section */
  102 + 5375879392370F6F63504FA5727ADDC9 /* Pods-DSVideoContestModuleF_Example */ = {
  103 + isa = PBXGroup;
  104 + children = (
  105 + 2ECA7AD4184CFB1FD9C9F6894D59470B /* Pods-DSVideoContestModuleF_Example.modulemap */,
  106 + C6BEAE6808DBA24E7107376B729C8E55 /* Pods-DSVideoContestModuleF_Example-acknowledgements.markdown */,
  107 + C729D8A8C9EFF5DEB1445E90B62D6ACD /* Pods-DSVideoContestModuleF_Example-acknowledgements.plist */,
  108 + 1A8AEF421A476EB5199D475484AEE9A5 /* Pods-DSVideoContestModuleF_Example-dummy.m */,
  109 + 909A0E173EDFE5CF84E8BA023B1B7D6E /* Pods-DSVideoContestModuleF_Example-frameworks.sh */,
  110 + 1C17B6772F8B1E36D72DC891E852CA60 /* Pods-DSVideoContestModuleF_Example-Info.plist */,
  111 + E28287E46BD4DFAED657CDCDC6E4A70B /* Pods-DSVideoContestModuleF_Example-umbrella.h */,
  112 + 19378EEC24EB7974A8D1B5D52668FCF3 /* Pods-DSVideoContestModuleF_Example.debug.xcconfig */,
  113 + 77DDEDE13DDC67BB6EC3599F1A6EAA89 /* Pods-DSVideoContestModuleF_Example.release.xcconfig */,
  114 + );
  115 + name = "Pods-DSVideoContestModuleF_Example";
  116 + path = "Target Support Files/Pods-DSVideoContestModuleF_Example";
  117 + sourceTree = "<group>";
  118 + };
  119 + 5E3A808E60A3E3BF6EF587E82DA2235F /* Development Pods */ = {
  120 + isa = PBXGroup;
  121 + children = (
  122 + A9FF599C11B8D122768F088E691BFAEC /* DSVideoContestModuleF */,
  123 + );
  124 + name = "Development Pods";
  125 + sourceTree = "<group>";
  126 + };
  127 + A9FF599C11B8D122768F088E691BFAEC /* DSVideoContestModuleF */ = {
  128 + isa = PBXGroup;
  129 + children = (
  130 + 19347FFFAFCA5F29B736672F3E488582 /* ReplaceMe.m */,
  131 + C11BF070246D6817E087056A9F08BF51 /* Pod */,
  132 + DD070A595CCDCF66A8DCB601CB776287 /* Support Files */,
  133 + );
  134 + name = DSVideoContestModuleF;
  135 + path = ../..;
  136 + sourceTree = "<group>";
  137 + };
  138 + C0834CEBB1379A84116EF29F93051C60 /* iOS */ = {
  139 + isa = PBXGroup;
  140 + children = (
  141 + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */,
  142 + );
  143 + name = iOS;
  144 + sourceTree = "<group>";
  145 + };
  146 + C11BF070246D6817E087056A9F08BF51 /* Pod */ = {
  147 + isa = PBXGroup;
  148 + children = (
  149 + BEED20BB4A0C147172E9F0F6BBECBECB /* DSVideoContestModuleF.podspec */,
  150 + 6FD573B255979069848A258BF49AE4D3 /* LICENSE */,
  151 + 006BC5E9585363E4A8B360D65F71A67B /* README.md */,
  152 + );
  153 + name = Pod;
  154 + sourceTree = "<group>";
  155 + };
  156 + C7BE3933333E0A7EAE161F2425A8649E /* Pods-DSVideoContestModuleF_Tests */ = {
  157 + isa = PBXGroup;
  158 + children = (
  159 + CC066A3EA1CA6700B7EA658F824D4615 /* Pods-DSVideoContestModuleF_Tests.modulemap */,
  160 + BEC6CCCFFE48AEAA96D01442D5AEF97F /* Pods-DSVideoContestModuleF_Tests-acknowledgements.markdown */,
  161 + E588C107614D25B91AC25B4C4EA8A99C /* Pods-DSVideoContestModuleF_Tests-acknowledgements.plist */,
  162 + D89351761A6B26214874EBE3739A52A9 /* Pods-DSVideoContestModuleF_Tests-dummy.m */,
  163 + 790B03957F13872F7D48CD79DD655800 /* Pods-DSVideoContestModuleF_Tests-Info.plist */,
  164 + 4889026E7B09ECE7408CD74F6A49504C /* Pods-DSVideoContestModuleF_Tests-umbrella.h */,
  165 + D59F2F81B2A07013F07F25B1AE7355B7 /* Pods-DSVideoContestModuleF_Tests.debug.xcconfig */,
  166 + FA96C539EED34358C3A621837AC6353A /* Pods-DSVideoContestModuleF_Tests.release.xcconfig */,
  167 + );
  168 + name = "Pods-DSVideoContestModuleF_Tests";
  169 + path = "Target Support Files/Pods-DSVideoContestModuleF_Tests";
  170 + sourceTree = "<group>";
  171 + };
  172 + CF1408CF629C7361332E53B88F7BD30C = {
  173 + isa = PBXGroup;
  174 + children = (
  175 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  176 + 5E3A808E60A3E3BF6EF587E82DA2235F /* Development Pods */,
  177 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
  178 + EDCF7B4B2D28A79832451DA6C434FF35 /* Products */,
  179 + F03781E436A30366BE47AF7140030E17 /* Targets Support Files */,
  180 + );
  181 + sourceTree = "<group>";
  182 + };
  183 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
  184 + isa = PBXGroup;
  185 + children = (
  186 + C0834CEBB1379A84116EF29F93051C60 /* iOS */,
  187 + );
  188 + name = Frameworks;
  189 + sourceTree = "<group>";
  190 + };
  191 + DD070A595CCDCF66A8DCB601CB776287 /* Support Files */ = {
  192 + isa = PBXGroup;
  193 + children = (
  194 + 1D218EB564DAA9F20F159B3F31EAE7BC /* DSVideoContestModuleF.modulemap */,
  195 + 48A61F50E6F3D3C10840667A7B75309A /* DSVideoContestModuleF.xcconfig */,
  196 + 824E4F64B69DBB0B167B36C9757C0634 /* DSVideoContestModuleF-dummy.m */,
  197 + B83D238AB17D724EFF4D72391AF0D21A /* DSVideoContestModuleF-Info.plist */,
  198 + 79B65ABFC78355C17AB453D47523AA36 /* DSVideoContestModuleF-prefix.pch */,
  199 + F48FC68B8C11056D7E4EC5E7DADB6954 /* DSVideoContestModuleF-umbrella.h */,
  200 + );
  201 + name = "Support Files";
  202 + path = "Example/Pods/Target Support Files/DSVideoContestModuleF";
  203 + sourceTree = "<group>";
  204 + };
  205 + EDCF7B4B2D28A79832451DA6C434FF35 /* Products */ = {
  206 + isa = PBXGroup;
  207 + children = (
  208 + A58368B74498B339071629AB900D15D4 /* DSVideoContestModuleF.framework */,
  209 + 354D4612F4A440491EB6DDAF488C7740 /* Pods_DSVideoContestModuleF_Example.framework */,
  210 + D535CE213A960338D4F005283A648A61 /* Pods_DSVideoContestModuleF_Tests.framework */,
  211 + );
  212 + name = Products;
  213 + sourceTree = "<group>";
  214 + };
  215 + F03781E436A30366BE47AF7140030E17 /* Targets Support Files */ = {
  216 + isa = PBXGroup;
  217 + children = (
  218 + 5375879392370F6F63504FA5727ADDC9 /* Pods-DSVideoContestModuleF_Example */,
  219 + C7BE3933333E0A7EAE161F2425A8649E /* Pods-DSVideoContestModuleF_Tests */,
  220 + );
  221 + name = "Targets Support Files";
  222 + sourceTree = "<group>";
  223 + };
  224 +/* End PBXGroup section */
  225 +
  226 +/* Begin PBXHeadersBuildPhase section */
  227 + 6AE994CB9855B4C5AD0A4A653E7617BE /* Headers */ = {
  228 + isa = PBXHeadersBuildPhase;
  229 + buildActionMask = 2147483647;
  230 + files = (
  231 + 70338E6AEA72B4E4CC2BCBECC7A1F17D /* Pods-DSVideoContestModuleF_Example-umbrella.h in Headers */,
  232 + );
  233 + runOnlyForDeploymentPostprocessing = 0;
  234 + };
  235 + 87A3DE486E8D89719B8593E865A83099 /* Headers */ = {
  236 + isa = PBXHeadersBuildPhase;
  237 + buildActionMask = 2147483647;
  238 + files = (
  239 + BEF37B7340789E4A68D19F90C38658F3 /* DSVideoContestModuleF-umbrella.h in Headers */,
  240 + );
  241 + runOnlyForDeploymentPostprocessing = 0;
  242 + };
  243 + CBC1532E80F5AAFD700091A6CCD105B4 /* Headers */ = {
  244 + isa = PBXHeadersBuildPhase;
  245 + buildActionMask = 2147483647;
  246 + files = (
  247 + 3F7D9A742A1079D7765FBDFA3378E8A5 /* Pods-DSVideoContestModuleF_Tests-umbrella.h in Headers */,
  248 + );
  249 + runOnlyForDeploymentPostprocessing = 0;
  250 + };
  251 +/* End PBXHeadersBuildPhase section */
  252 +
  253 +/* Begin PBXNativeTarget section */
  254 + 61D2D9F3B5A69096E2AC198CF6A63219 /* Pods-DSVideoContestModuleF_Example */ = {
  255 + isa = PBXNativeTarget;
  256 + buildConfigurationList = A7DF13911B8CB418AEB514650D839F0B /* Build configuration list for PBXNativeTarget "Pods-DSVideoContestModuleF_Example" */;
  257 + buildPhases = (
  258 + 6AE994CB9855B4C5AD0A4A653E7617BE /* Headers */,
  259 + C9A54576C2F3555F2D3DB6ECF05E3377 /* Sources */,
  260 + 9A005A08CFF3E5CCDABDA31D4A4718A5 /* Frameworks */,
  261 + 318066CDCF7A4BF48F31BC89CA4BEC79 /* Resources */,
  262 + );
  263 + buildRules = (
  264 + );
  265 + dependencies = (
  266 + DDE2F9134B40E8A3BD1DF3A10274C5C4 /* PBXTargetDependency */,
  267 + );
  268 + name = "Pods-DSVideoContestModuleF_Example";
  269 + productName = "Pods-DSVideoContestModuleF_Example";
  270 + productReference = 354D4612F4A440491EB6DDAF488C7740 /* Pods_DSVideoContestModuleF_Example.framework */;
  271 + productType = "com.apple.product-type.framework";
  272 + };
  273 + 699A5F347F5800EA32BE9E32902D91FE /* DSVideoContestModuleF */ = {
  274 + isa = PBXNativeTarget;
  275 + buildConfigurationList = 6784FEA6767EFDCF9DCC89693DDA2679 /* Build configuration list for PBXNativeTarget "DSVideoContestModuleF" */;
  276 + buildPhases = (
  277 + 87A3DE486E8D89719B8593E865A83099 /* Headers */,
  278 + A808D692F772C2F0FEB7F06591B666FA /* Sources */,
  279 + 7DDC9EE6BA570DBBA38A1E9BEE5B6E38 /* Frameworks */,
  280 + 98A42C2C8CA0F83CC6C1A552AD80A46B /* Resources */,
  281 + );
  282 + buildRules = (
  283 + );
  284 + dependencies = (
  285 + );
  286 + name = DSVideoContestModuleF;
  287 + productName = DSVideoContestModuleF;
  288 + productReference = A58368B74498B339071629AB900D15D4 /* DSVideoContestModuleF.framework */;
  289 + productType = "com.apple.product-type.framework";
  290 + };
  291 + ABF07EA27AFCA36366C8FAD4971C4B11 /* Pods-DSVideoContestModuleF_Tests */ = {
  292 + isa = PBXNativeTarget;
  293 + buildConfigurationList = 170CB31ADCB69BFE2B6D0B0FD7457076 /* Build configuration list for PBXNativeTarget "Pods-DSVideoContestModuleF_Tests" */;
  294 + buildPhases = (
  295 + CBC1532E80F5AAFD700091A6CCD105B4 /* Headers */,
  296 + 3C11C4891C22F17349714C8A6B9EE939 /* Sources */,
  297 + B5F20E375B05962ED6B19EAD1B8BE22A /* Frameworks */,
  298 + 862AACE2BA271CD09CDDF13A90887A32 /* Resources */,
  299 + );
  300 + buildRules = (
  301 + );
  302 + dependencies = (
  303 + 24A47E9A85C5CDC301536AD21D78E110 /* PBXTargetDependency */,
  304 + );
  305 + name = "Pods-DSVideoContestModuleF_Tests";
  306 + productName = "Pods-DSVideoContestModuleF_Tests";
  307 + productReference = D535CE213A960338D4F005283A648A61 /* Pods_DSVideoContestModuleF_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 = EDCF7B4B2D28A79832451DA6C434FF35 /* Products */;
  329 + projectDirPath = "";
  330 + projectRoot = "";
  331 + targets = (
  332 + 699A5F347F5800EA32BE9E32902D91FE /* DSVideoContestModuleF */,
  333 + 61D2D9F3B5A69096E2AC198CF6A63219 /* Pods-DSVideoContestModuleF_Example */,
  334 + ABF07EA27AFCA36366C8FAD4971C4B11 /* Pods-DSVideoContestModuleF_Tests */,
  335 + );
  336 + };
  337 +/* End PBXProject section */
  338 +
  339 +/* Begin PBXResourcesBuildPhase section */
  340 + 318066CDCF7A4BF48F31BC89CA4BEC79 /* Resources */ = {
  341 + isa = PBXResourcesBuildPhase;
  342 + buildActionMask = 2147483647;
  343 + files = (
  344 + );
  345 + runOnlyForDeploymentPostprocessing = 0;
  346 + };
  347 + 862AACE2BA271CD09CDDF13A90887A32 /* Resources */ = {
  348 + isa = PBXResourcesBuildPhase;
  349 + buildActionMask = 2147483647;
  350 + files = (
  351 + );
  352 + runOnlyForDeploymentPostprocessing = 0;
  353 + };
  354 + 98A42C2C8CA0F83CC6C1A552AD80A46B /* Resources */ = {
  355 + isa = PBXResourcesBuildPhase;
  356 + buildActionMask = 2147483647;
  357 + files = (
  358 + );
  359 + runOnlyForDeploymentPostprocessing = 0;
  360 + };
  361 +/* End PBXResourcesBuildPhase section */
  362 +
  363 +/* Begin PBXSourcesBuildPhase section */
  364 + 3C11C4891C22F17349714C8A6B9EE939 /* Sources */ = {
  365 + isa = PBXSourcesBuildPhase;
  366 + buildActionMask = 2147483647;
  367 + files = (
  368 + AFAF6049C9F591182382F242B77EA51E /* Pods-DSVideoContestModuleF_Tests-dummy.m in Sources */,
  369 + );
  370 + runOnlyForDeploymentPostprocessing = 0;
  371 + };
  372 + A808D692F772C2F0FEB7F06591B666FA /* Sources */ = {
  373 + isa = PBXSourcesBuildPhase;
  374 + buildActionMask = 2147483647;
  375 + files = (
  376 + EECC55CC29059D761032FA7C0ABB1888 /* DSVideoContestModuleF-dummy.m in Sources */,
  377 + 08E40BF91B499BE48F21B6721528992B /* ReplaceMe.m in Sources */,
  378 + );
  379 + runOnlyForDeploymentPostprocessing = 0;
  380 + };
  381 + C9A54576C2F3555F2D3DB6ECF05E3377 /* Sources */ = {
  382 + isa = PBXSourcesBuildPhase;
  383 + buildActionMask = 2147483647;
  384 + files = (
  385 + 64DA3B063F449F59ED0153C97B8B08F5 /* Pods-DSVideoContestModuleF_Example-dummy.m in Sources */,
  386 + );
  387 + runOnlyForDeploymentPostprocessing = 0;
  388 + };
  389 +/* End PBXSourcesBuildPhase section */
  390 +
  391 +/* Begin PBXTargetDependency section */
  392 + 24A47E9A85C5CDC301536AD21D78E110 /* PBXTargetDependency */ = {
  393 + isa = PBXTargetDependency;
  394 + name = "Pods-DSVideoContestModuleF_Example";
  395 + target = 61D2D9F3B5A69096E2AC198CF6A63219 /* Pods-DSVideoContestModuleF_Example */;
  396 + targetProxy = B1730F530A4A8D4795EE816E286A1D92 /* PBXContainerItemProxy */;
  397 + };
  398 + DDE2F9134B40E8A3BD1DF3A10274C5C4 /* PBXTargetDependency */ = {
  399 + isa = PBXTargetDependency;
  400 + name = DSVideoContestModuleF;
  401 + target = 699A5F347F5800EA32BE9E32902D91FE /* DSVideoContestModuleF */;
  402 + targetProxy = BCB8BC34297226A0D126AFD376B43824 /* PBXContainerItemProxy */;
  403 + };
  404 +/* End PBXTargetDependency section */
  405 +
  406 +/* Begin XCBuildConfiguration section */
  407 + 12740CFC844BA622CF47FA605CB912BB /* Release */ = {
  408 + isa = XCBuildConfiguration;
  409 + baseConfigurationReference = 48A61F50E6F3D3C10840667A7B75309A /* DSVideoContestModuleF.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/DSVideoContestModuleF/DSVideoContestModuleF-prefix.pch";
  421 + INFOPLIST_FILE = "Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-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/DSVideoContestModuleF/DSVideoContestModuleF.modulemap";
  426 + PRODUCT_MODULE_NAME = DSVideoContestModuleF;
  427 + PRODUCT_NAME = DSVideoContestModuleF;
  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 + VALIDATE_PRODUCT = YES;
  434 + VERSIONING_SYSTEM = "apple-generic";
  435 + VERSION_INFO_PREFIX = "";
  436 + };
  437 + name = Release;
  438 + };
  439 + 448ACB52ADA81A3A5FF93D4FD62F347E /* Debug */ = {
  440 + isa = XCBuildConfiguration;
  441 + baseConfigurationReference = D59F2F81B2A07013F07F25B1AE7355B7 /* Pods-DSVideoContestModuleF_Tests.debug.xcconfig */;
  442 + buildSettings = {
  443 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  444 + CODE_SIGN_IDENTITY = "";
  445 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  446 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  447 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  448 + CURRENT_PROJECT_VERSION = 1;
  449 + DEFINES_MODULE = YES;
  450 + DYLIB_COMPATIBILITY_VERSION = 1;
  451 + DYLIB_CURRENT_VERSION = 1;
  452 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  453 + INFOPLIST_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-Info.plist";
  454 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  455 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  456 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  457 + MACH_O_TYPE = staticlib;
  458 + MODULEMAP_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.modulemap";
  459 + OTHER_LDFLAGS = "";
  460 + OTHER_LIBTOOLFLAGS = "";
  461 + PODS_ROOT = "$(SRCROOT)";
  462 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  463 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  464 + SDKROOT = iphoneos;
  465 + SKIP_INSTALL = YES;
  466 + TARGETED_DEVICE_FAMILY = "1,2";
  467 + VERSIONING_SYSTEM = "apple-generic";
  468 + VERSION_INFO_PREFIX = "";
  469 + };
  470 + name = Debug;
  471 + };
  472 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = {
  473 + isa = XCBuildConfiguration;
  474 + buildSettings = {
  475 + ALWAYS_SEARCH_USER_PATHS = NO;
  476 + CLANG_ANALYZER_NONNULL = YES;
  477 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  478 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  479 + CLANG_CXX_LIBRARY = "libc++";
  480 + CLANG_ENABLE_MODULES = YES;
  481 + CLANG_ENABLE_OBJC_ARC = YES;
  482 + CLANG_ENABLE_OBJC_WEAK = YES;
  483 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  484 + CLANG_WARN_BOOL_CONVERSION = YES;
  485 + CLANG_WARN_COMMA = YES;
  486 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  487 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  488 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  489 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  490 + CLANG_WARN_EMPTY_BODY = YES;
  491 + CLANG_WARN_ENUM_CONVERSION = YES;
  492 + CLANG_WARN_INFINITE_RECURSION = YES;
  493 + CLANG_WARN_INT_CONVERSION = YES;
  494 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  495 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  496 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  497 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  498 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  499 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  500 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  501 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  502 + CLANG_WARN_UNREACHABLE_CODE = YES;
  503 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  504 + COPY_PHASE_STRIP = NO;
  505 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  506 + ENABLE_NS_ASSERTIONS = NO;
  507 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  508 + GCC_C_LANGUAGE_STANDARD = gnu11;
  509 + GCC_NO_COMMON_BLOCKS = YES;
  510 + GCC_PREPROCESSOR_DEFINITIONS = (
  511 + "POD_CONFIGURATION_RELEASE=1",
  512 + "$(inherited)",
  513 + );
  514 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  515 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  516 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  517 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  518 + GCC_WARN_UNUSED_FUNCTION = YES;
  519 + GCC_WARN_UNUSED_VARIABLE = YES;
  520 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  521 + MTL_ENABLE_DEBUG_INFO = NO;
  522 + MTL_FAST_MATH = YES;
  523 + PRODUCT_NAME = "$(TARGET_NAME)";
  524 + STRIP_INSTALLED_PRODUCT = NO;
  525 + SWIFT_COMPILATION_MODE = wholemodule;
  526 + SWIFT_OPTIMIZATION_LEVEL = "-O";
  527 + SWIFT_VERSION = 5.0;
  528 + SYMROOT = "${SRCROOT}/../build";
  529 + };
  530 + name = Release;
  531 + };
  532 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = {
  533 + isa = XCBuildConfiguration;
  534 + buildSettings = {
  535 + ALWAYS_SEARCH_USER_PATHS = NO;
  536 + CLANG_ANALYZER_NONNULL = YES;
  537 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  538 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  539 + CLANG_CXX_LIBRARY = "libc++";
  540 + CLANG_ENABLE_MODULES = YES;
  541 + CLANG_ENABLE_OBJC_ARC = YES;
  542 + CLANG_ENABLE_OBJC_WEAK = YES;
  543 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  544 + CLANG_WARN_BOOL_CONVERSION = YES;
  545 + CLANG_WARN_COMMA = YES;
  546 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  547 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  548 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  549 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  550 + CLANG_WARN_EMPTY_BODY = YES;
  551 + CLANG_WARN_ENUM_CONVERSION = YES;
  552 + CLANG_WARN_INFINITE_RECURSION = YES;
  553 + CLANG_WARN_INT_CONVERSION = YES;
  554 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  555 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  556 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  557 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  558 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  559 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  560 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  561 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  562 + CLANG_WARN_UNREACHABLE_CODE = YES;
  563 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  564 + COPY_PHASE_STRIP = NO;
  565 + DEBUG_INFORMATION_FORMAT = dwarf;
  566 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  567 + ENABLE_TESTABILITY = YES;
  568 + GCC_C_LANGUAGE_STANDARD = gnu11;
  569 + GCC_DYNAMIC_NO_PIC = NO;
  570 + GCC_NO_COMMON_BLOCKS = YES;
  571 + GCC_OPTIMIZATION_LEVEL = 0;
  572 + GCC_PREPROCESSOR_DEFINITIONS = (
  573 + "POD_CONFIGURATION_DEBUG=1",
  574 + "DEBUG=1",
  575 + "$(inherited)",
  576 + );
  577 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  578 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  579 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  580 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  581 + GCC_WARN_UNUSED_FUNCTION = YES;
  582 + GCC_WARN_UNUSED_VARIABLE = YES;
  583 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  584 + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  585 + MTL_FAST_MATH = YES;
  586 + ONLY_ACTIVE_ARCH = YES;
  587 + PRODUCT_NAME = "$(TARGET_NAME)";
  588 + STRIP_INSTALLED_PRODUCT = NO;
  589 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  590 + SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  591 + SWIFT_VERSION = 5.0;
  592 + SYMROOT = "${SRCROOT}/../build";
  593 + };
  594 + name = Debug;
  595 + };
  596 + B2F7B7FE60DD92946C9D17DFFB5D5525 /* Release */ = {
  597 + isa = XCBuildConfiguration;
  598 + baseConfigurationReference = FA96C539EED34358C3A621837AC6353A /* Pods-DSVideoContestModuleF_Tests.release.xcconfig */;
  599 + buildSettings = {
  600 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  601 + CODE_SIGN_IDENTITY = "";
  602 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  603 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  604 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  605 + CURRENT_PROJECT_VERSION = 1;
  606 + DEFINES_MODULE = YES;
  607 + DYLIB_COMPATIBILITY_VERSION = 1;
  608 + DYLIB_CURRENT_VERSION = 1;
  609 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  610 + INFOPLIST_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-Info.plist";
  611 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  612 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  613 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  614 + MACH_O_TYPE = staticlib;
  615 + MODULEMAP_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.modulemap";
  616 + OTHER_LDFLAGS = "";
  617 + OTHER_LIBTOOLFLAGS = "";
  618 + PODS_ROOT = "$(SRCROOT)";
  619 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  620 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  621 + SDKROOT = iphoneos;
  622 + SKIP_INSTALL = YES;
  623 + TARGETED_DEVICE_FAMILY = "1,2";
  624 + VALIDATE_PRODUCT = YES;
  625 + VERSIONING_SYSTEM = "apple-generic";
  626 + VERSION_INFO_PREFIX = "";
  627 + };
  628 + name = Release;
  629 + };
  630 + B7A23A8238FB5E587B1E54A766F20A24 /* Debug */ = {
  631 + isa = XCBuildConfiguration;
  632 + baseConfigurationReference = 48A61F50E6F3D3C10840667A7B75309A /* DSVideoContestModuleF.xcconfig */;
  633 + buildSettings = {
  634 + CODE_SIGN_IDENTITY = "";
  635 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  636 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  637 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  638 + CURRENT_PROJECT_VERSION = 1;
  639 + DEFINES_MODULE = YES;
  640 + DYLIB_COMPATIBILITY_VERSION = 1;
  641 + DYLIB_CURRENT_VERSION = 1;
  642 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  643 + GCC_PREFIX_HEADER = "Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-prefix.pch";
  644 + INFOPLIST_FILE = "Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-Info.plist";
  645 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  646 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  647 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  648 + MODULEMAP_FILE = "Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF.modulemap";
  649 + PRODUCT_MODULE_NAME = DSVideoContestModuleF;
  650 + PRODUCT_NAME = DSVideoContestModuleF;
  651 + SDKROOT = iphoneos;
  652 + SKIP_INSTALL = YES;
  653 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  654 + SWIFT_VERSION = 4.0;
  655 + TARGETED_DEVICE_FAMILY = "1,2";
  656 + VERSIONING_SYSTEM = "apple-generic";
  657 + VERSION_INFO_PREFIX = "";
  658 + };
  659 + name = Debug;
  660 + };
  661 + F211821816EE14317CD9892D5094234C /* Debug */ = {
  662 + isa = XCBuildConfiguration;
  663 + baseConfigurationReference = 19378EEC24EB7974A8D1B5D52668FCF3 /* Pods-DSVideoContestModuleF_Example.debug.xcconfig */;
  664 + buildSettings = {
  665 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  666 + CODE_SIGN_IDENTITY = "";
  667 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  668 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  669 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  670 + CURRENT_PROJECT_VERSION = 1;
  671 + DEFINES_MODULE = YES;
  672 + DYLIB_COMPATIBILITY_VERSION = 1;
  673 + DYLIB_CURRENT_VERSION = 1;
  674 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  675 + INFOPLIST_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-Info.plist";
  676 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  677 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  678 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  679 + MACH_O_TYPE = staticlib;
  680 + MODULEMAP_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.modulemap";
  681 + OTHER_LDFLAGS = "";
  682 + OTHER_LIBTOOLFLAGS = "";
  683 + PODS_ROOT = "$(SRCROOT)";
  684 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  685 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  686 + SDKROOT = iphoneos;
  687 + SKIP_INSTALL = YES;
  688 + TARGETED_DEVICE_FAMILY = "1,2";
  689 + VERSIONING_SYSTEM = "apple-generic";
  690 + VERSION_INFO_PREFIX = "";
  691 + };
  692 + name = Debug;
  693 + };
  694 + F78AD8AF4F1AF5ED306C018A69E21D8D /* Release */ = {
  695 + isa = XCBuildConfiguration;
  696 + baseConfigurationReference = 77DDEDE13DDC67BB6EC3599F1A6EAA89 /* Pods-DSVideoContestModuleF_Example.release.xcconfig */;
  697 + buildSettings = {
  698 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  699 + CODE_SIGN_IDENTITY = "";
  700 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  701 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  702 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  703 + CURRENT_PROJECT_VERSION = 1;
  704 + DEFINES_MODULE = YES;
  705 + DYLIB_COMPATIBILITY_VERSION = 1;
  706 + DYLIB_CURRENT_VERSION = 1;
  707 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  708 + INFOPLIST_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-Info.plist";
  709 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  710 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  711 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  712 + MACH_O_TYPE = staticlib;
  713 + MODULEMAP_FILE = "Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.modulemap";
  714 + OTHER_LDFLAGS = "";
  715 + OTHER_LIBTOOLFLAGS = "";
  716 + PODS_ROOT = "$(SRCROOT)";
  717 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  718 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  719 + SDKROOT = iphoneos;
  720 + SKIP_INSTALL = YES;
  721 + TARGETED_DEVICE_FAMILY = "1,2";
  722 + VALIDATE_PRODUCT = YES;
  723 + VERSIONING_SYSTEM = "apple-generic";
  724 + VERSION_INFO_PREFIX = "";
  725 + };
  726 + name = Release;
  727 + };
  728 +/* End XCBuildConfiguration section */
  729 +
  730 +/* Begin XCConfigurationList section */
  731 + 170CB31ADCB69BFE2B6D0B0FD7457076 /* Build configuration list for PBXNativeTarget "Pods-DSVideoContestModuleF_Tests" */ = {
  732 + isa = XCConfigurationList;
  733 + buildConfigurations = (
  734 + 448ACB52ADA81A3A5FF93D4FD62F347E /* Debug */,
  735 + B2F7B7FE60DD92946C9D17DFFB5D5525 /* Release */,
  736 + );
  737 + defaultConfigurationIsVisible = 0;
  738 + defaultConfigurationName = Release;
  739 + };
  740 + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  741 + isa = XCConfigurationList;
  742 + buildConfigurations = (
  743 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */,
  744 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */,
  745 + );
  746 + defaultConfigurationIsVisible = 0;
  747 + defaultConfigurationName = Release;
  748 + };
  749 + 6784FEA6767EFDCF9DCC89693DDA2679 /* Build configuration list for PBXNativeTarget "DSVideoContestModuleF" */ = {
  750 + isa = XCConfigurationList;
  751 + buildConfigurations = (
  752 + B7A23A8238FB5E587B1E54A766F20A24 /* Debug */,
  753 + 12740CFC844BA622CF47FA605CB912BB /* Release */,
  754 + );
  755 + defaultConfigurationIsVisible = 0;
  756 + defaultConfigurationName = Release;
  757 + };
  758 + A7DF13911B8CB418AEB514650D839F0B /* Build configuration list for PBXNativeTarget "Pods-DSVideoContestModuleF_Example" */ = {
  759 + isa = XCConfigurationList;
  760 + buildConfigurations = (
  761 + F211821816EE14317CD9892D5094234C /* Debug */,
  762 + F78AD8AF4F1AF5ED306C018A69E21D8D /* 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/DSVideoContestModuleF.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSVideoContestModuleF.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 = "699A5F347F5800EA32BE9E32902D91FE"
  18 + BuildableName = "DSVideoContestModuleF.framework"
  19 + BlueprintName = "DSVideoContestModuleF"
  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-DSVideoContestModuleF_Example.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSVideoContestModuleF_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 = "61D2D9F3B5A69096E2AC198CF6A63219"
  18 + BuildableName = "Pods_DSVideoContestModuleF_Example.framework"
  19 + BlueprintName = "Pods-DSVideoContestModuleF_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-DSVideoContestModuleF_Tests.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSVideoContestModuleF_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 = "ABF07EA27AFCA36366C8FAD4971C4B11"
  18 + BuildableName = "Pods_DSVideoContestModuleF_Tests.framework"
  19 + BlueprintName = "Pods-DSVideoContestModuleF_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>DSVideoContestModuleF.xcscheme</key>
  8 + <dict>
  9 + <key>isShown</key>
  10 + <false/>
  11 + </dict>
  12 + <key>Pods-DSVideoContestModuleF_Example.xcscheme</key>
  13 + <dict>
  14 + <key>isShown</key>
  15 + <false/>
  16 + </dict>
  17 + <key>Pods-DSVideoContestModuleF_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/DSVideoContestModuleF/DSVideoContestModuleF-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-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/DSVideoContestModuleF/DSVideoContestModuleF-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_DSVideoContestModuleF : NSObject
  3 +@end
  4 +@implementation PodsDummy_DSVideoContestModuleF
  5 +@end
... ...
Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-prefix.pch 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-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/DSVideoContestModuleF/DSVideoContestModuleF-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF-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 DSVideoContestModuleFVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char DSVideoContestModuleFVersionString[];
  16 +
... ...
Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF.modulemap
  1 +framework module DSVideoContestModuleF {
  2 + umbrella header "DSVideoContestModuleF-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSVideoContestModuleF/DSVideoContestModuleF.xcconfig
  1 +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF
  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-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_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-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +
  4 +## DSVideoContestModuleF
  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-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_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>DSVideoContestModuleF</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-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSVideoContestModuleF_Example : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSVideoContestModuleF_Example
  5 +@end
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-frameworks.sh 0 → 100755
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_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}/DSVideoContestModuleF/DSVideoContestModuleF.framework"
  165 +fi
  166 +if [[ "$CONFIGURATION" == "Release" ]]; then
  167 + install_framework "${BUILT_PRODUCTS_DIR}/DSVideoContestModuleF/DSVideoContestModuleF.framework"
  168 +fi
  169 +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
  170 + wait
  171 +fi
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_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_DSVideoContestModuleF_ExampleVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSVideoContestModuleF_ExampleVersionString[];
  16 +
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF/DSVideoContestModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSVideoContestModuleF"
  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-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.modulemap
  1 +framework module Pods_DSVideoContestModuleF_Example {
  2 + umbrella header "Pods-DSVideoContestModuleF_Example-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Example/Pods-DSVideoContestModuleF_Example.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF/DSVideoContestModuleF.framework/Headers"
  4 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  5 +OTHER_LDFLAGS = $(inherited) -framework "DSVideoContestModuleF"
  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-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_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-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_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-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_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-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSVideoContestModuleF_Tests : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSVideoContestModuleF_Tests
  5 +@end
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_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_DSVideoContestModuleF_TestsVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSVideoContestModuleF_TestsVersionString[];
  16 +
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF/DSVideoContestModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSVideoContestModuleF"
  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-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.modulemap
  1 +framework module Pods_DSVideoContestModuleF_Tests {
  2 + umbrella header "Pods-DSVideoContestModuleF_Tests-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSVideoContestModuleF_Tests/Pods-DSVideoContestModuleF_Tests.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSVideoContestModuleF/DSVideoContestModuleF.framework/Headers"
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSVideoContestModuleF"
  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 +// DSVideoContestModuleFTests.m
  3 +// DSVideoContestModuleFTests
  4 +//
  5 +// Created by 694092596@qq.com on 03/15/2020.
  6 +// Copyright (c) 2020 694092596@qq.com. All rights reserved.
  7 +//
  8 +
  9 +@import XCTest;
  10 +
  11 +@interface Tests : XCTestCase
  12 +
  13 +@end
  14 +
  15 +@implementation Tests
  16 +
  17 +- (void)setUp
  18 +{
  19 + [super setUp];
  20 + // Put setup code here. This method is called before the invocation of each test method in the class.
  21 +}
  22 +
  23 +- (void)tearDown
  24 +{
  25 + // Put teardown code here. This method is called after the invocation of each test method in the class.
  26 + [super tearDown];
  27 +}
  28 +
  29 +- (void)testExample
  30 +{
  31 + XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
  32 +}
  33 +
  34 +@end
  35 +
... ...
Example/Tests/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/Tests/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
... ...
LICENSE 0 → 100644
  1 +++ a/LICENSE
  1 +Copyright (c) 2020 694092596@qq.com <694092596@qq.com>
  2 +
  3 +Permission is hereby granted, free of charge, to any person obtaining a copy
  4 +of this software and associated documentation files (the "Software"), to deal
  5 +in the Software without restriction, including without limitation the rights
  6 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7 +copies of the Software, and to permit persons to whom the Software is
  8 +furnished to do so, subject to the following conditions:
  9 +
  10 +The above copyright notice and this permission notice shall be included in
  11 +all copies or substantial portions of the Software.
  12 +
  13 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19 +THE SOFTWARE.
... ...
README.md 0 → 100644
  1 +++ a/README.md
  1 +# DSVideoContestModuleF
  2 +
  3 +[![CI Status](https://img.shields.io/travis/694092596@qq.com/DSVideoContestModuleF.svg?style=flat)](https://travis-ci.org/694092596@qq.com/DSVideoContestModuleF)
  4 +[![Version](https://img.shields.io/cocoapods/v/DSVideoContestModuleF.svg?style=flat)](https://cocoapods.org/pods/DSVideoContestModuleF)
  5 +[![License](https://img.shields.io/cocoapods/l/DSVideoContestModuleF.svg?style=flat)](https://cocoapods.org/pods/DSVideoContestModuleF)
  6 +[![Platform](https://img.shields.io/cocoapods/p/DSVideoContestModuleF.svg?style=flat)](https://cocoapods.org/pods/DSVideoContestModuleF)
  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 +DSVideoContestModuleF is available through [CocoaPods](https://cocoapods.org). To install
  17 +it, simply add the following line to your Podfile:
  18 +
  19 +```ruby
  20 +pod 'DSVideoContestModuleF'
  21 +```
  22 +
  23 +## Author
  24 +
  25 +694092596@qq.com, 694092596@qq.com
  26 +
  27 +## License
  28 +
  29 +DSVideoContestModuleF is available under the MIT license. See the LICENSE file for more info.
... ...
_Pods.xcodeproj 0 → 120000
  1 +++ a/_Pods.xcodeproj
  1 +Example/Pods/Pods.xcodeproj
0 2 \ No newline at end of file
... ...