Commit 98bc06be7a7b0f8cf2b6b85d45dcdceabc4c60be

Authored by yinqiaojuan
1 parent 31ad33a3

0.0.9

Showing 63 changed files with 4510 additions and 13 deletions

Too many changes to show.

To preserve performance only 63 of 83 files are displayed.

CNLiveDisease.podspec
1 1  
2 2 Pod::Spec.new do |s|
3 3 s.name = 'CNLiveDisease'
4   - s.version = '0.0.8'
  4 + s.version = '0.0.9'
5 5 s.summary = '智慧农业部分组件化'
6 6  
7 7 s.description = <<-DESC
... ...
CNLiveDisease/Classes/Actions/CNLiveTarget_A.m
... ... @@ -9,7 +9,7 @@
9 9  
10 10 @implementation CNLiveTarget_A
11 11 -(UIViewController *)CNLiveAction_ViewController:(NSDictionary *)params {
12   - CNLiveDiseaseController *vc = [[CNLiveDiseaseController alloc]initWithParams:params];
  12 + CNLiveDiseaseController *vc = [[CNLiveDiseaseController alloc]init];
13 13 return vc;
14 14 }
15 15 @end
... ...
CNLiveDisease/Classes/Controller/CNLiveDiseaseController.h
... ... @@ -10,7 +10,6 @@
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12 12 @interface CNLiveDiseaseController : UIViewController
13   --(instancetype)initWithParams:(NSDictionary *)params;
14 13 @end
15 14  
16 15 NS_ASSUME_NONNULL_END
... ...
CNLiveDisease/Classes/Controller/CNLiveDiseaseController.m
... ... @@ -20,13 +20,6 @@
20 20  
21 21 @implementation CNLiveDiseaseController
22 22  
23   --(instancetype)initWithParams:(NSDictionary *)params {
24   - self = [super init];
25   - if (self) {
26   - NSLog(@"这个方法走了吗");
27   - }
28   - return self;
29   -}
30 23 - (void)viewDidLoad {
31 24 [super viewDidLoad];
32 25 self.view.backgroundColor = [UIColor whiteColor];
... ...
CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.m
... ... @@ -9,6 +9,15 @@
9 9  
10 10 @implementation CNLiveCoreMediator (A)
11 11 -(UIViewController *)A_ViewControllerWithParams:(NSDictionary *)params {
12   - return [self performTarget:@"A" action:@"ViewController" params:params shouldCacheTarget:NO];
  12 +// return [self performTarget:@"A" action:@"ViewController" params:params shouldCacheTarget:NO];
  13 + UIViewController *viewController = [self performTarget:@"A" action:@"ViewController" params:params shouldCacheTarget:NO];
  14 + if ([viewController isKindOfClass:[UIViewController class]]) {
  15 + // view controller 交付出去之后,可以由外界选择如何使用
  16 + return viewController;
  17 + }else
  18 + {
  19 + // 这里处理异常场景,具体如何处理取决于产品
  20 + return [[UIViewController alloc] init];
  21 + }
13 22 }
14 23 @end
... ...
Example/CNLiveDisease.xcworkspace/xcuserdata/yinqiaojuan.xcuserdatad/UserInterfaceState.xcuserstate
No preview for this file type
Example/CNLiveDisease/CNLiveViewController.m
... ... @@ -9,7 +9,6 @@
9 9 #import "CNLiveViewController.h"
10 10  
11 11 #import "CNLiveCoreMediator+A.h"
12   -
13 12 @interface CNLiveViewController ()
14 13 @property (nonatomic, strong) UIButton *testButton;
15 14 @end
... ...
Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-umbrella.h 0 → 100644
  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 "CNLiveCoreMediator.h"
  14 +
  15 +FOUNDATION_EXPORT double CNLiveCoreMediatorVersionNumber;
  16 +FOUNDATION_EXPORT const unsigned char CNLiveCoreMediatorVersionString[];
  17 +
... ...
Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator.h 0 → 100644
  1 +//
  2 +// CNLiveCoreMediator.h
  3 +// CNLiveCoreMediator
  4 +//
  5 +// Created by 张旭 on 2018/10/17.
  6 +// Copyright © 2018年 cnlive. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@interface CNLiveCoreMediator : NSObject
  14 +
  15 ++ (instancetype)sharedInstance;
  16 +
  17 +// 远程App调用入口
  18 +- (id)performActionWithUrl:(NSURL *)url completion:(void(^)(NSDictionary *info))completion;
  19 +// 本地组件调用入口
  20 +- (id)performTarget:(NSString *)targetName action:(NSString *)actionName params:(NSDictionary *)params shouldCacheTarget:(BOOL)shouldCacheTarget;
  21 +
  22 +- (void)releaseCachedTargetWithTargetName:(NSString *)targetName;
  23 +
  24 +@end
  25 +
  26 +NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules/module.modulemap 0 → 100644
  1 +framework module CNLiveCoreMediator {
  2 + umbrella header "CNLiveCoreMediator-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveCoreMediator+A.h 0 → 100644
  1 +//
  2 +// CNLiveCoreMediator+A.h
  3 +// CNLiveDisease
  4 +//
  5 +// Created by 殷巧娟 on 2019/1/25.
  6 +//
  7 +
  8 +#import <CNLiveCoreMediator/CNLiveCoreMediator.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface CNLiveCoreMediator (A)
  13 +- (UIViewController *)A_ViewControllerWithParams:(NSDictionary *)params;
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-umbrella.h
... ... @@ -10,12 +10,17 @@
10 10 #endif
11 11 #endif
12 12  
  13 +#import "CNLiveTarget_A.h"
13 14 #import "CNLiveDiseaseController.h"
  15 +#import "CNLiveDiseaseDescController.h"
  16 +#import "CNLiveDiseaseFailedController.h"
14 17 #import "CNLiveFriutViewController.h"
15 18 #import "CNLiveSelectedViewController.h"
  19 +#import "CNLiveCoreMediator+A.h"
16 20 #import "CNDiseaseType.h"
17 21 #import "CNDiseaseViewCell.h"
18 22 #import "CNLiveDiseaseSegment.h"
  23 +#import "CNLiveGetImage.h"
19 24  
20 25 FOUNDATION_EXPORT double CNLiveDiseaseVersionNumber;
21 26 FOUNDATION_EXPORT const unsigned char CNLiveDiseaseVersionString[];
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDiseaseController.h
... ... @@ -10,7 +10,7 @@
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12 12 @interface CNLiveDiseaseController : UIViewController
13   -
  13 +-(instancetype)initWithParams:(NSDictionary *)params;
14 14 @end
15 15  
16 16 NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDiseaseDescController.h 0 → 100644
  1 +//
  2 +// CNLiveDiseaseDescController.h
  3 +// CNLiveDisease
  4 +//
  5 +// Created by 殷巧娟 on 2019/1/25.
  6 +//
  7 +
  8 +#import <QMUIKit/QMUIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface CNLiveDiseaseDescController : QMUICommonViewController
  13 +
  14 +@property (strong, nonatomic) NSDictionary * dataDict;
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDiseaseFailedController.h 0 → 100644
  1 +//
  2 +// CNLiveDiseaseFailedController.h
  3 +// CNLiveDisease
  4 +//
  5 +// Created by 殷巧娟 on 2019/1/25.
  6 +//
  7 +
  8 +#import <QMUIKit/QMUIKit.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface CNLiveDiseaseFailedController : QMUICommonViewController
  13 +@property (nonatomic, copy) NSString *name;
  14 +@property (nonatomic, copy) NSString *introduction;
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveGetImage.h 0 → 100644
  1 +//
  2 +// CNLiveGetImage.h
  3 +// CNLiveDisease
  4 +//
  5 +// Created by 殷巧娟 on 2019/1/25.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface CNLiveGetImage : NSObject
  13 ++ (UIImage *)getImageName:(NSString *)imageName;
  14 +@end
  15 +
  16 +NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveTarget_A.h 0 → 100644
  1 +//
  2 +// CNLiveTarget_A.h
  3 +// CNLiveDisease
  4 +//
  5 +// Created by 殷巧娟 on 2019/1/25.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +#import "CNLiveDiseaseController.h"
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +
  12 +@interface CNLiveTarget_A : NSObject
  13 +-(UIViewController *)CNLiveAction_ViewController:(NSDictionary *)params;
  14 +// 要在.h引用这个控制器,否则外面会找不到这个控制器
  15 +@end
  16 +
  17 +NS_ASSUME_NONNULL_END
... ...
Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-umbrella.h 0 → 100644
  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 "FLAnimatedImage.h"
  14 +#import "FLAnimatedImageView.h"
  15 +
  16 +FOUNDATION_EXPORT double FLAnimatedImageVersionNumber;
  17 +FOUNDATION_EXPORT const unsigned char FLAnimatedImageVersionString[];
  18 +
... ...
Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage.h 0 → 100644
  1 +//
  2 +// FLAnimatedImage.h
  3 +// Flipboard
  4 +//
  5 +// Created by Raphael Schaad on 7/8/13.
  6 +// Copyright (c) 2013-2015 Flipboard. All rights reserved.
  7 +//
  8 +
  9 +
  10 +#import <UIKit/UIKit.h>
  11 +
  12 +// Allow user classes conveniently just importing one header.
  13 +#import "FLAnimatedImageView.h"
  14 +
  15 +
  16 +#ifndef NS_DESIGNATED_INITIALIZER
  17 + #if __has_attribute(objc_designated_initializer)
  18 + #define NS_DESIGNATED_INITIALIZER __attribute((objc_designated_initializer))
  19 + #else
  20 + #define NS_DESIGNATED_INITIALIZER
  21 + #endif
  22 +#endif
  23 +
  24 +extern const NSTimeInterval kFLAnimatedImageDelayTimeIntervalMinimum;
  25 +
  26 +//
  27 +// An `FLAnimatedImage`'s job is to deliver frames in a highly performant way and works in conjunction with `FLAnimatedImageView`.
  28 +// It subclasses `NSObject` and not `UIImage` because it's only an "image" in the sense that a sea lion is a lion.
  29 +// It tries to intelligently choose the frame cache size depending on the image and memory situation with the goal to lower CPU usage for smaller ones, lower memory usage for larger ones and always deliver frames for high performant play-back.
  30 +// Note: `posterImage`, `size`, `loopCount`, `delayTimes` and `frameCount` don't change after successful initialization.
  31 +//
  32 +@interface FLAnimatedImage : NSObject
  33 +
  34 +@property (nonatomic, strong, readonly) UIImage *posterImage; // Guaranteed to be loaded; usually equivalent to `-imageLazilyCachedAtIndex:0`
  35 +@property (nonatomic, assign, readonly) CGSize size; // The `.posterImage`'s `.size`
  36 +
  37 +@property (nonatomic, assign, readonly) NSUInteger loopCount; // 0 means repeating the animation indefinitely
  38 +@property (nonatomic, strong, readonly) NSDictionary *delayTimesForIndexes; // Of type `NSTimeInterval` boxed in `NSNumber`s
  39 +@property (nonatomic, assign, readonly) NSUInteger frameCount; // Number of valid frames; equal to `[.delayTimes count]`
  40 +
  41 +@property (nonatomic, assign, readonly) NSUInteger frameCacheSizeCurrent; // Current size of intelligently chosen buffer window; can range in the interval [1..frameCount]
  42 +@property (nonatomic, assign) NSUInteger frameCacheSizeMax; // Allow to cap the cache size; 0 means no specific limit (default)
  43 +
  44 +// Intended to be called from main thread synchronously; will return immediately.
  45 +// If the result isn't cached, will return `nil`; the caller should then pause playback, not increment frame counter and keep polling.
  46 +// After an initial loading time, depending on `frameCacheSize`, frames should be available immediately from the cache.
  47 +- (UIImage *)imageLazilyCachedAtIndex:(NSUInteger)index;
  48 +
  49 +// Pass either a `UIImage` or an `FLAnimatedImage` and get back its size
  50 ++ (CGSize)sizeForImage:(id)image;
  51 +
  52 +// On success, the initializers return an `FLAnimatedImage` with all fields initialized, on failure they return `nil` and an error will be logged.
  53 +- (instancetype)initWithAnimatedGIFData:(NSData *)data;
  54 +// Pass 0 for optimalFrameCacheSize to get the default, predrawing is enabled by default.
  55 +- (instancetype)initWithAnimatedGIFData:(NSData *)data optimalFrameCacheSize:(NSUInteger)optimalFrameCacheSize predrawingEnabled:(BOOL)isPredrawingEnabled NS_DESIGNATED_INITIALIZER;
  56 ++ (instancetype)animatedImageWithGIFData:(NSData *)data;
  57 +
  58 +@property (nonatomic, strong, readonly) NSData *data; // The data the receiver was initialized with; read-only
  59 +
  60 +@end
  61 +
  62 +typedef NS_ENUM(NSUInteger, FLLogLevel) {
  63 + FLLogLevelNone = 0,
  64 + FLLogLevelError,
  65 + FLLogLevelWarn,
  66 + FLLogLevelInfo,
  67 + FLLogLevelDebug,
  68 + FLLogLevelVerbose
  69 +};
  70 +
  71 +@interface FLAnimatedImage (Logging)
  72 +
  73 ++ (void)setLogBlock:(void (^)(NSString *logString, FLLogLevel logLevel))logBlock logLevel:(FLLogLevel)logLevel;
  74 ++ (void)logStringFromBlock:(NSString *(^)(void))stringBlock withLevel:(FLLogLevel)level;
  75 +
  76 +@end
  77 +
  78 +#define FLLog(logLevel, format, ...) [FLAnimatedImage logStringFromBlock:^NSString *{ return [NSString stringWithFormat:(format), ## __VA_ARGS__]; } withLevel:(logLevel)]
  79 +
  80 +@interface FLWeakProxy : NSProxy
  81 +
  82 ++ (instancetype)weakProxyForObject:(id)targetObject;
  83 +
  84 +@end
... ...
Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImageView.h 0 → 100644
  1 +//
  2 +// FLAnimatedImageView.h
  3 +// Flipboard
  4 +//
  5 +// Created by Raphael Schaad on 7/8/13.
  6 +// Copyright (c) 2013-2015 Flipboard. All rights reserved.
  7 +//
  8 +
  9 +
  10 +#import <UIKit/UIKit.h>
  11 +
  12 +@class FLAnimatedImage;
  13 +@protocol FLAnimatedImageViewDebugDelegate;
  14 +
  15 +
  16 +//
  17 +// An `FLAnimatedImageView` can take an `FLAnimatedImage` and plays it automatically when in view hierarchy and stops when removed.
  18 +// The animation can also be controlled with the `UIImageView` methods `-start/stop/isAnimating`.
  19 +// It is a fully compatible `UIImageView` subclass and can be used as a drop-in component to work with existing code paths expecting to display a `UIImage`.
  20 +// Under the hood it uses a `CADisplayLink` for playback, which can be inspected with `currentFrame` & `currentFrameIndex`.
  21 +//
  22 +@interface FLAnimatedImageView : UIImageView
  23 +
  24 +// Setting `[UIImageView.image]` to a non-`nil` value clears out existing `animatedImage`.
  25 +// And vice versa, setting `animatedImage` will initially populate the `[UIImageView.image]` to its `posterImage` and then start animating and hold `currentFrame`.
  26 +@property (nonatomic, strong) FLAnimatedImage *animatedImage;
  27 +@property (nonatomic, copy) void(^loopCompletionBlock)(NSUInteger loopCountRemaining);
  28 +
  29 +@property (nonatomic, strong, readonly) UIImage *currentFrame;
  30 +@property (nonatomic, assign, readonly) NSUInteger currentFrameIndex;
  31 +
  32 +// The animation runloop mode. Enables playback during scrolling by allowing timer events (i.e. animation) with NSRunLoopCommonModes.
  33 +// To keep scrolling smooth on single-core devices such as iPhone 3GS/4 and iPod Touch 4th gen, the default run loop mode is NSDefaultRunLoopMode. Otherwise, the default is NSDefaultRunLoopMode.
  34 +@property (nonatomic, copy) NSString *runLoopMode;
  35 +
  36 +@end
... ...
Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules/module.modulemap 0 → 100644
  1 +framework module FLAnimatedImage {
  2 + umbrella header "FLAnimatedImage-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera-CNLiveAVCamera.build/CNLiveAVCamera-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera-CNLiveAVCamera.build/CNLiveAVCamera-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera-CNLiveAVCamera.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera.build/CNLiveAVCamera-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera.build/CNLiveAVCamera-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveBaseKit.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCommonCategory.build/CNLiveCommonCategory-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCommonCategory.build/CNLiveCommonCategory-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCommonCategory.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/CNLiveCoreMediator-all-non-framework-target-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/CNLiveCoreMediator-all-target-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/CNLiveCoreMediator-generated-files.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/CNLiveCoreMediator-own-target-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/CNLiveCoreMediator-project-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/CNLiveCoreMediator.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/DerivedSources/CNLiveCoreMediator_vers.c 0 → 100644
  1 + extern const unsigned char CNLiveCoreMediatorVersionString[];
  2 + extern const double CNLiveCoreMediatorVersionNumber;
  3 +
  4 + const unsigned char CNLiveCoreMediatorVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:CNLiveCoreMediator PROJECT:Pods-1" "\n";
  5 + const double CNLiveCoreMediatorVersionNumber __attribute__ ((used)) = (double)1.;
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/all-product-headers.yaml 0 → 100644
  1 +{
  2 + 'version': 0,
  3 + 'case-sensitive': 'false',
  4 + 'roots': [
  5 + {
  6 + 'type': 'directory',
  7 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveAVCamera/CNLiveAVCamera.framework/Headers",
  8 + 'contents': [
  9 + {
  10 + 'type': 'file',
  11 + 'name': "CNLiveAVCamera-Swift.h",
  12 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveAVCamera/CNLiveAVCamera.framework/Headers/CNLiveAVCamera-Swift.h"
  13 + },
  14 + {
  15 + 'type': 'file',
  16 + 'name': "CNLiveAVCamera-umbrella.h",
  17 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveAVCamera/CNLiveAVCamera-umbrella.h"
  18 + },
  19 + {
  20 + 'type': 'file',
  21 + 'name': "NSBundle+CNLiveXFCamera.h",
  22 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/NSBundle+CNLiveXFCamera.h"
  23 + },
  24 + {
  25 + 'type': 'file',
  26 + 'name': "XFCameraButton.h",
  27 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/XFCameraButton.h"
  28 + },
  29 + {
  30 + 'type': 'file',
  31 + 'name': "XFCameraController.h",
  32 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/XFCameraController.h"
  33 + },
  34 + {
  35 + 'type': 'file',
  36 + 'name': "XFPhotoLibraryManager.h",
  37 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/XFPhotoLibraryManager.h"
  38 + }
  39 + ]
  40 + },
  41 + {
  42 + 'type': 'directory',
  43 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveAVCamera/CNLiveAVCamera.framework/Modules",
  44 + 'contents': [
  45 + {
  46 + 'type': 'file',
  47 + 'name': "module.modulemap",
  48 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera.build/module.modulemap"
  49 + }
  50 + ]
  51 + },
  52 + {
  53 + 'type': 'directory',
  54 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveBaseKit/CNLiveBaseKit.framework/Headers",
  55 + 'contents': [
  56 + {
  57 + 'type': 'file',
  58 + 'name': "BaseModel.h",
  59 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.h"
  60 + },
  61 + {
  62 + 'type': 'file',
  63 + 'name': "CNLiveBaseKit-Swift.h",
  64 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-Swift.h"
  65 + },
  66 + {
  67 + 'type': 'file',
  68 + 'name': "CNLiveBaseKit-umbrella.h",
  69 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-umbrella.h"
  70 + },
  71 + {
  72 + 'type': 'file',
  73 + 'name': "CNLiveBaseKit.h",
  74 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/CNLiveBaseKit.h"
  75 + },
  76 + {
  77 + 'type': 'file',
  78 + 'name': "CNLiveDefinesHeader.h",
  79 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/CNLiveDefinesHeader.h"
  80 + },
  81 + {
  82 + 'type': 'file',
  83 + 'name': "CNSetUserDefaultTool.h",
  84 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNSetUserDefaultTool.h"
  85 + },
  86 + {
  87 + 'type': 'file',
  88 + 'name': "ColorHeaders.h",
  89 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorHeaders.h"
  90 + },
  91 + {
  92 + 'type': 'file',
  93 + 'name': "ColorMacro.h",
  94 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorMacro.h"
  95 + },
  96 + {
  97 + 'type': 'file',
  98 + 'name': "GTMBase64.h",
  99 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.h"
  100 + },
  101 + {
  102 + 'type': 'file',
  103 + 'name': "GTMDefines.h",
  104 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMDefines.h"
  105 + },
  106 + {
  107 + 'type': 'file',
  108 + 'name': "IOSDeviceConfig.h",
  109 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.h"
  110 + },
  111 + {
  112 + 'type': 'file',
  113 + 'name': "IOSDeviceMacro.h",
  114 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceMacro.h"
  115 + },
  116 + {
  117 + 'type': 'file',
  118 + 'name': "JSONKit.h",
  119 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.h"
  120 + },
  121 + {
  122 + 'type': 'file',
  123 + 'name': "NSMutableDictionary+Json.h",
  124 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.h"
  125 + },
  126 + {
  127 + 'type': 'file',
  128 + 'name': "NSObject+Json.h",
  129 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.h"
  130 + },
  131 + {
  132 + 'type': 'file',
  133 + 'name': "NSString+AES.h",
  134 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.h"
  135 + },
  136 + {
  137 + 'type': 'file',
  138 + 'name': "NSString+CNLiveExtension.h",
  139 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.h"
  140 + },
  141 + {
  142 + 'type': 'file',
  143 + 'name': "NSString+Common.h",
  144 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+Common.h"
  145 + },
  146 + {
  147 + 'type': 'file',
  148 + 'name': "PathHeaders.h",
  149 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathHeaders.h"
  150 + },
  151 + {
  152 + 'type': 'file',
  153 + 'name': "PathUtility.h",
  154 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.h"
  155 + },
  156 + {
  157 + 'type': 'file',
  158 + 'name': "UIButton+CNCreateButton.h",
  159 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.h"
  160 + },
  161 + {
  162 + 'type': 'file',
  163 + 'name': "UIColor+MLPFlatColors.h",
  164 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.h"
  165 + },
  166 + {
  167 + 'type': 'file',
  168 + 'name': "UIFont+CNLiveExtension.h",
  169 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.h"
  170 + },
  171 + {
  172 + 'type': 'file',
  173 + 'name': "UIFont+TLChat.h",
  174 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.h"
  175 + },
  176 + {
  177 + 'type': 'file',
  178 + 'name': "UIImage+CNLiveBaseExtension.h",
  179 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.h"
  180 + },
  181 + {
  182 + 'type': 'file',
  183 + 'name': "UIView+CNAlertView.h",
  184 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.h"
  185 + },
  186 + {
  187 + 'type': 'file',
  188 + 'name': "UIView+Extension.h",
  189 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.h"
  190 + }
  191 + ]
  192 + },
  193 + {
  194 + 'type': 'directory',
  195 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveBaseKit/CNLiveBaseKit.framework/Modules",
  196 + 'contents': [
  197 + {
  198 + 'type': 'file',
  199 + 'name': "module.modulemap",
  200 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveBaseKit.build/module.modulemap"
  201 + }
  202 + ]
  203 + },
  204 + {
  205 + 'type': 'directory',
  206 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCommonCategory/CNLiveCommonCategory.framework/Headers",
  207 + 'contents': [
  208 + {
  209 + 'type': 'file',
  210 + 'name': "CNLiveCommonCategory-Swift.h",
  211 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCommonCategory/CNLiveCommonCategory.framework/Headers/CNLiveCommonCategory-Swift.h"
  212 + },
  213 + {
  214 + 'type': 'file',
  215 + 'name': "CNLiveCommonCategory-umbrella.h",
  216 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCommonCategory/CNLiveCommonCategory-umbrella.h"
  217 + },
  218 + {
  219 + 'type': 'file',
  220 + 'name': "CNLiveCommonCategory.h",
  221 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/CNLiveCommonCategory.h"
  222 + },
  223 + {
  224 + 'type': 'file',
  225 + 'name': "NSArray+Safety.h",
  226 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSArrayExtension/NSArray+Safety.h"
  227 + },
  228 + {
  229 + 'type': 'file',
  230 + 'name': "NSData+Common.h",
  231 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSDataExtension/NSData+Common.h"
  232 + },
  233 + {
  234 + 'type': 'file',
  235 + 'name': "NSDate+Common.h",
  236 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSDateExtension/NSDate+Common.h"
  237 + },
  238 + {
  239 + 'type': 'file',
  240 + 'name': "NSDictionary+Safety.h",
  241 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSDictionaryExtension/NSDictionary+Safety.h"
  242 + },
  243 + {
  244 + 'type': 'file',
  245 + 'name': "NSObject+CommonBlock.h",
  246 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSObjectExtension/NSObject+CommonBlock.h"
  247 + },
  248 + {
  249 + 'type': 'file',
  250 + 'name': "NSObject+KVOCategory.h",
  251 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSObjectExtension/NSObject+KVOCategory.h"
  252 + },
  253 + {
  254 + 'type': 'file',
  255 + 'name': "NSString+Category.h",
  256 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+Category.h"
  257 + },
  258 + {
  259 + 'type': 'file',
  260 + 'name': "NSString+RegexCheck.h",
  261 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+RegexCheck.h"
  262 + },
  263 + {
  264 + 'type': 'file',
  265 + 'name': "NSString+Size.h",
  266 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+Size.h"
  267 + },
  268 + {
  269 + 'type': 'file',
  270 + 'name': "NSString+UrlEncode.h",
  271 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+UrlEncode.h"
  272 + },
  273 + {
  274 + 'type': 'file',
  275 + 'name': "UIButton+CNCountDownButton.h",
  276 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIButtonExtension/UIButton+CNCountDownButton.h"
  277 + },
  278 + {
  279 + 'type': 'file',
  280 + 'name': "UIButton+createButton.h",
  281 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIButtonExtension/UIButton+createButton.h"
  282 + },
  283 + {
  284 + 'type': 'file',
  285 + 'name': "UIColor+CNLiveExtension.h",
  286 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIColorExtension/UIColor+CNLiveExtension.h"
  287 + },
  288 + {
  289 + 'type': 'file',
  290 + 'name': "UIColor+TLChat.h",
  291 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIColorExtension/UIColor+TLChat.h"
  292 + },
  293 + {
  294 + 'type': 'file',
  295 + 'name': "UIControl+CNEventInterval.h",
  296 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIControlExtension/UIControl+CNEventInterval.h"
  297 + },
  298 + {
  299 + 'type': 'file',
  300 + 'name': "UIDevice+CNDevice.h",
  301 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIDeviceExtension/UIDevice+CNDevice.h"
  302 + },
  303 + {
  304 + 'type': 'file',
  305 + 'name': "UIImage+Alpha.h",
  306 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+Alpha.h"
  307 + },
  308 + {
  309 + 'type': 'file',
  310 + 'name': "UIImage+CNLiveAdd.h",
  311 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+CNLiveAdd.h"
  312 + },
  313 + {
  314 + 'type': 'file',
  315 + 'name': "UIImage+Common.h",
  316 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+Common.h"
  317 + },
  318 + {
  319 + 'type': 'file',
  320 + 'name': "UIImage+ImageEffect.h",
  321 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+ImageEffect.h"
  322 + },
  323 + {
  324 + 'type': 'file',
  325 + 'name': "UIImage+Luban_iOS_Extension_h.h",
  326 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+Luban_iOS_Extension_h.h"
  327 + },
  328 + {
  329 + 'type': 'file',
  330 + 'name': "UIImage+SGImageSize.h",
  331 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+SGImageSize.h"
  332 + },
  333 + {
  334 + 'type': 'file',
  335 + 'name': "UIImage+ScaleImageSize.h",
  336 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+ScaleImageSize.h"
  337 + },
  338 + {
  339 + 'type': 'file',
  340 + 'name': "UIImage+TintColor.h",
  341 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+TintColor.h"
  342 + },
  343 + {
  344 + 'type': 'file',
  345 + 'name': "UIImage+ZXExtension.h",
  346 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+ZXExtension.h"
  347 + },
  348 + {
  349 + 'type': 'file',
  350 + 'name': "UIImage+zipData.h",
  351 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+zipData.h"
  352 + },
  353 + {
  354 + 'type': 'file',
  355 + 'name': "UIImageView+InitMethod.h",
  356 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageViewExtension/UIImageView+InitMethod.h"
  357 + },
  358 + {
  359 + 'type': 'file',
  360 + 'name': "UIImageView+ZXExtension.h",
  361 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageViewExtension/UIImageView+ZXExtension.h"
  362 + },
  363 + {
  364 + 'type': 'file',
  365 + 'name': "UILabel+Common.h",
  366 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UILabelExtension/UILabel+Common.h"
  367 + },
  368 + {
  369 + 'type': 'file',
  370 + 'name': "UILabel+InitMethod.h",
  371 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UILabelExtension/UILabel+InitMethod.h"
  372 + },
  373 + {
  374 + 'type': 'file',
  375 + 'name': "UINavigationBar+NavigationBarBackground.h",
  376 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UINavigationBarExtension/UINavigationBar+NavigationBarBackground.h"
  377 + },
  378 + {
  379 + 'type': 'file',
  380 + 'name': "UIScrollView+Extensions.h",
  381 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIScrollviewExtension/UIScrollView+Extensions.h"
  382 + },
  383 + {
  384 + 'type': 'file',
  385 + 'name': "UIScrollView+Pages.h",
  386 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIScrollviewExtension/UIScrollView+Pages.h"
  387 + },
  388 + {
  389 + 'type': 'file',
  390 + 'name': "UITableView+Hit.h",
  391 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UITableViewExtension/UITableView+Hit.h"
  392 + },
  393 + {
  394 + 'type': 'file',
  395 + 'name': "UITextField+ZXExtension.h",
  396 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UITextFieldExtension/UITextField+ZXExtension.h"
  397 + },
  398 + {
  399 + 'type': 'file',
  400 + 'name': "UIView+CNGradienLayer.h",
  401 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+CNGradienLayer.h"
  402 + },
  403 + {
  404 + 'type': 'file',
  405 + 'name': "UIView+CaptureImage.h",
  406 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+CaptureImage.h"
  407 + },
  408 + {
  409 + 'type': 'file',
  410 + 'name': "UIView+CustomAutoLayout.h",
  411 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+CustomAutoLayout.h"
  412 + },
  413 + {
  414 + 'type': 'file',
  415 + 'name': "UIView+Effect.h",
  416 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+Effect.h"
  417 + },
  418 + {
  419 + 'type': 'file',
  420 + 'name': "UIView+Glow.h",
  421 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+Glow.h"
  422 + },
  423 + {
  424 + 'type': 'file',
  425 + 'name': "UIView+Layout.h",
  426 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+Layout.h"
  427 + },
  428 + {
  429 + 'type': 'file',
  430 + 'name': "UIView+ModifyFrame.h",
  431 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+ModifyFrame.h"
  432 + },
  433 + {
  434 + 'type': 'file',
  435 + 'name': "UIView+RelativeCoordinate.h",
  436 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+RelativeCoordinate.h"
  437 + },
  438 + {
  439 + 'type': 'file',
  440 + 'name': "UIViewController+ChildViewController.h",
  441 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewControllerExtension/UIViewController+ChildViewController.h"
  442 + },
  443 + {
  444 + 'type': 'file',
  445 + 'name': "UIWindow+CNCurrentViewController.h",
  446 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIWindowExtension/UIWindow+CNCurrentViewController.h"
  447 + }
  448 + ]
  449 + },
  450 + {
  451 + 'type': 'directory',
  452 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCommonCategory/CNLiveCommonCategory.framework/Modules",
  453 + 'contents': [
  454 + {
  455 + 'type': 'file',
  456 + 'name': "module.modulemap",
  457 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCommonCategory.build/module.modulemap"
  458 + }
  459 + ]
  460 + },
  461 + {
  462 + 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
  495 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
  496 + 'contents': [
  497 + {
  498 + 'type': 'file',
  499 + 'name': "CNDiseaseType.h",
  500 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNDiseaseType.h"
  501 + },
  502 + {
  503 + 'type': 'file',
  504 + 'name': "CNDiseaseViewCell.h",
  505 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNDiseaseViewCell.h"
  506 + },
  507 + {
  508 + 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
  514 + 'name': "CNLiveDisease-Swift.h",
  515 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
  516 + },
  517 + {
  518 + 'type': 'file',
  519 + 'name': "CNLiveDisease-umbrella.h",
  520 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveDisease/CNLiveDisease-umbrella.h"
  521 + },
  522 + {
  523 + 'type': 'file',
  524 + 'name': "CNLiveDiseaseController.h",
  525 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseController.h"
  526 + },
  527 + {
  528 + 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
  539 + 'name': "CNLiveDiseaseSegment.h",
  540 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
  541 + },
  542 + {
  543 + 'type': 'file',
  544 + 'name': "CNLiveFriutViewController.h",
  545 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveFriutViewController.h"
  546 + },
  547 + {
  548 + 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
  554 + 'name': "CNLiveSelectedViewController.h",
  555 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
  561 + }
  562 + ]
  563 + },
  564 + {
  565 + 'type': 'directory',
  566 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Modules",
  567 + 'contents': [
  568 + {
  569 + 'type': 'file',
  570 + 'name': "module.modulemap",
  571 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease.build/module.modulemap"
  572 + }
  573 + ]
  574 + },
  575 + {
  576 + 'type': 'directory',
  577 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveImagePickerController/CNLiveImagePickerController.framework/Headers",
  578 + 'contents': [
  579 + {
  580 + 'type': 'file',
  581 + 'name': "CNEditVideoController.h",
  582 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNEditVideoController.h"
  583 + },
  584 + {
  585 + 'type': 'file',
  586 + 'name': "CNImagePickerCommonDefine.h",
  587 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNImagePickerCommonDefine.h"
  588 + },
  589 + {
  590 + 'type': 'file',
  591 + 'name': "CNImagePickerController.h",
  592 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNImagePickerController.h"
  593 + },
  594 + {
  595 + 'type': 'file',
  596 + 'name': "CNImagePickerManager.h",
  597 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNImagePickerManager.h"
  598 + },
  599 + {
  600 + 'type': 'file',
  601 + 'name': "CNLiveImagePickerController-Swift.h",
  602 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveImagePickerController/CNLiveImagePickerController.framework/Headers/CNLiveImagePickerController-Swift.h"
  603 + },
  604 + {
  605 + 'type': 'file',
  606 + 'name': "CNLiveImagePickerController-umbrella.h",
  607 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveImagePickerController/CNLiveImagePickerController-umbrella.h"
  608 + },
  609 + {
  610 + 'type': 'file',
  611 + 'name': "NSBundle+TZImagePicker.h",
  612 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/NSBundle+TZImagePicker.h"
  613 + },
  614 + {
  615 + 'type': 'file',
  616 + 'name': "TZAssetCell.h",
  617 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZAssetCell.h"
  618 + },
  619 + {
  620 + 'type': 'file',
  621 + 'name': "TZAssetModel.h",
  622 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZAssetModel.h"
  623 + },
  624 + {
  625 + 'type': 'file',
  626 + 'name': "TZGifPhotoPreviewController.h",
  627 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZGifPhotoPreviewController.h"
  628 + },
  629 + {
  630 + 'type': 'file',
  631 + 'name': "TZImageCropManager.h",
  632 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZImageCropManager.h"
  633 + },
  634 + {
  635 + 'type': 'file',
  636 + 'name': "TZImageManager.h",
  637 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZImageManager.h"
  638 + },
  639 + {
  640 + 'type': 'file',
  641 + 'name': "TZImagePickerController.h",
  642 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZImagePickerController.h"
  643 + },
  644 + {
  645 + 'type': 'file',
  646 + 'name': "TZLocationManager.h",
  647 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZLocationManager.h"
  648 + },
  649 + {
  650 + 'type': 'file',
  651 + 'name': "TZPhotoPickerController.h",
  652 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZPhotoPickerController.h"
  653 + },
  654 + {
  655 + 'type': 'file',
  656 + 'name': "TZPhotoPreviewCell.h",
  657 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZPhotoPreviewCell.h"
  658 + },
  659 + {
  660 + 'type': 'file',
  661 + 'name': "TZPhotoPreviewController.h",
  662 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZPhotoPreviewController.h"
  663 + },
  664 + {
  665 + 'type': 'file',
  666 + 'name': "TZProgressView.h",
  667 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZProgressView.h"
  668 + },
  669 + {
  670 + 'type': 'file',
  671 + 'name': "TZVideoPlayerController.h",
  672 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZVideoPlayerController.h"
  673 + },
  674 + {
  675 + 'type': 'file',
  676 + 'name': "UIImage+CNImagePicker.h",
  677 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/UIImage+CNImagePicker.h"
  678 + },
  679 + {
  680 + 'type': 'file',
  681 + 'name': "UIView+Layout.h",
  682 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/UIView+Layout.h"
  683 + }
  684 + ]
  685 + },
  686 + {
  687 + 'type': 'directory',
  688 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveImagePickerController/CNLiveImagePickerController.framework/Modules",
  689 + 'contents': [
  690 + {
  691 + 'type': 'file',
  692 + 'name': "module.modulemap",
  693 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveImagePickerController.build/module.modulemap"
  694 + }
  695 + ]
  696 + },
  697 + {
  698 + 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
  736 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
  737 + 'contents': [
  738 + {
  739 + 'type': 'file',
  740 + 'name': "MJExtension-Swift.h",
  741 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers/MJExtension-Swift.h"
  742 + },
  743 + {
  744 + 'type': 'file',
  745 + 'name': "MJExtension-umbrella.h",
  746 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/MJExtension/MJExtension-umbrella.h"
  747 + },
  748 + {
  749 + 'type': 'file',
  750 + 'name': "MJExtension.h",
  751 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJExtension.h"
  752 + },
  753 + {
  754 + 'type': 'file',
  755 + 'name': "MJExtensionConst.h",
  756 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJExtensionConst.h"
  757 + },
  758 + {
  759 + 'type': 'file',
  760 + 'name': "MJFoundation.h",
  761 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJFoundation.h"
  762 + },
  763 + {
  764 + 'type': 'file',
  765 + 'name': "MJProperty.h",
  766 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJProperty.h"
  767 + },
  768 + {
  769 + 'type': 'file',
  770 + 'name': "MJPropertyKey.h",
  771 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJPropertyKey.h"
  772 + },
  773 + {
  774 + 'type': 'file',
  775 + 'name': "MJPropertyType.h",
  776 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJPropertyType.h"
  777 + },
  778 + {
  779 + 'type': 'file',
  780 + 'name': "NSObject+MJClass.h",
  781 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.h"
  782 + },
  783 + {
  784 + 'type': 'file',
  785 + 'name': "NSObject+MJCoding.h",
  786 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.h"
  787 + },
  788 + {
  789 + 'type': 'file',
  790 + 'name': "NSObject+MJKeyValue.h",
  791 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h"
  792 + },
  793 + {
  794 + 'type': 'file',
  795 + 'name': "NSObject+MJProperty.h",
  796 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.h"
  797 + },
  798 + {
  799 + 'type': 'file',
  800 + 'name': "NSString+MJExtension.h",
  801 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.h"
  802 + }
  803 + ]
  804 + },
  805 + {
  806 + 'type': 'directory',
  807 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Modules",
  808 + 'contents': [
  809 + {
  810 + 'type': 'file',
  811 + 'name': "module.modulemap",
  812 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/MJExtension.build/module.modulemap"
  813 + }
  814 + ]
  815 + },
  816 + {
  817 + 'type': 'directory',
  818 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/Masonry/Masonry.framework/Headers",
  819 + 'contents': [
  820 + {
  821 + 'type': 'file',
  822 + 'name': "MASCompositeConstraint.h",
  823 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h"
  824 + },
  825 + {
  826 + 'type': 'file',
  827 + 'name': "MASConstraint+Private.h",
  828 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASConstraint+Private.h"
  829 + },
  830 + {
  831 + 'type': 'file',
  832 + 'name': "MASConstraint.h",
  833 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASConstraint.h"
  834 + },
  835 + {
  836 + 'type': 'file',
  837 + 'name': "MASConstraintMaker.h",
  838 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASConstraintMaker.h"
  839 + },
  840 + {
  841 + 'type': 'file',
  842 + 'name': "MASLayoutConstraint.h",
  843 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h"
  844 + },
  845 + {
  846 + 'type': 'file',
  847 + 'name': "MASUtilities.h",
  848 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASUtilities.h"
  849 + },
  850 + {
  851 + 'type': 'file',
  852 + 'name': "MASViewAttribute.h",
  853 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASViewAttribute.h"
  854 + },
  855 + {
  856 + 'type': 'file',
  857 + 'name': "MASViewConstraint.h",
  858 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASViewConstraint.h"
  859 + },
  860 + {
  861 + 'type': 'file',
  862 + 'name': "Masonry-Swift.h",
  863 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/Masonry/Masonry.framework/Headers/Masonry-Swift.h"
  864 + },
  865 + {
  866 + 'type': 'file',
  867 + 'name': "Masonry-umbrella.h",
  868 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h"
  869 + },
  870 + {
  871 + 'type': 'file',
  872 + 'name': "Masonry.h",
  873 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/Masonry.h"
  874 + },
  875 + {
  876 + 'type': 'file',
  877 + 'name': "NSArray+MASAdditions.h",
  878 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h"
  879 + },
  880 + {
  881 + 'type': 'file',
  882 + 'name': "NSArray+MASShorthandAdditions.h",
  883 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h"
  884 + },
  885 + {
  886 + 'type': 'file',
  887 + 'name': "NSLayoutConstraint+MASDebugAdditions.h",
  888 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h"
  889 + },
  890 + {
  891 + 'type': 'file',
  892 + 'name': "View+MASAdditions.h",
  893 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/View+MASAdditions.h"
  894 + },
  895 + {
  896 + 'type': 'file',
  897 + 'name': "View+MASShorthandAdditions.h",
  898 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h"
  899 + },
  900 + {
  901 + 'type': 'file',
  902 + 'name': "ViewController+MASAdditions.h",
  903 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h"
  904 + }
  905 + ]
  906 + },
  907 + {
  908 + 'type': 'directory',
  909 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/Masonry/Masonry.framework/Modules",
  910 + 'contents': [
  911 + {
  912 + 'type': 'file',
  913 + 'name': "module.modulemap",
  914 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/Masonry.build/module.modulemap"
  915 + }
  916 + ]
  917 + },
  918 + {
  919 + 'type': 'directory',
  920 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/QMUIKit/QMUIKit.framework/Headers",
  921 + 'contents': [
  922 + {
  923 + 'type': 'file',
  924 + 'name': "CAAnimation+QMUI.h",
  925 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.h"
  926 + },
  927 + {
  928 + 'type': 'file',
  929 + 'name': "CALayer+QMUI.h",
  930 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.h"
  931 + },
  932 + {
  933 + 'type': 'file',
  934 + 'name': "NSArray+QMUI.h",
  935 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.h"
  936 + },
  937 + {
  938 + 'type': 'file',
  939 + 'name': "NSAttributedString+QMUI.h",
  940 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h"
  941 + },
  942 + {
  943 + 'type': 'file',
  944 + 'name': "NSCharacterSet+QMUI.h",
  945 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h"
  946 + },
  947 + {
  948 + 'type': 'file',
  949 + 'name': "NSNumber+QMUI.h",
  950 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.h"
  951 + },
  952 + {
  953 + 'type': 'file',
  954 + 'name': "NSObject+QMUI.h",
  955 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.h"
  956 + },
  957 + {
  958 + 'type': 'file',
  959 + 'name': "NSObject+QMUIMultipleDelegates.h",
  960 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.h"
  961 + },
  962 + {
  963 + 'type': 'file',
  964 + 'name': "NSParagraphStyle+QMUI.h",
  965 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h"
  966 + },
  967 + {
  968 + 'type': 'file',
  969 + 'name': "NSPointerArray+QMUI.h",
  970 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h"
  971 + },
  972 + {
  973 + 'type': 'file',
  974 + 'name': "NSString+QMUI.h",
  975 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.h"
  976 + },
  977 + {
  978 + 'type': 'file',
  979 + 'name': "NSURL+QMUI.h",
  980 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.h"
  981 + },
  982 + {
  983 + 'type': 'file',
  984 + 'name': "QMUIAlbumViewController.h",
  985 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h"
  986 + },
  987 + {
  988 + 'type': 'file',
  989 + 'name': "QMUIAlertController.h",
  990 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.h"
  991 + },
  992 + {
  993 + 'type': 'file',
  994 + 'name': "QMUIAsset.h",
  995 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h"
  996 + },
  997 + {
  998 + 'type': 'file',
  999 + 'name': "QMUIAssetsGroup.h",
  1000 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h"
  1001 + },
  1002 + {
  1003 + 'type': 'file',
  1004 + 'name': "QMUIAssetsManager.h",
  1005 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h"
  1006 + },
  1007 + {
  1008 + 'type': 'file',
  1009 + 'name': "QMUIButton.h",
  1010 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h"
  1011 + },
  1012 + {
  1013 + 'type': 'file',
  1014 + 'name': "QMUICellHeightCache.h",
  1015 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.h"
  1016 + },
  1017 + {
  1018 + 'type': 'file',
  1019 + 'name': "QMUICellHeightKeyCache.h",
  1020 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h"
  1021 + },
  1022 + {
  1023 + 'type': 'file',
  1024 + 'name': "QMUICellSizeKeyCache.h",
  1025 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h"
  1026 + },
  1027 + {
  1028 + 'type': 'file',
  1029 + 'name': "QMUICollectionViewPagingLayout.h",
  1030 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h"
  1031 + },
  1032 + {
  1033 + 'type': 'file',
  1034 + 'name': "QMUICommonDefines.h",
  1035 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICommonDefines.h"
  1036 + },
  1037 + {
  1038 + 'type': 'file',
  1039 + 'name': "QMUICommonTableViewController.h",
  1040 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h"
  1041 + },
  1042 + {
  1043 + 'type': 'file',
  1044 + 'name': "QMUICommonViewController.h",
  1045 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.h"
  1046 + },
  1047 + {
  1048 + 'type': 'file',
  1049 + 'name': "QMUIConfiguration.h",
  1050 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.h"
  1051 + },
  1052 + {
  1053 + 'type': 'file',
  1054 + 'name': "QMUIConfigurationMacros.h",
  1055 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfigurationMacros.h"
  1056 + },
  1057 + {
  1058 + 'type': 'file',
  1059 + 'name': "QMUIConsole.h",
  1060 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.h"
  1061 + },
  1062 + {
  1063 + 'type': 'file',
  1064 + 'name': "QMUIConsoleToolbar.h",
  1065 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.h"
  1066 + },
  1067 + {
  1068 + 'type': 'file',
  1069 + 'name': "QMUIConsoleViewController.h",
  1070 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.h"
  1071 + },
  1072 + {
  1073 + 'type': 'file',
  1074 + 'name': "QMUICore.h",
  1075 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICore.h"
  1076 + },
  1077 + {
  1078 + 'type': 'file',
  1079 + 'name': "QMUIDialogViewController.h",
  1080 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.h"
  1081 + },
  1082 + {
  1083 + 'type': 'file',
  1084 + 'name': "QMUIEmotionInputManager.h",
  1085 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.h"
  1086 + },
  1087 + {
  1088 + 'type': 'file',
  1089 + 'name': "QMUIEmotionView.h",
  1090 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.h"
  1091 + },
  1092 + {
  1093 + 'type': 'file',
  1094 + 'name': "QMUIEmptyView.h",
  1095 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.h"
  1096 + },
  1097 + {
  1098 + 'type': 'file',
  1099 + 'name': "QMUIFillButton.h",
  1100 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h"
  1101 + },
  1102 + {
  1103 + 'type': 'file',
  1104 + 'name': "QMUIFloatLayoutView.h",
  1105 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.h"
  1106 + },
  1107 + {
  1108 + 'type': 'file',
  1109 + 'name': "QMUIGhostButton.h",
  1110 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h"
  1111 + },
  1112 + {
  1113 + 'type': 'file',
  1114 + 'name': "QMUIGridView.h",
  1115 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.h"
  1116 + },
  1117 + {
  1118 + 'type': 'file',
  1119 + 'name': "QMUIHelper.h",
  1120 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.h"
  1121 + },
  1122 + {
  1123 + 'type': 'file',
  1124 + 'name': "QMUIImagePickerCollectionViewCell.h",
  1125 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h"
  1126 + },
  1127 + {
  1128 + 'type': 'file',
  1129 + 'name': "QMUIImagePickerHelper.h",
  1130 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h"
  1131 + },
  1132 + {
  1133 + 'type': 'file',
  1134 + 'name': "QMUIImagePickerPreviewViewController.h",
  1135 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h"
  1136 + },
  1137 + {
  1138 + 'type': 'file',
  1139 + 'name': "QMUIImagePickerViewController.h",
  1140 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h"
  1141 + },
  1142 + {
  1143 + 'type': 'file',
  1144 + 'name': "QMUIImagePreviewView.h",
  1145 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h"
  1146 + },
  1147 + {
  1148 + 'type': 'file',
  1149 + 'name': "QMUIImagePreviewViewController.h",
  1150 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.h"
  1151 + },
  1152 + {
  1153 + 'type': 'file',
  1154 + 'name': "QMUIImagePreviewViewTransitionAnimator.h",
  1155 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.h"
  1156 + },
  1157 + {
  1158 + 'type': 'file',
  1159 + 'name': "QMUIKeyboardManager.h",
  1160 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.h"
  1161 + },
  1162 + {
  1163 + 'type': 'file',
  1164 + 'name': "QMUIKit-Swift.h",
  1165 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/QMUIKit/QMUIKit.framework/Headers/QMUIKit-Swift.h"
  1166 + },
  1167 + {
  1168 + 'type': 'file',
  1169 + 'name': "QMUIKit-umbrella.h",
  1170 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/QMUIKit/QMUIKit-umbrella.h"
  1171 + },
  1172 + {
  1173 + 'type': 'file',
  1174 + 'name': "QMUIKit.h",
  1175 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIKit.h"
  1176 + },
  1177 + {
  1178 + 'type': 'file',
  1179 + 'name': "QMUILab.h",
  1180 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUILab.h"
  1181 + },
  1182 + {
  1183 + 'type': 'file',
  1184 + 'name': "QMUILabel.h",
  1185 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.h"
  1186 + },
  1187 + {
  1188 + 'type': 'file',
  1189 + 'name': "QMUILinkButton.h",
  1190 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h"
  1191 + },
  1192 + {
  1193 + 'type': 'file',
  1194 + 'name': "QMUILog+QMUIConsole.h",
  1195 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.h"
  1196 + },
  1197 + {
  1198 + 'type': 'file',
  1199 + 'name': "QMUILog.h",
  1200 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILog.h"
  1201 + },
  1202 + {
  1203 + 'type': 'file',
  1204 + 'name': "QMUILogItem.h",
  1205 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.h"
  1206 + },
  1207 + {
  1208 + 'type': 'file',
  1209 + 'name': "QMUILogManagerViewController.h",
  1210 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.h"
  1211 + },
  1212 + {
  1213 + 'type': 'file',
  1214 + 'name': "QMUILogNameManager.h",
  1215 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.h"
  1216 + },
  1217 + {
  1218 + 'type': 'file',
  1219 + 'name': "QMUILogger+QMUIConfigurationTemplate.h",
  1220 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h"
  1221 + },
  1222 + {
  1223 + 'type': 'file',
  1224 + 'name': "QMUILogger.h",
  1225 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.h"
  1226 + },
  1227 + {
  1228 + 'type': 'file',
  1229 + 'name': "QMUIMarqueeLabel.h",
  1230 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.h"
  1231 + },
  1232 + {
  1233 + 'type': 'file',
  1234 + 'name': "QMUIModalPresentationViewController.h",
  1235 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h"
  1236 + },
  1237 + {
  1238 + 'type': 'file',
  1239 + 'name': "QMUIMoreOperationController.h",
  1240 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.h"
  1241 + },
  1242 + {
  1243 + 'type': 'file',
  1244 + 'name': "QMUIMultipleDelegates.h",
  1245 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h"
  1246 + },
  1247 + {
  1248 + 'type': 'file',
  1249 + 'name': "QMUINavigationBarScrollingAnimator.h",
  1250 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h"
  1251 + },
  1252 + {
  1253 + 'type': 'file',
  1254 + 'name': "QMUINavigationBarScrollingSnapAnimator.h",
  1255 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h"
  1256 + },
  1257 + {
  1258 + 'type': 'file',
  1259 + 'name': "QMUINavigationButton.h",
  1260 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.h"
  1261 + },
  1262 + {
  1263 + 'type': 'file',
  1264 + 'name': "QMUINavigationController.h",
  1265 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.h"
  1266 + },
  1267 + {
  1268 + 'type': 'file',
  1269 + 'name': "QMUINavigationTitleView.h",
  1270 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.h"
  1271 + },
  1272 + {
  1273 + 'type': 'file',
  1274 + 'name': "QMUIOrderedDictionary.h",
  1275 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.h"
  1276 + },
  1277 + {
  1278 + 'type': 'file',
  1279 + 'name': "QMUIPieProgressView.h",
  1280 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.h"
  1281 + },
  1282 + {
  1283 + 'type': 'file',
  1284 + 'name': "QMUIPopupContainerView.h",
  1285 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.h"
  1286 + },
  1287 + {
  1288 + 'type': 'file',
  1289 + 'name': "QMUIPopupMenuBaseItem.h",
  1290 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h"
  1291 + },
  1292 + {
  1293 + 'type': 'file',
  1294 + 'name': "QMUIPopupMenuButtonItem.h",
  1295 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.h"
  1296 + },
  1297 + {
  1298 + 'type': 'file',
  1299 + 'name': "QMUIPopupMenuItemProtocol.h",
  1300 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuItemProtocol.h"
  1301 + },
  1302 + {
  1303 + 'type': 'file',
  1304 + 'name': "QMUIPopupMenuView.h",
  1305 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h"
  1306 + },
  1307 + {
  1308 + 'type': 'file',
  1309 + 'name': "QMUIRuntime.h",
  1310 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.h"
  1311 + },
  1312 + {
  1313 + 'type': 'file',
  1314 + 'name': "QMUIScrollAnimator.h",
  1315 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.h"
  1316 + },
  1317 + {
  1318 + 'type': 'file',
  1319 + 'name': "QMUISearchBar.h",
  1320 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.h"
  1321 + },
  1322 + {
  1323 + 'type': 'file',
  1324 + 'name': "QMUISearchController.h",
  1325 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.h"
  1326 + },
  1327 + {
  1328 + 'type': 'file',
  1329 + 'name': "QMUISegmentedControl.h",
  1330 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.h"
  1331 + },
  1332 + {
  1333 + 'type': 'file',
  1334 + 'name': "QMUISlider.h",
  1335 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.h"
  1336 + },
  1337 + {
  1338 + 'type': 'file',
  1339 + 'name': "QMUIStaticTableViewCellData.h",
  1340 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h"
  1341 + },
  1342 + {
  1343 + 'type': 'file',
  1344 + 'name': "QMUIStaticTableViewCellDataSource.h",
  1345 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.h"
  1346 + },
  1347 + {
  1348 + 'type': 'file',
  1349 + 'name': "QMUITabBarViewController.h",
  1350 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.h"
  1351 + },
  1352 + {
  1353 + 'type': 'file',
  1354 + 'name': "QMUITableView.h",
  1355 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.h"
  1356 + },
  1357 + {
  1358 + 'type': 'file',
  1359 + 'name': "QMUITableViewCell.h",
  1360 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.h"
  1361 + },
  1362 + {
  1363 + 'type': 'file',
  1364 + 'name': "QMUITableViewHeaderFooterView.h",
  1365 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h"
  1366 + },
  1367 + {
  1368 + 'type': 'file',
  1369 + 'name': "QMUITableViewProtocols.h",
  1370 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewProtocols.h"
  1371 + },
  1372 + {
  1373 + 'type': 'file',
  1374 + 'name': "QMUITestView.h",
  1375 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.h"
  1376 + },
  1377 + {
  1378 + 'type': 'file',
  1379 + 'name': "QMUITextField.h",
  1380 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.h"
  1381 + },
  1382 + {
  1383 + 'type': 'file',
  1384 + 'name': "QMUITextView.h",
  1385 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.h"
  1386 + },
  1387 + {
  1388 + 'type': 'file',
  1389 + 'name': "QMUITips.h",
  1390 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.h"
  1391 + },
  1392 + {
  1393 + 'type': 'file',
  1394 + 'name': "QMUIToastAnimator.h",
  1395 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h"
  1396 + },
  1397 + {
  1398 + 'type': 'file',
  1399 + 'name': "QMUIToastBackgroundView.h",
  1400 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h"
  1401 + },
  1402 + {
  1403 + 'type': 'file',
  1404 + 'name': "QMUIToastContentView.h",
  1405 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h"
  1406 + },
  1407 + {
  1408 + 'type': 'file',
  1409 + 'name': "QMUIToastView.h",
  1410 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.h"
  1411 + },
  1412 + {
  1413 + 'type': 'file',
  1414 + 'name': "QMUIToolbarButton.h",
  1415 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.h"
  1416 + },
  1417 + {
  1418 + 'type': 'file',
  1419 + 'name': "QMUIVisualEffectView.h",
  1420 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.h"
  1421 + },
  1422 + {
  1423 + 'type': 'file',
  1424 + 'name': "QMUIWeakObjectContainer.h",
  1425 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h"
  1426 + },
  1427 + {
  1428 + 'type': 'file',
  1429 + 'name': "QMUIZoomImageView.h",
  1430 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.h"
  1431 + },
  1432 + {
  1433 + 'type': 'file',
  1434 + 'name': "UIActivityIndicatorView+QMUI.h",
  1435 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h"
  1436 + },
  1437 + {
  1438 + 'type': 'file',
  1439 + 'name': "UIBarItem+QMUI.h",
  1440 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.h"
  1441 + },
  1442 + {
  1443 + 'type': 'file',
  1444 + 'name': "UIBarItem+QMUIBadge.h",
  1445 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.h"
  1446 + },
  1447 + {
  1448 + 'type': 'file',
  1449 + 'name': "UIBezierPath+QMUI.h",
  1450 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h"
  1451 + },
  1452 + {
  1453 + 'type': 'file',
  1454 + 'name': "UIButton+QMUI.h",
  1455 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.h"
  1456 + },
  1457 + {
  1458 + 'type': 'file',
  1459 + 'name': "UICollectionView+QMUI.h",
  1460 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.h"
  1461 + },
  1462 + {
  1463 + 'type': 'file',
  1464 + 'name': "UICollectionView+QMUICellSizeKeyCache.h",
  1465 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.h"
  1466 + },
  1467 + {
  1468 + 'type': 'file',
  1469 + 'name': "UIColor+QMUI.h",
  1470 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.h"
  1471 + },
  1472 + {
  1473 + 'type': 'file',
  1474 + 'name': "UIControl+QMUI.h",
  1475 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.h"
  1476 + },
  1477 + {
  1478 + 'type': 'file',
  1479 + 'name': "UIFont+QMUI.h",
  1480 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.h"
  1481 + },
  1482 + {
  1483 + 'type': 'file',
  1484 + 'name': "UIGestureRecognizer+QMUI.h",
  1485 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h"
  1486 + },
  1487 + {
  1488 + 'type': 'file',
  1489 + 'name': "UIImage+QMUI.h",
  1490 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.h"
  1491 + },
  1492 + {
  1493 + 'type': 'file',
  1494 + 'name': "UIImageView+QMUI.h",
  1495 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.h"
  1496 + },
  1497 + {
  1498 + 'type': 'file',
  1499 + 'name': "UIInterface+QMUI.h",
  1500 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.h"
  1501 + },
  1502 + {
  1503 + 'type': 'file',
  1504 + 'name': "UILabel+QMUI.h",
  1505 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.h"
  1506 + },
  1507 + {
  1508 + 'type': 'file',
  1509 + 'name': "UINavigationBar+QMUI.h",
  1510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h"
  1511 + },
  1512 + {
  1513 + 'type': 'file',
  1514 + 'name': "UINavigationBar+Transition.h",
  1515 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.h"
  1516 + },
  1517 + {
  1518 + 'type': 'file',
  1519 + 'name': "UINavigationController+NavigationBarTransition.h",
  1520 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.h"
  1521 + },
  1522 + {
  1523 + 'type': 'file',
  1524 + 'name': "UINavigationController+QMUI.h",
  1525 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.h"
  1526 + },
  1527 + {
  1528 + 'type': 'file',
  1529 + 'name': "UIScrollView+QMUI.h",
  1530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.h"
  1531 + },
  1532 + {
  1533 + 'type': 'file',
  1534 + 'name': "UISearchBar+QMUI.h",
  1535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.h"
  1536 + },
  1537 + {
  1538 + 'type': 'file',
  1539 + 'name': "UITabBar+QMUI.h",
  1540 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.h"
  1541 + },
  1542 + {
  1543 + 'type': 'file',
  1544 + 'name': "UITabBarItem+QMUI.h",
  1545 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h"
  1546 + },
  1547 + {
  1548 + 'type': 'file',
  1549 + 'name': "UITableView+QMUI.h",
  1550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.h"
  1551 + },
  1552 + {
  1553 + 'type': 'file',
  1554 + 'name': "UITableView+QMUICellHeightKeyCache.h",
  1555 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.h"
  1556 + },
  1557 + {
  1558 + 'type': 'file',
  1559 + 'name': "UITableView+QMUIStaticCell.h",
  1560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.h"
  1561 + },
  1562 + {
  1563 + 'type': 'file',
  1564 + 'name': "UITableViewCell+QMUI.h",
  1565 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h"
  1566 + },
  1567 + {
  1568 + 'type': 'file',
  1569 + 'name': "UITextField+QMUI.h",
  1570 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.h"
  1571 + },
  1572 + {
  1573 + 'type': 'file',
  1574 + 'name': "UITextView+QMUI.h",
  1575 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.h"
  1576 + },
  1577 + {
  1578 + 'type': 'file',
  1579 + 'name': "UIView+QMUI.h",
  1580 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.h"
  1581 + },
  1582 + {
  1583 + 'type': 'file',
  1584 + 'name': "UIViewController+QMUI.h",
  1585 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.h"
  1586 + },
  1587 + {
  1588 + 'type': 'file',
  1589 + 'name': "UIWindow+QMUI.h",
  1590 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.h"
  1591 + }
  1592 + ]
  1593 + },
  1594 + {
  1595 + 'type': 'directory',
  1596 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/QMUIKit/QMUIKit.framework/Modules",
  1597 + 'contents': [
  1598 + {
  1599 + 'type': 'file',
  1600 + 'name': "module.modulemap",
  1601 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/QMUIKit.build/module.modulemap"
  1602 + }
  1603 + ]
  1604 + },
  1605 + {
  1606 + 'type': 'directory',
  1607 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers",
  1608 + 'contents': [
  1609 + {
  1610 + 'type': 'file',
  1611 + 'name': "NSButton+WebCache.h",
  1612 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h"
  1613 + },
  1614 + {
  1615 + 'type': 'file',
  1616 + 'name': "NSData+ImageContentType.h",
  1617 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h"
  1618 + },
  1619 + {
  1620 + 'type': 'file',
  1621 + 'name': "NSImage+WebCache.h",
  1622 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h"
  1623 + },
  1624 + {
  1625 + 'type': 'file',
  1626 + 'name': "SDAnimatedImageRep.h",
  1627 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h"
  1628 + },
  1629 + {
  1630 + 'type': 'file',
  1631 + 'name': "SDImageCache.h",
  1632 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDImageCache.h"
  1633 + },
  1634 + {
  1635 + 'type': 'file',
  1636 + 'name': "SDImageCacheConfig.h",
  1637 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h"
  1638 + },
  1639 + {
  1640 + 'type': 'file',
  1641 + 'name': "SDWebImage-Swift.h",
  1642 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers/SDWebImage-Swift.h"
  1643 + },
  1644 + {
  1645 + 'type': 'file',
  1646 + 'name': "SDWebImage-umbrella.h",
  1647 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h"
  1648 + },
  1649 + {
  1650 + 'type': 'file',
  1651 + 'name': "SDWebImageCoder.h",
  1652 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h"
  1653 + },
  1654 + {
  1655 + 'type': 'file',
  1656 + 'name': "SDWebImageCoderHelper.h",
  1657 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h"
  1658 + },
  1659 + {
  1660 + 'type': 'file',
  1661 + 'name': "SDWebImageCodersManager.h",
  1662 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h"
  1663 + },
  1664 + {
  1665 + 'type': 'file',
  1666 + 'name': "SDWebImageCompat.h",
  1667 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h"
  1668 + },
  1669 + {
  1670 + 'type': 'file',
  1671 + 'name': "SDWebImageDownloader.h",
  1672 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h"
  1673 + },
  1674 + {
  1675 + 'type': 'file',
  1676 + 'name': "SDWebImageDownloaderOperation.h",
  1677 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h"
  1678 + },
  1679 + {
  1680 + 'type': 'file',
  1681 + 'name': "SDWebImageFrame.h",
  1682 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h"
  1683 + },
  1684 + {
  1685 + 'type': 'file',
  1686 + 'name': "SDWebImageGIFCoder.h",
  1687 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h"
  1688 + },
  1689 + {
  1690 + 'type': 'file',
  1691 + 'name': "SDWebImageImageIOCoder.h",
  1692 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h"
  1693 + },
  1694 + {
  1695 + 'type': 'file',
  1696 + 'name': "SDWebImageManager.h",
  1697 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageManager.h"
  1698 + },
  1699 + {
  1700 + 'type': 'file',
  1701 + 'name': "SDWebImageOperation.h",
  1702 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h"
  1703 + },
  1704 + {
  1705 + 'type': 'file',
  1706 + 'name': "SDWebImagePrefetcher.h",
  1707 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h"
  1708 + },
  1709 + {
  1710 + 'type': 'file',
  1711 + 'name': "SDWebImageTransition.h",
  1712 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h"
  1713 + },
  1714 + {
  1715 + 'type': 'file',
  1716 + 'name': "UIButton+WebCache.h",
  1717 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h"
  1718 + },
  1719 + {
  1720 + 'type': 'file',
  1721 + 'name': "UIImage+ForceDecode.h",
  1722 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h"
  1723 + },
  1724 + {
  1725 + 'type': 'file',
  1726 + 'name': "UIImage+GIF.h",
  1727 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImage+GIF.h"
  1728 + },
  1729 + {
  1730 + 'type': 'file',
  1731 + 'name': "UIImage+MultiFormat.h",
  1732 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h"
  1733 + },
  1734 + {
  1735 + 'type': 'file',
  1736 + 'name': "UIImageView+HighlightedWebCache.h",
  1737 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h"
  1738 + },
  1739 + {
  1740 + 'type': 'file',
  1741 + 'name': "UIImageView+WebCache.h",
  1742 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h"
  1743 + },
  1744 + {
  1745 + 'type': 'file',
  1746 + 'name': "UIView+WebCache.h",
  1747 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIView+WebCache.h"
  1748 + },
  1749 + {
  1750 + 'type': 'file',
  1751 + 'name': "UIView+WebCacheOperation.h",
  1752 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h"
  1753 + }
  1754 + ]
  1755 + },
  1756 + {
  1757 + 'type': 'directory',
  1758 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Modules",
  1759 + 'contents': [
  1760 + {
  1761 + 'type': 'file',
  1762 + 'name': "module.modulemap",
  1763 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/SDWebImage.build/module.modulemap"
  1764 + }
  1765 + ]
  1766 + }
  1767 + ]
  1768 +}
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap 0 → 100644
  1 +framework module CNLiveCoreMediator {
  2 + umbrella header "CNLiveCoreMediator-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease-CNLiveDisease.build/CNLiveDisease-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease-CNLiveDisease.build/CNLiveDisease-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease-CNLiveDisease.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease.build/CNLiveDisease-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease.build/CNLiveDisease-own-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease.build/CNLiveDisease-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/CNLiveImagePickerController.build/CNLiveImagePickerController-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveImagePickerController.build/CNLiveImagePickerController-project-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/CNLiveImagePickerController.build/all-product-headers.yaml
... ... @@ -460,6 +460,38 @@
460 460 },
461 461 {
462 462 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
463 495 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
464 496 'contents': [
465 497 {
... ... @@ -474,6 +506,11 @@
474 506 },
475 507 {
476 508 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
477 514 'name': "CNLiveDisease-Swift.h",
478 515 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
479 516 },
... ... @@ -489,6 +526,16 @@
489 526 },
490 527 {
491 528 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
492 539 'name': "CNLiveDiseaseSegment.h",
493 540 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
494 541 },
... ... @@ -499,8 +546,18 @@
499 546 },
500 547 {
501 548 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
502 554 'name': "CNLiveSelectedViewController.h",
503 555 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
504 561 }
505 562 ]
506 563 },
... ... @@ -639,6 +696,43 @@
639 696 },
640 697 {
641 698 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
642 736 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
643 737 'contents': [
644 738 {
... ...
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/DerivedSources/FLAnimatedImage_vers.c 0 → 100644
  1 + extern const unsigned char FLAnimatedImageVersionString[];
  2 + extern const double FLAnimatedImageVersionNumber;
  3 +
  4 + const unsigned char FLAnimatedImageVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:FLAnimatedImage PROJECT:Pods-1" "\n";
  5 + const double FLAnimatedImageVersionNumber __attribute__ ((used)) = (double)1.;
... ...
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/FLAnimatedImage-all-non-framework-target-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/FLAnimatedImage-all-target-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/FLAnimatedImage-generated-files.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/FLAnimatedImage-own-target-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/FLAnimatedImage-project-headers.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/FLAnimatedImage.hmap 0 → 100644
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/all-product-headers.yaml 0 → 100644
  1 +{
  2 + 'version': 0,
  3 + 'case-sensitive': 'false',
  4 + 'roots': [
  5 + {
  6 + 'type': 'directory',
  7 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveAVCamera/CNLiveAVCamera.framework/Headers",
  8 + 'contents': [
  9 + {
  10 + 'type': 'file',
  11 + 'name': "CNLiveAVCamera-Swift.h",
  12 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveAVCamera/CNLiveAVCamera.framework/Headers/CNLiveAVCamera-Swift.h"
  13 + },
  14 + {
  15 + 'type': 'file',
  16 + 'name': "CNLiveAVCamera-umbrella.h",
  17 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveAVCamera/CNLiveAVCamera-umbrella.h"
  18 + },
  19 + {
  20 + 'type': 'file',
  21 + 'name': "NSBundle+CNLiveXFCamera.h",
  22 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/NSBundle+CNLiveXFCamera.h"
  23 + },
  24 + {
  25 + 'type': 'file',
  26 + 'name': "XFCameraButton.h",
  27 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/XFCameraButton.h"
  28 + },
  29 + {
  30 + 'type': 'file',
  31 + 'name': "XFCameraController.h",
  32 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/XFCameraController.h"
  33 + },
  34 + {
  35 + 'type': 'file',
  36 + 'name': "XFPhotoLibraryManager.h",
  37 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveAVCamera/CNLiveAVCamera/Classes/XFAVCamera/XFPhotoLibraryManager.h"
  38 + }
  39 + ]
  40 + },
  41 + {
  42 + 'type': 'directory',
  43 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveAVCamera/CNLiveAVCamera.framework/Modules",
  44 + 'contents': [
  45 + {
  46 + 'type': 'file',
  47 + 'name': "module.modulemap",
  48 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveAVCamera.build/module.modulemap"
  49 + }
  50 + ]
  51 + },
  52 + {
  53 + 'type': 'directory',
  54 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveBaseKit/CNLiveBaseKit.framework/Headers",
  55 + 'contents': [
  56 + {
  57 + 'type': 'file',
  58 + 'name': "BaseModel.h",
  59 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.h"
  60 + },
  61 + {
  62 + 'type': 'file',
  63 + 'name': "CNLiveBaseKit-Swift.h",
  64 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-Swift.h"
  65 + },
  66 + {
  67 + 'type': 'file',
  68 + 'name': "CNLiveBaseKit-umbrella.h",
  69 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-umbrella.h"
  70 + },
  71 + {
  72 + 'type': 'file',
  73 + 'name': "CNLiveBaseKit.h",
  74 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/CNLiveBaseKit.h"
  75 + },
  76 + {
  77 + 'type': 'file',
  78 + 'name': "CNLiveDefinesHeader.h",
  79 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/CNLiveDefinesHeader.h"
  80 + },
  81 + {
  82 + 'type': 'file',
  83 + 'name': "CNSetUserDefaultTool.h",
  84 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNSetUserDefaultTool.h"
  85 + },
  86 + {
  87 + 'type': 'file',
  88 + 'name': "ColorHeaders.h",
  89 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorHeaders.h"
  90 + },
  91 + {
  92 + 'type': 'file',
  93 + 'name': "ColorMacro.h",
  94 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorMacro.h"
  95 + },
  96 + {
  97 + 'type': 'file',
  98 + 'name': "GTMBase64.h",
  99 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.h"
  100 + },
  101 + {
  102 + 'type': 'file',
  103 + 'name': "GTMDefines.h",
  104 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMDefines.h"
  105 + },
  106 + {
  107 + 'type': 'file',
  108 + 'name': "IOSDeviceConfig.h",
  109 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.h"
  110 + },
  111 + {
  112 + 'type': 'file',
  113 + 'name': "IOSDeviceMacro.h",
  114 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceMacro.h"
  115 + },
  116 + {
  117 + 'type': 'file',
  118 + 'name': "JSONKit.h",
  119 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.h"
  120 + },
  121 + {
  122 + 'type': 'file',
  123 + 'name': "NSMutableDictionary+Json.h",
  124 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.h"
  125 + },
  126 + {
  127 + 'type': 'file',
  128 + 'name': "NSObject+Json.h",
  129 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.h"
  130 + },
  131 + {
  132 + 'type': 'file',
  133 + 'name': "NSString+AES.h",
  134 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.h"
  135 + },
  136 + {
  137 + 'type': 'file',
  138 + 'name': "NSString+CNLiveExtension.h",
  139 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.h"
  140 + },
  141 + {
  142 + 'type': 'file',
  143 + 'name': "NSString+Common.h",
  144 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+Common.h"
  145 + },
  146 + {
  147 + 'type': 'file',
  148 + 'name': "PathHeaders.h",
  149 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathHeaders.h"
  150 + },
  151 + {
  152 + 'type': 'file',
  153 + 'name': "PathUtility.h",
  154 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.h"
  155 + },
  156 + {
  157 + 'type': 'file',
  158 + 'name': "UIButton+CNCreateButton.h",
  159 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.h"
  160 + },
  161 + {
  162 + 'type': 'file',
  163 + 'name': "UIColor+MLPFlatColors.h",
  164 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.h"
  165 + },
  166 + {
  167 + 'type': 'file',
  168 + 'name': "UIFont+CNLiveExtension.h",
  169 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.h"
  170 + },
  171 + {
  172 + 'type': 'file',
  173 + 'name': "UIFont+TLChat.h",
  174 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.h"
  175 + },
  176 + {
  177 + 'type': 'file',
  178 + 'name': "UIImage+CNLiveBaseExtension.h",
  179 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.h"
  180 + },
  181 + {
  182 + 'type': 'file',
  183 + 'name': "UIView+CNAlertView.h",
  184 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.h"
  185 + },
  186 + {
  187 + 'type': 'file',
  188 + 'name': "UIView+Extension.h",
  189 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.h"
  190 + }
  191 + ]
  192 + },
  193 + {
  194 + 'type': 'directory',
  195 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveBaseKit/CNLiveBaseKit.framework/Modules",
  196 + 'contents': [
  197 + {
  198 + 'type': 'file',
  199 + 'name': "module.modulemap",
  200 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveBaseKit.build/module.modulemap"
  201 + }
  202 + ]
  203 + },
  204 + {
  205 + 'type': 'directory',
  206 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCommonCategory/CNLiveCommonCategory.framework/Headers",
  207 + 'contents': [
  208 + {
  209 + 'type': 'file',
  210 + 'name': "CNLiveCommonCategory-Swift.h",
  211 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCommonCategory/CNLiveCommonCategory.framework/Headers/CNLiveCommonCategory-Swift.h"
  212 + },
  213 + {
  214 + 'type': 'file',
  215 + 'name': "CNLiveCommonCategory-umbrella.h",
  216 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCommonCategory/CNLiveCommonCategory-umbrella.h"
  217 + },
  218 + {
  219 + 'type': 'file',
  220 + 'name': "CNLiveCommonCategory.h",
  221 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/CNLiveCommonCategory.h"
  222 + },
  223 + {
  224 + 'type': 'file',
  225 + 'name': "NSArray+Safety.h",
  226 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSArrayExtension/NSArray+Safety.h"
  227 + },
  228 + {
  229 + 'type': 'file',
  230 + 'name': "NSData+Common.h",
  231 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSDataExtension/NSData+Common.h"
  232 + },
  233 + {
  234 + 'type': 'file',
  235 + 'name': "NSDate+Common.h",
  236 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSDateExtension/NSDate+Common.h"
  237 + },
  238 + {
  239 + 'type': 'file',
  240 + 'name': "NSDictionary+Safety.h",
  241 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSDictionaryExtension/NSDictionary+Safety.h"
  242 + },
  243 + {
  244 + 'type': 'file',
  245 + 'name': "NSObject+CommonBlock.h",
  246 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSObjectExtension/NSObject+CommonBlock.h"
  247 + },
  248 + {
  249 + 'type': 'file',
  250 + 'name': "NSObject+KVOCategory.h",
  251 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSObjectExtension/NSObject+KVOCategory.h"
  252 + },
  253 + {
  254 + 'type': 'file',
  255 + 'name': "NSString+Category.h",
  256 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+Category.h"
  257 + },
  258 + {
  259 + 'type': 'file',
  260 + 'name': "NSString+RegexCheck.h",
  261 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+RegexCheck.h"
  262 + },
  263 + {
  264 + 'type': 'file',
  265 + 'name': "NSString+Size.h",
  266 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+Size.h"
  267 + },
  268 + {
  269 + 'type': 'file',
  270 + 'name': "NSString+UrlEncode.h",
  271 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/NSStringExtension/NSString+UrlEncode.h"
  272 + },
  273 + {
  274 + 'type': 'file',
  275 + 'name': "UIButton+CNCountDownButton.h",
  276 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIButtonExtension/UIButton+CNCountDownButton.h"
  277 + },
  278 + {
  279 + 'type': 'file',
  280 + 'name': "UIButton+createButton.h",
  281 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIButtonExtension/UIButton+createButton.h"
  282 + },
  283 + {
  284 + 'type': 'file',
  285 + 'name': "UIColor+CNLiveExtension.h",
  286 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIColorExtension/UIColor+CNLiveExtension.h"
  287 + },
  288 + {
  289 + 'type': 'file',
  290 + 'name': "UIColor+TLChat.h",
  291 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIColorExtension/UIColor+TLChat.h"
  292 + },
  293 + {
  294 + 'type': 'file',
  295 + 'name': "UIControl+CNEventInterval.h",
  296 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIControlExtension/UIControl+CNEventInterval.h"
  297 + },
  298 + {
  299 + 'type': 'file',
  300 + 'name': "UIDevice+CNDevice.h",
  301 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIDeviceExtension/UIDevice+CNDevice.h"
  302 + },
  303 + {
  304 + 'type': 'file',
  305 + 'name': "UIImage+Alpha.h",
  306 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+Alpha.h"
  307 + },
  308 + {
  309 + 'type': 'file',
  310 + 'name': "UIImage+CNLiveAdd.h",
  311 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+CNLiveAdd.h"
  312 + },
  313 + {
  314 + 'type': 'file',
  315 + 'name': "UIImage+Common.h",
  316 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+Common.h"
  317 + },
  318 + {
  319 + 'type': 'file',
  320 + 'name': "UIImage+ImageEffect.h",
  321 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+ImageEffect.h"
  322 + },
  323 + {
  324 + 'type': 'file',
  325 + 'name': "UIImage+Luban_iOS_Extension_h.h",
  326 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+Luban_iOS_Extension_h.h"
  327 + },
  328 + {
  329 + 'type': 'file',
  330 + 'name': "UIImage+SGImageSize.h",
  331 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+SGImageSize.h"
  332 + },
  333 + {
  334 + 'type': 'file',
  335 + 'name': "UIImage+ScaleImageSize.h",
  336 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+ScaleImageSize.h"
  337 + },
  338 + {
  339 + 'type': 'file',
  340 + 'name': "UIImage+TintColor.h",
  341 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+TintColor.h"
  342 + },
  343 + {
  344 + 'type': 'file',
  345 + 'name': "UIImage+ZXExtension.h",
  346 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+ZXExtension.h"
  347 + },
  348 + {
  349 + 'type': 'file',
  350 + 'name': "UIImage+zipData.h",
  351 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageExtension/UIImage+zipData.h"
  352 + },
  353 + {
  354 + 'type': 'file',
  355 + 'name': "UIImageView+InitMethod.h",
  356 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageViewExtension/UIImageView+InitMethod.h"
  357 + },
  358 + {
  359 + 'type': 'file',
  360 + 'name': "UIImageView+ZXExtension.h",
  361 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIImageViewExtension/UIImageView+ZXExtension.h"
  362 + },
  363 + {
  364 + 'type': 'file',
  365 + 'name': "UILabel+Common.h",
  366 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UILabelExtension/UILabel+Common.h"
  367 + },
  368 + {
  369 + 'type': 'file',
  370 + 'name': "UILabel+InitMethod.h",
  371 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UILabelExtension/UILabel+InitMethod.h"
  372 + },
  373 + {
  374 + 'type': 'file',
  375 + 'name': "UINavigationBar+NavigationBarBackground.h",
  376 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UINavigationBarExtension/UINavigationBar+NavigationBarBackground.h"
  377 + },
  378 + {
  379 + 'type': 'file',
  380 + 'name': "UIScrollView+Extensions.h",
  381 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIScrollviewExtension/UIScrollView+Extensions.h"
  382 + },
  383 + {
  384 + 'type': 'file',
  385 + 'name': "UIScrollView+Pages.h",
  386 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIScrollviewExtension/UIScrollView+Pages.h"
  387 + },
  388 + {
  389 + 'type': 'file',
  390 + 'name': "UITableView+Hit.h",
  391 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UITableViewExtension/UITableView+Hit.h"
  392 + },
  393 + {
  394 + 'type': 'file',
  395 + 'name': "UITextField+ZXExtension.h",
  396 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UITextFieldExtension/UITextField+ZXExtension.h"
  397 + },
  398 + {
  399 + 'type': 'file',
  400 + 'name': "UIView+CNGradienLayer.h",
  401 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+CNGradienLayer.h"
  402 + },
  403 + {
  404 + 'type': 'file',
  405 + 'name': "UIView+CaptureImage.h",
  406 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+CaptureImage.h"
  407 + },
  408 + {
  409 + 'type': 'file',
  410 + 'name': "UIView+CustomAutoLayout.h",
  411 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+CustomAutoLayout.h"
  412 + },
  413 + {
  414 + 'type': 'file',
  415 + 'name': "UIView+Effect.h",
  416 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+Effect.h"
  417 + },
  418 + {
  419 + 'type': 'file',
  420 + 'name': "UIView+Glow.h",
  421 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+Glow.h"
  422 + },
  423 + {
  424 + 'type': 'file',
  425 + 'name': "UIView+Layout.h",
  426 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+Layout.h"
  427 + },
  428 + {
  429 + 'type': 'file',
  430 + 'name': "UIView+ModifyFrame.h",
  431 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+ModifyFrame.h"
  432 + },
  433 + {
  434 + 'type': 'file',
  435 + 'name': "UIView+RelativeCoordinate.h",
  436 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewExtension/UIView+RelativeCoordinate.h"
  437 + },
  438 + {
  439 + 'type': 'file',
  440 + 'name': "UIViewController+ChildViewController.h",
  441 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIViewControllerExtension/UIViewController+ChildViewController.h"
  442 + },
  443 + {
  444 + 'type': 'file',
  445 + 'name': "UIWindow+CNCurrentViewController.h",
  446 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCommonCategory/CNLiveCommonCategory/Classes/ARC/UIWindowExtension/UIWindow+CNCurrentViewController.h"
  447 + }
  448 + ]
  449 + },
  450 + {
  451 + 'type': 'directory',
  452 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCommonCategory/CNLiveCommonCategory.framework/Modules",
  453 + 'contents': [
  454 + {
  455 + 'type': 'file',
  456 + 'name': "module.modulemap",
  457 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCommonCategory.build/module.modulemap"
  458 + }
  459 + ]
  460 + },
  461 + {
  462 + 'type': 'directory',
  463 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers",
  464 + 'contents': [
  465 + {
  466 + 'type': 'file',
  467 + 'name': "CNLiveCoreMediator-Swift.h",
  468 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Headers/CNLiveCoreMediator-Swift.h"
  469 + },
  470 + {
  471 + 'type': 'file',
  472 + 'name': "CNLiveCoreMediator-umbrella.h",
  473 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveCoreMediator/CNLiveCoreMediator-umbrella.h"
  474 + },
  475 + {
  476 + 'type': 'file',
  477 + 'name': "CNLiveCoreMediator.h",
  478 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveCoreMediator/Classes/CNLiveCoreMediator.h"
  479 + }
  480 + ]
  481 + },
  482 + {
  483 + 'type': 'directory',
  484 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveCoreMediator/CNLiveCoreMediator.framework/Modules",
  485 + 'contents': [
  486 + {
  487 + 'type': 'file',
  488 + 'name': "module.modulemap",
  489 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveCoreMediator.build/module.modulemap"
  490 + }
  491 + ]
  492 + },
  493 + {
  494 + 'type': 'directory',
  495 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers",
  496 + 'contents': [
  497 + {
  498 + 'type': 'file',
  499 + 'name': "CNDiseaseType.h",
  500 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNDiseaseType.h"
  501 + },
  502 + {
  503 + 'type': 'file',
  504 + 'name': "CNDiseaseViewCell.h",
  505 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNDiseaseViewCell.h"
  506 + },
  507 + {
  508 + 'type': 'file',
  509 + 'name': "CNLiveCoreMediator+A.h",
  510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/ModuleA/CNLiveCoreMediator+A.h"
  511 + },
  512 + {
  513 + 'type': 'file',
  514 + 'name': "CNLiveDisease-Swift.h",
  515 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Headers/CNLiveDisease-Swift.h"
  516 + },
  517 + {
  518 + 'type': 'file',
  519 + 'name': "CNLiveDisease-umbrella.h",
  520 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveDisease/CNLiveDisease-umbrella.h"
  521 + },
  522 + {
  523 + 'type': 'file',
  524 + 'name': "CNLiveDiseaseController.h",
  525 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseController.h"
  526 + },
  527 + {
  528 + 'type': 'file',
  529 + 'name': "CNLiveDiseaseDescController.h",
  530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseDescController.h"
  531 + },
  532 + {
  533 + 'type': 'file',
  534 + 'name': "CNLiveDiseaseFailedController.h",
  535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveDiseaseFailedController.h"
  536 + },
  537 + {
  538 + 'type': 'file',
  539 + 'name': "CNLiveDiseaseSegment.h",
  540 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveDiseaseSegment.h"
  541 + },
  542 + {
  543 + 'type': 'file',
  544 + 'name': "CNLiveFriutViewController.h",
  545 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveFriutViewController.h"
  546 + },
  547 + {
  548 + 'type': 'file',
  549 + 'name': "CNLiveGetImage.h",
  550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/View/CNLiveGetImage.h"
  551 + },
  552 + {
  553 + 'type': 'file',
  554 + 'name': "CNLiveSelectedViewController.h",
  555 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Controller/CNLiveSelectedViewController.h"
  556 + },
  557 + {
  558 + 'type': 'file',
  559 + 'name': "CNLiveTarget_A.h",
  560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/CNLiveDisease/Classes/Actions/CNLiveTarget_A.h"
  561 + }
  562 + ]
  563 + },
  564 + {
  565 + 'type': 'directory',
  566 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveDisease/CNLiveDisease.framework/Modules",
  567 + 'contents': [
  568 + {
  569 + 'type': 'file',
  570 + 'name': "module.modulemap",
  571 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveDisease.build/module.modulemap"
  572 + }
  573 + ]
  574 + },
  575 + {
  576 + 'type': 'directory',
  577 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveImagePickerController/CNLiveImagePickerController.framework/Headers",
  578 + 'contents': [
  579 + {
  580 + 'type': 'file',
  581 + 'name': "CNEditVideoController.h",
  582 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNEditVideoController.h"
  583 + },
  584 + {
  585 + 'type': 'file',
  586 + 'name': "CNImagePickerCommonDefine.h",
  587 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNImagePickerCommonDefine.h"
  588 + },
  589 + {
  590 + 'type': 'file',
  591 + 'name': "CNImagePickerController.h",
  592 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNImagePickerController.h"
  593 + },
  594 + {
  595 + 'type': 'file',
  596 + 'name': "CNImagePickerManager.h",
  597 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/CNImagePickerManager.h"
  598 + },
  599 + {
  600 + 'type': 'file',
  601 + 'name': "CNLiveImagePickerController-Swift.h",
  602 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveImagePickerController/CNLiveImagePickerController.framework/Headers/CNLiveImagePickerController-Swift.h"
  603 + },
  604 + {
  605 + 'type': 'file',
  606 + 'name': "CNLiveImagePickerController-umbrella.h",
  607 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/CNLiveImagePickerController/CNLiveImagePickerController-umbrella.h"
  608 + },
  609 + {
  610 + 'type': 'file',
  611 + 'name': "NSBundle+TZImagePicker.h",
  612 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/NSBundle+TZImagePicker.h"
  613 + },
  614 + {
  615 + 'type': 'file',
  616 + 'name': "TZAssetCell.h",
  617 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZAssetCell.h"
  618 + },
  619 + {
  620 + 'type': 'file',
  621 + 'name': "TZAssetModel.h",
  622 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZAssetModel.h"
  623 + },
  624 + {
  625 + 'type': 'file',
  626 + 'name': "TZGifPhotoPreviewController.h",
  627 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZGifPhotoPreviewController.h"
  628 + },
  629 + {
  630 + 'type': 'file',
  631 + 'name': "TZImageCropManager.h",
  632 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZImageCropManager.h"
  633 + },
  634 + {
  635 + 'type': 'file',
  636 + 'name': "TZImageManager.h",
  637 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZImageManager.h"
  638 + },
  639 + {
  640 + 'type': 'file',
  641 + 'name': "TZImagePickerController.h",
  642 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZImagePickerController.h"
  643 + },
  644 + {
  645 + 'type': 'file',
  646 + 'name': "TZLocationManager.h",
  647 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZLocationManager.h"
  648 + },
  649 + {
  650 + 'type': 'file',
  651 + 'name': "TZPhotoPickerController.h",
  652 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZPhotoPickerController.h"
  653 + },
  654 + {
  655 + 'type': 'file',
  656 + 'name': "TZPhotoPreviewCell.h",
  657 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZPhotoPreviewCell.h"
  658 + },
  659 + {
  660 + 'type': 'file',
  661 + 'name': "TZPhotoPreviewController.h",
  662 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZPhotoPreviewController.h"
  663 + },
  664 + {
  665 + 'type': 'file',
  666 + 'name': "TZProgressView.h",
  667 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZProgressView.h"
  668 + },
  669 + {
  670 + 'type': 'file',
  671 + 'name': "TZVideoPlayerController.h",
  672 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/TZVideoPlayerController.h"
  673 + },
  674 + {
  675 + 'type': 'file',
  676 + 'name': "UIImage+CNImagePicker.h",
  677 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/UIImage+CNImagePicker.h"
  678 + },
  679 + {
  680 + 'type': 'file',
  681 + 'name': "UIView+Layout.h",
  682 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/CNLiveImagePickerController/CNLiveImagePickerController/UIView+Layout.h"
  683 + }
  684 + ]
  685 + },
  686 + {
  687 + 'type': 'directory',
  688 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/CNLiveImagePickerController/CNLiveImagePickerController.framework/Modules",
  689 + 'contents': [
  690 + {
  691 + 'type': 'file',
  692 + 'name': "module.modulemap",
  693 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/CNLiveImagePickerController.build/module.modulemap"
  694 + }
  695 + ]
  696 + },
  697 + {
  698 + 'type': 'directory',
  699 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers",
  700 + 'contents': [
  701 + {
  702 + 'type': 'file',
  703 + 'name': "FLAnimatedImage-Swift.h",
  704 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Headers/FLAnimatedImage-Swift.h"
  705 + },
  706 + {
  707 + 'type': 'file',
  708 + 'name': "FLAnimatedImage-umbrella.h",
  709 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h"
  710 + },
  711 + {
  712 + 'type': 'file',
  713 + 'name': "FLAnimatedImage.h",
  714 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h"
  715 + },
  716 + {
  717 + 'type': 'file',
  718 + 'name': "FLAnimatedImageView.h",
  719 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h"
  720 + }
  721 + ]
  722 + },
  723 + {
  724 + 'type': 'directory',
  725 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/FLAnimatedImage/FLAnimatedImage.framework/Modules",
  726 + 'contents': [
  727 + {
  728 + 'type': 'file',
  729 + 'name': "module.modulemap",
  730 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap"
  731 + }
  732 + ]
  733 + },
  734 + {
  735 + 'type': 'directory',
  736 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers",
  737 + 'contents': [
  738 + {
  739 + 'type': 'file',
  740 + 'name': "MJExtension-Swift.h",
  741 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Headers/MJExtension-Swift.h"
  742 + },
  743 + {
  744 + 'type': 'file',
  745 + 'name': "MJExtension-umbrella.h",
  746 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/MJExtension/MJExtension-umbrella.h"
  747 + },
  748 + {
  749 + 'type': 'file',
  750 + 'name': "MJExtension.h",
  751 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJExtension.h"
  752 + },
  753 + {
  754 + 'type': 'file',
  755 + 'name': "MJExtensionConst.h",
  756 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJExtensionConst.h"
  757 + },
  758 + {
  759 + 'type': 'file',
  760 + 'name': "MJFoundation.h",
  761 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJFoundation.h"
  762 + },
  763 + {
  764 + 'type': 'file',
  765 + 'name': "MJProperty.h",
  766 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJProperty.h"
  767 + },
  768 + {
  769 + 'type': 'file',
  770 + 'name': "MJPropertyKey.h",
  771 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJPropertyKey.h"
  772 + },
  773 + {
  774 + 'type': 'file',
  775 + 'name': "MJPropertyType.h",
  776 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/MJPropertyType.h"
  777 + },
  778 + {
  779 + 'type': 'file',
  780 + 'name': "NSObject+MJClass.h",
  781 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.h"
  782 + },
  783 + {
  784 + 'type': 'file',
  785 + 'name': "NSObject+MJCoding.h",
  786 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.h"
  787 + },
  788 + {
  789 + 'type': 'file',
  790 + 'name': "NSObject+MJKeyValue.h",
  791 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h"
  792 + },
  793 + {
  794 + 'type': 'file',
  795 + 'name': "NSObject+MJProperty.h",
  796 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.h"
  797 + },
  798 + {
  799 + 'type': 'file',
  800 + 'name': "NSString+MJExtension.h",
  801 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.h"
  802 + }
  803 + ]
  804 + },
  805 + {
  806 + 'type': 'directory',
  807 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/MJExtension/MJExtension.framework/Modules",
  808 + 'contents': [
  809 + {
  810 + 'type': 'file',
  811 + 'name': "module.modulemap",
  812 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/MJExtension.build/module.modulemap"
  813 + }
  814 + ]
  815 + },
  816 + {
  817 + 'type': 'directory',
  818 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/Masonry/Masonry.framework/Headers",
  819 + 'contents': [
  820 + {
  821 + 'type': 'file',
  822 + 'name': "MASCompositeConstraint.h",
  823 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h"
  824 + },
  825 + {
  826 + 'type': 'file',
  827 + 'name': "MASConstraint+Private.h",
  828 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASConstraint+Private.h"
  829 + },
  830 + {
  831 + 'type': 'file',
  832 + 'name': "MASConstraint.h",
  833 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASConstraint.h"
  834 + },
  835 + {
  836 + 'type': 'file',
  837 + 'name': "MASConstraintMaker.h",
  838 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASConstraintMaker.h"
  839 + },
  840 + {
  841 + 'type': 'file',
  842 + 'name': "MASLayoutConstraint.h",
  843 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h"
  844 + },
  845 + {
  846 + 'type': 'file',
  847 + 'name': "MASUtilities.h",
  848 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASUtilities.h"
  849 + },
  850 + {
  851 + 'type': 'file',
  852 + 'name': "MASViewAttribute.h",
  853 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASViewAttribute.h"
  854 + },
  855 + {
  856 + 'type': 'file',
  857 + 'name': "MASViewConstraint.h",
  858 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/MASViewConstraint.h"
  859 + },
  860 + {
  861 + 'type': 'file',
  862 + 'name': "Masonry-Swift.h",
  863 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/Masonry/Masonry.framework/Headers/Masonry-Swift.h"
  864 + },
  865 + {
  866 + 'type': 'file',
  867 + 'name': "Masonry-umbrella.h",
  868 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h"
  869 + },
  870 + {
  871 + 'type': 'file',
  872 + 'name': "Masonry.h",
  873 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/Masonry.h"
  874 + },
  875 + {
  876 + 'type': 'file',
  877 + 'name': "NSArray+MASAdditions.h",
  878 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h"
  879 + },
  880 + {
  881 + 'type': 'file',
  882 + 'name': "NSArray+MASShorthandAdditions.h",
  883 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h"
  884 + },
  885 + {
  886 + 'type': 'file',
  887 + 'name': "NSLayoutConstraint+MASDebugAdditions.h",
  888 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h"
  889 + },
  890 + {
  891 + 'type': 'file',
  892 + 'name': "View+MASAdditions.h",
  893 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/View+MASAdditions.h"
  894 + },
  895 + {
  896 + 'type': 'file',
  897 + 'name': "View+MASShorthandAdditions.h",
  898 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h"
  899 + },
  900 + {
  901 + 'type': 'file',
  902 + 'name': "ViewController+MASAdditions.h",
  903 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h"
  904 + }
  905 + ]
  906 + },
  907 + {
  908 + 'type': 'directory',
  909 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/Masonry/Masonry.framework/Modules",
  910 + 'contents': [
  911 + {
  912 + 'type': 'file',
  913 + 'name': "module.modulemap",
  914 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/Masonry.build/module.modulemap"
  915 + }
  916 + ]
  917 + },
  918 + {
  919 + 'type': 'directory',
  920 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/QMUIKit/QMUIKit.framework/Headers",
  921 + 'contents': [
  922 + {
  923 + 'type': 'file',
  924 + 'name': "CAAnimation+QMUI.h",
  925 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.h"
  926 + },
  927 + {
  928 + 'type': 'file',
  929 + 'name': "CALayer+QMUI.h",
  930 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.h"
  931 + },
  932 + {
  933 + 'type': 'file',
  934 + 'name': "NSArray+QMUI.h",
  935 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.h"
  936 + },
  937 + {
  938 + 'type': 'file',
  939 + 'name': "NSAttributedString+QMUI.h",
  940 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h"
  941 + },
  942 + {
  943 + 'type': 'file',
  944 + 'name': "NSCharacterSet+QMUI.h",
  945 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h"
  946 + },
  947 + {
  948 + 'type': 'file',
  949 + 'name': "NSNumber+QMUI.h",
  950 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.h"
  951 + },
  952 + {
  953 + 'type': 'file',
  954 + 'name': "NSObject+QMUI.h",
  955 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.h"
  956 + },
  957 + {
  958 + 'type': 'file',
  959 + 'name': "NSObject+QMUIMultipleDelegates.h",
  960 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.h"
  961 + },
  962 + {
  963 + 'type': 'file',
  964 + 'name': "NSParagraphStyle+QMUI.h",
  965 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h"
  966 + },
  967 + {
  968 + 'type': 'file',
  969 + 'name': "NSPointerArray+QMUI.h",
  970 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h"
  971 + },
  972 + {
  973 + 'type': 'file',
  974 + 'name': "NSString+QMUI.h",
  975 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.h"
  976 + },
  977 + {
  978 + 'type': 'file',
  979 + 'name': "NSURL+QMUI.h",
  980 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.h"
  981 + },
  982 + {
  983 + 'type': 'file',
  984 + 'name': "QMUIAlbumViewController.h",
  985 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h"
  986 + },
  987 + {
  988 + 'type': 'file',
  989 + 'name': "QMUIAlertController.h",
  990 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.h"
  991 + },
  992 + {
  993 + 'type': 'file',
  994 + 'name': "QMUIAsset.h",
  995 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h"
  996 + },
  997 + {
  998 + 'type': 'file',
  999 + 'name': "QMUIAssetsGroup.h",
  1000 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h"
  1001 + },
  1002 + {
  1003 + 'type': 'file',
  1004 + 'name': "QMUIAssetsManager.h",
  1005 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h"
  1006 + },
  1007 + {
  1008 + 'type': 'file',
  1009 + 'name': "QMUIButton.h",
  1010 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h"
  1011 + },
  1012 + {
  1013 + 'type': 'file',
  1014 + 'name': "QMUICellHeightCache.h",
  1015 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.h"
  1016 + },
  1017 + {
  1018 + 'type': 'file',
  1019 + 'name': "QMUICellHeightKeyCache.h",
  1020 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h"
  1021 + },
  1022 + {
  1023 + 'type': 'file',
  1024 + 'name': "QMUICellSizeKeyCache.h",
  1025 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h"
  1026 + },
  1027 + {
  1028 + 'type': 'file',
  1029 + 'name': "QMUICollectionViewPagingLayout.h",
  1030 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h"
  1031 + },
  1032 + {
  1033 + 'type': 'file',
  1034 + 'name': "QMUICommonDefines.h",
  1035 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICommonDefines.h"
  1036 + },
  1037 + {
  1038 + 'type': 'file',
  1039 + 'name': "QMUICommonTableViewController.h",
  1040 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h"
  1041 + },
  1042 + {
  1043 + 'type': 'file',
  1044 + 'name': "QMUICommonViewController.h",
  1045 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.h"
  1046 + },
  1047 + {
  1048 + 'type': 'file',
  1049 + 'name': "QMUIConfiguration.h",
  1050 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.h"
  1051 + },
  1052 + {
  1053 + 'type': 'file',
  1054 + 'name': "QMUIConfigurationMacros.h",
  1055 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfigurationMacros.h"
  1056 + },
  1057 + {
  1058 + 'type': 'file',
  1059 + 'name': "QMUIConsole.h",
  1060 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.h"
  1061 + },
  1062 + {
  1063 + 'type': 'file',
  1064 + 'name': "QMUIConsoleToolbar.h",
  1065 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.h"
  1066 + },
  1067 + {
  1068 + 'type': 'file',
  1069 + 'name': "QMUIConsoleViewController.h",
  1070 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.h"
  1071 + },
  1072 + {
  1073 + 'type': 'file',
  1074 + 'name': "QMUICore.h",
  1075 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICore.h"
  1076 + },
  1077 + {
  1078 + 'type': 'file',
  1079 + 'name': "QMUIDialogViewController.h",
  1080 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.h"
  1081 + },
  1082 + {
  1083 + 'type': 'file',
  1084 + 'name': "QMUIEmotionInputManager.h",
  1085 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.h"
  1086 + },
  1087 + {
  1088 + 'type': 'file',
  1089 + 'name': "QMUIEmotionView.h",
  1090 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.h"
  1091 + },
  1092 + {
  1093 + 'type': 'file',
  1094 + 'name': "QMUIEmptyView.h",
  1095 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.h"
  1096 + },
  1097 + {
  1098 + 'type': 'file',
  1099 + 'name': "QMUIFillButton.h",
  1100 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h"
  1101 + },
  1102 + {
  1103 + 'type': 'file',
  1104 + 'name': "QMUIFloatLayoutView.h",
  1105 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.h"
  1106 + },
  1107 + {
  1108 + 'type': 'file',
  1109 + 'name': "QMUIGhostButton.h",
  1110 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h"
  1111 + },
  1112 + {
  1113 + 'type': 'file',
  1114 + 'name': "QMUIGridView.h",
  1115 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.h"
  1116 + },
  1117 + {
  1118 + 'type': 'file',
  1119 + 'name': "QMUIHelper.h",
  1120 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.h"
  1121 + },
  1122 + {
  1123 + 'type': 'file',
  1124 + 'name': "QMUIImagePickerCollectionViewCell.h",
  1125 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h"
  1126 + },
  1127 + {
  1128 + 'type': 'file',
  1129 + 'name': "QMUIImagePickerHelper.h",
  1130 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h"
  1131 + },
  1132 + {
  1133 + 'type': 'file',
  1134 + 'name': "QMUIImagePickerPreviewViewController.h",
  1135 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h"
  1136 + },
  1137 + {
  1138 + 'type': 'file',
  1139 + 'name': "QMUIImagePickerViewController.h",
  1140 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h"
  1141 + },
  1142 + {
  1143 + 'type': 'file',
  1144 + 'name': "QMUIImagePreviewView.h",
  1145 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h"
  1146 + },
  1147 + {
  1148 + 'type': 'file',
  1149 + 'name': "QMUIImagePreviewViewController.h",
  1150 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.h"
  1151 + },
  1152 + {
  1153 + 'type': 'file',
  1154 + 'name': "QMUIImagePreviewViewTransitionAnimator.h",
  1155 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.h"
  1156 + },
  1157 + {
  1158 + 'type': 'file',
  1159 + 'name': "QMUIKeyboardManager.h",
  1160 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.h"
  1161 + },
  1162 + {
  1163 + 'type': 'file',
  1164 + 'name': "QMUIKit-Swift.h",
  1165 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/QMUIKit/QMUIKit.framework/Headers/QMUIKit-Swift.h"
  1166 + },
  1167 + {
  1168 + 'type': 'file',
  1169 + 'name': "QMUIKit-umbrella.h",
  1170 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/QMUIKit/QMUIKit-umbrella.h"
  1171 + },
  1172 + {
  1173 + 'type': 'file',
  1174 + 'name': "QMUIKit.h",
  1175 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIKit.h"
  1176 + },
  1177 + {
  1178 + 'type': 'file',
  1179 + 'name': "QMUILab.h",
  1180 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUILab.h"
  1181 + },
  1182 + {
  1183 + 'type': 'file',
  1184 + 'name': "QMUILabel.h",
  1185 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.h"
  1186 + },
  1187 + {
  1188 + 'type': 'file',
  1189 + 'name': "QMUILinkButton.h",
  1190 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h"
  1191 + },
  1192 + {
  1193 + 'type': 'file',
  1194 + 'name': "QMUILog+QMUIConsole.h",
  1195 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.h"
  1196 + },
  1197 + {
  1198 + 'type': 'file',
  1199 + 'name': "QMUILog.h",
  1200 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILog.h"
  1201 + },
  1202 + {
  1203 + 'type': 'file',
  1204 + 'name': "QMUILogItem.h",
  1205 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.h"
  1206 + },
  1207 + {
  1208 + 'type': 'file',
  1209 + 'name': "QMUILogManagerViewController.h",
  1210 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.h"
  1211 + },
  1212 + {
  1213 + 'type': 'file',
  1214 + 'name': "QMUILogNameManager.h",
  1215 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.h"
  1216 + },
  1217 + {
  1218 + 'type': 'file',
  1219 + 'name': "QMUILogger+QMUIConfigurationTemplate.h",
  1220 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h"
  1221 + },
  1222 + {
  1223 + 'type': 'file',
  1224 + 'name': "QMUILogger.h",
  1225 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.h"
  1226 + },
  1227 + {
  1228 + 'type': 'file',
  1229 + 'name': "QMUIMarqueeLabel.h",
  1230 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.h"
  1231 + },
  1232 + {
  1233 + 'type': 'file',
  1234 + 'name': "QMUIModalPresentationViewController.h",
  1235 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h"
  1236 + },
  1237 + {
  1238 + 'type': 'file',
  1239 + 'name': "QMUIMoreOperationController.h",
  1240 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.h"
  1241 + },
  1242 + {
  1243 + 'type': 'file',
  1244 + 'name': "QMUIMultipleDelegates.h",
  1245 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h"
  1246 + },
  1247 + {
  1248 + 'type': 'file',
  1249 + 'name': "QMUINavigationBarScrollingAnimator.h",
  1250 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h"
  1251 + },
  1252 + {
  1253 + 'type': 'file',
  1254 + 'name': "QMUINavigationBarScrollingSnapAnimator.h",
  1255 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h"
  1256 + },
  1257 + {
  1258 + 'type': 'file',
  1259 + 'name': "QMUINavigationButton.h",
  1260 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.h"
  1261 + },
  1262 + {
  1263 + 'type': 'file',
  1264 + 'name': "QMUINavigationController.h",
  1265 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.h"
  1266 + },
  1267 + {
  1268 + 'type': 'file',
  1269 + 'name': "QMUINavigationTitleView.h",
  1270 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.h"
  1271 + },
  1272 + {
  1273 + 'type': 'file',
  1274 + 'name': "QMUIOrderedDictionary.h",
  1275 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.h"
  1276 + },
  1277 + {
  1278 + 'type': 'file',
  1279 + 'name': "QMUIPieProgressView.h",
  1280 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.h"
  1281 + },
  1282 + {
  1283 + 'type': 'file',
  1284 + 'name': "QMUIPopupContainerView.h",
  1285 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.h"
  1286 + },
  1287 + {
  1288 + 'type': 'file',
  1289 + 'name': "QMUIPopupMenuBaseItem.h",
  1290 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h"
  1291 + },
  1292 + {
  1293 + 'type': 'file',
  1294 + 'name': "QMUIPopupMenuButtonItem.h",
  1295 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.h"
  1296 + },
  1297 + {
  1298 + 'type': 'file',
  1299 + 'name': "QMUIPopupMenuItemProtocol.h",
  1300 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuItemProtocol.h"
  1301 + },
  1302 + {
  1303 + 'type': 'file',
  1304 + 'name': "QMUIPopupMenuView.h",
  1305 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h"
  1306 + },
  1307 + {
  1308 + 'type': 'file',
  1309 + 'name': "QMUIRuntime.h",
  1310 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.h"
  1311 + },
  1312 + {
  1313 + 'type': 'file',
  1314 + 'name': "QMUIScrollAnimator.h",
  1315 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.h"
  1316 + },
  1317 + {
  1318 + 'type': 'file',
  1319 + 'name': "QMUISearchBar.h",
  1320 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.h"
  1321 + },
  1322 + {
  1323 + 'type': 'file',
  1324 + 'name': "QMUISearchController.h",
  1325 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.h"
  1326 + },
  1327 + {
  1328 + 'type': 'file',
  1329 + 'name': "QMUISegmentedControl.h",
  1330 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.h"
  1331 + },
  1332 + {
  1333 + 'type': 'file',
  1334 + 'name': "QMUISlider.h",
  1335 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.h"
  1336 + },
  1337 + {
  1338 + 'type': 'file',
  1339 + 'name': "QMUIStaticTableViewCellData.h",
  1340 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h"
  1341 + },
  1342 + {
  1343 + 'type': 'file',
  1344 + 'name': "QMUIStaticTableViewCellDataSource.h",
  1345 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.h"
  1346 + },
  1347 + {
  1348 + 'type': 'file',
  1349 + 'name': "QMUITabBarViewController.h",
  1350 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.h"
  1351 + },
  1352 + {
  1353 + 'type': 'file',
  1354 + 'name': "QMUITableView.h",
  1355 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.h"
  1356 + },
  1357 + {
  1358 + 'type': 'file',
  1359 + 'name': "QMUITableViewCell.h",
  1360 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.h"
  1361 + },
  1362 + {
  1363 + 'type': 'file',
  1364 + 'name': "QMUITableViewHeaderFooterView.h",
  1365 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h"
  1366 + },
  1367 + {
  1368 + 'type': 'file',
  1369 + 'name': "QMUITableViewProtocols.h",
  1370 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewProtocols.h"
  1371 + },
  1372 + {
  1373 + 'type': 'file',
  1374 + 'name': "QMUITestView.h",
  1375 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.h"
  1376 + },
  1377 + {
  1378 + 'type': 'file',
  1379 + 'name': "QMUITextField.h",
  1380 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.h"
  1381 + },
  1382 + {
  1383 + 'type': 'file',
  1384 + 'name': "QMUITextView.h",
  1385 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.h"
  1386 + },
  1387 + {
  1388 + 'type': 'file',
  1389 + 'name': "QMUITips.h",
  1390 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.h"
  1391 + },
  1392 + {
  1393 + 'type': 'file',
  1394 + 'name': "QMUIToastAnimator.h",
  1395 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h"
  1396 + },
  1397 + {
  1398 + 'type': 'file',
  1399 + 'name': "QMUIToastBackgroundView.h",
  1400 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h"
  1401 + },
  1402 + {
  1403 + 'type': 'file',
  1404 + 'name': "QMUIToastContentView.h",
  1405 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h"
  1406 + },
  1407 + {
  1408 + 'type': 'file',
  1409 + 'name': "QMUIToastView.h",
  1410 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.h"
  1411 + },
  1412 + {
  1413 + 'type': 'file',
  1414 + 'name': "QMUIToolbarButton.h",
  1415 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.h"
  1416 + },
  1417 + {
  1418 + 'type': 'file',
  1419 + 'name': "QMUIVisualEffectView.h",
  1420 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.h"
  1421 + },
  1422 + {
  1423 + 'type': 'file',
  1424 + 'name': "QMUIWeakObjectContainer.h",
  1425 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h"
  1426 + },
  1427 + {
  1428 + 'type': 'file',
  1429 + 'name': "QMUIZoomImageView.h",
  1430 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.h"
  1431 + },
  1432 + {
  1433 + 'type': 'file',
  1434 + 'name': "UIActivityIndicatorView+QMUI.h",
  1435 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h"
  1436 + },
  1437 + {
  1438 + 'type': 'file',
  1439 + 'name': "UIBarItem+QMUI.h",
  1440 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.h"
  1441 + },
  1442 + {
  1443 + 'type': 'file',
  1444 + 'name': "UIBarItem+QMUIBadge.h",
  1445 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.h"
  1446 + },
  1447 + {
  1448 + 'type': 'file',
  1449 + 'name': "UIBezierPath+QMUI.h",
  1450 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h"
  1451 + },
  1452 + {
  1453 + 'type': 'file',
  1454 + 'name': "UIButton+QMUI.h",
  1455 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.h"
  1456 + },
  1457 + {
  1458 + 'type': 'file',
  1459 + 'name': "UICollectionView+QMUI.h",
  1460 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.h"
  1461 + },
  1462 + {
  1463 + 'type': 'file',
  1464 + 'name': "UICollectionView+QMUICellSizeKeyCache.h",
  1465 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.h"
  1466 + },
  1467 + {
  1468 + 'type': 'file',
  1469 + 'name': "UIColor+QMUI.h",
  1470 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.h"
  1471 + },
  1472 + {
  1473 + 'type': 'file',
  1474 + 'name': "UIControl+QMUI.h",
  1475 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.h"
  1476 + },
  1477 + {
  1478 + 'type': 'file',
  1479 + 'name': "UIFont+QMUI.h",
  1480 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.h"
  1481 + },
  1482 + {
  1483 + 'type': 'file',
  1484 + 'name': "UIGestureRecognizer+QMUI.h",
  1485 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h"
  1486 + },
  1487 + {
  1488 + 'type': 'file',
  1489 + 'name': "UIImage+QMUI.h",
  1490 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.h"
  1491 + },
  1492 + {
  1493 + 'type': 'file',
  1494 + 'name': "UIImageView+QMUI.h",
  1495 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.h"
  1496 + },
  1497 + {
  1498 + 'type': 'file',
  1499 + 'name': "UIInterface+QMUI.h",
  1500 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.h"
  1501 + },
  1502 + {
  1503 + 'type': 'file',
  1504 + 'name': "UILabel+QMUI.h",
  1505 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.h"
  1506 + },
  1507 + {
  1508 + 'type': 'file',
  1509 + 'name': "UINavigationBar+QMUI.h",
  1510 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h"
  1511 + },
  1512 + {
  1513 + 'type': 'file',
  1514 + 'name': "UINavigationBar+Transition.h",
  1515 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.h"
  1516 + },
  1517 + {
  1518 + 'type': 'file',
  1519 + 'name': "UINavigationController+NavigationBarTransition.h",
  1520 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.h"
  1521 + },
  1522 + {
  1523 + 'type': 'file',
  1524 + 'name': "UINavigationController+QMUI.h",
  1525 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.h"
  1526 + },
  1527 + {
  1528 + 'type': 'file',
  1529 + 'name': "UIScrollView+QMUI.h",
  1530 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.h"
  1531 + },
  1532 + {
  1533 + 'type': 'file',
  1534 + 'name': "UISearchBar+QMUI.h",
  1535 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.h"
  1536 + },
  1537 + {
  1538 + 'type': 'file',
  1539 + 'name': "UITabBar+QMUI.h",
  1540 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.h"
  1541 + },
  1542 + {
  1543 + 'type': 'file',
  1544 + 'name': "UITabBarItem+QMUI.h",
  1545 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h"
  1546 + },
  1547 + {
  1548 + 'type': 'file',
  1549 + 'name': "UITableView+QMUI.h",
  1550 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.h"
  1551 + },
  1552 + {
  1553 + 'type': 'file',
  1554 + 'name': "UITableView+QMUICellHeightKeyCache.h",
  1555 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.h"
  1556 + },
  1557 + {
  1558 + 'type': 'file',
  1559 + 'name': "UITableView+QMUIStaticCell.h",
  1560 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.h"
  1561 + },
  1562 + {
  1563 + 'type': 'file',
  1564 + 'name': "UITableViewCell+QMUI.h",
  1565 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h"
  1566 + },
  1567 + {
  1568 + 'type': 'file',
  1569 + 'name': "UITextField+QMUI.h",
  1570 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.h"
  1571 + },
  1572 + {
  1573 + 'type': 'file',
  1574 + 'name': "UITextView+QMUI.h",
  1575 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.h"
  1576 + },
  1577 + {
  1578 + 'type': 'file',
  1579 + 'name': "UIView+QMUI.h",
  1580 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.h"
  1581 + },
  1582 + {
  1583 + 'type': 'file',
  1584 + 'name': "UIViewController+QMUI.h",
  1585 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.h"
  1586 + },
  1587 + {
  1588 + 'type': 'file',
  1589 + 'name': "UIWindow+QMUI.h",
  1590 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.h"
  1591 + }
  1592 + ]
  1593 + },
  1594 + {
  1595 + 'type': 'directory',
  1596 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/QMUIKit/QMUIKit.framework/Modules",
  1597 + 'contents': [
  1598 + {
  1599 + 'type': 'file',
  1600 + 'name': "module.modulemap",
  1601 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/QMUIKit.build/module.modulemap"
  1602 + }
  1603 + ]
  1604 + },
  1605 + {
  1606 + 'type': 'directory',
  1607 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers",
  1608 + 'contents': [
  1609 + {
  1610 + 'type': 'file',
  1611 + 'name': "NSButton+WebCache.h",
  1612 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h"
  1613 + },
  1614 + {
  1615 + 'type': 'file',
  1616 + 'name': "NSData+ImageContentType.h",
  1617 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h"
  1618 + },
  1619 + {
  1620 + 'type': 'file',
  1621 + 'name': "NSImage+WebCache.h",
  1622 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h"
  1623 + },
  1624 + {
  1625 + 'type': 'file',
  1626 + 'name': "SDAnimatedImageRep.h",
  1627 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h"
  1628 + },
  1629 + {
  1630 + 'type': 'file',
  1631 + 'name': "SDImageCache.h",
  1632 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDImageCache.h"
  1633 + },
  1634 + {
  1635 + 'type': 'file',
  1636 + 'name': "SDImageCacheConfig.h",
  1637 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h"
  1638 + },
  1639 + {
  1640 + 'type': 'file',
  1641 + 'name': "SDWebImage-Swift.h",
  1642 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Headers/SDWebImage-Swift.h"
  1643 + },
  1644 + {
  1645 + 'type': 'file',
  1646 + 'name': "SDWebImage-umbrella.h",
  1647 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h"
  1648 + },
  1649 + {
  1650 + 'type': 'file',
  1651 + 'name': "SDWebImageCoder.h",
  1652 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h"
  1653 + },
  1654 + {
  1655 + 'type': 'file',
  1656 + 'name': "SDWebImageCoderHelper.h",
  1657 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h"
  1658 + },
  1659 + {
  1660 + 'type': 'file',
  1661 + 'name': "SDWebImageCodersManager.h",
  1662 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h"
  1663 + },
  1664 + {
  1665 + 'type': 'file',
  1666 + 'name': "SDWebImageCompat.h",
  1667 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h"
  1668 + },
  1669 + {
  1670 + 'type': 'file',
  1671 + 'name': "SDWebImageDownloader.h",
  1672 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h"
  1673 + },
  1674 + {
  1675 + 'type': 'file',
  1676 + 'name': "SDWebImageDownloaderOperation.h",
  1677 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h"
  1678 + },
  1679 + {
  1680 + 'type': 'file',
  1681 + 'name': "SDWebImageFrame.h",
  1682 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h"
  1683 + },
  1684 + {
  1685 + 'type': 'file',
  1686 + 'name': "SDWebImageGIFCoder.h",
  1687 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h"
  1688 + },
  1689 + {
  1690 + 'type': 'file',
  1691 + 'name': "SDWebImageImageIOCoder.h",
  1692 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h"
  1693 + },
  1694 + {
  1695 + 'type': 'file',
  1696 + 'name': "SDWebImageManager.h",
  1697 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageManager.h"
  1698 + },
  1699 + {
  1700 + 'type': 'file',
  1701 + 'name': "SDWebImageOperation.h",
  1702 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h"
  1703 + },
  1704 + {
  1705 + 'type': 'file',
  1706 + 'name': "SDWebImagePrefetcher.h",
  1707 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h"
  1708 + },
  1709 + {
  1710 + 'type': 'file',
  1711 + 'name': "SDWebImageTransition.h",
  1712 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h"
  1713 + },
  1714 + {
  1715 + 'type': 'file',
  1716 + 'name': "UIButton+WebCache.h",
  1717 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h"
  1718 + },
  1719 + {
  1720 + 'type': 'file',
  1721 + 'name': "UIImage+ForceDecode.h",
  1722 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h"
  1723 + },
  1724 + {
  1725 + 'type': 'file',
  1726 + 'name': "UIImage+GIF.h",
  1727 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImage+GIF.h"
  1728 + },
  1729 + {
  1730 + 'type': 'file',
  1731 + 'name': "UIImage+MultiFormat.h",
  1732 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h"
  1733 + },
  1734 + {
  1735 + 'type': 'file',
  1736 + 'name': "UIImageView+HighlightedWebCache.h",
  1737 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h"
  1738 + },
  1739 + {
  1740 + 'type': 'file',
  1741 + 'name': "UIImageView+WebCache.h",
  1742 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h"
  1743 + },
  1744 + {
  1745 + 'type': 'file',
  1746 + 'name': "UIView+WebCache.h",
  1747 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIView+WebCache.h"
  1748 + },
  1749 + {
  1750 + 'type': 'file',
  1751 + 'name': "UIView+WebCacheOperation.h",
  1752 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h"
  1753 + }
  1754 + ]
  1755 + },
  1756 + {
  1757 + 'type': 'directory',
  1758 + 'name': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Debug-iphonesimulator/SDWebImage/SDWebImage.framework/Modules",
  1759 + 'contents': [
  1760 + {
  1761 + 'type': 'file',
  1762 + 'name': "module.modulemap",
  1763 + 'external-contents': "/Users/yinqiaojuan/Desktop/组件化开发/CNLiveDisease/Example/build/Pods.build/Debug-iphonesimulator/SDWebImage.build/module.modulemap"
  1764 + }
  1765 + ]
  1766 + }
  1767 + ]
  1768 +}
... ...
Example/build/Pods.build/Debug-iphonesimulator/FLAnimatedImage.build/module.modulemap 0 → 100644
  1 +framework module FLAnimatedImage {
  2 + umbrella header "FLAnimatedImage-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
... ...
Example/build/Pods.build/Debug-iphonesimulator/MJExtension.build/MJExtension-all-target-headers.hmap
No preview for this file type
Example/build/Pods.build/Debug-iphonesimulator/MJExtension.build/MJExtension-project-headers.hmap
No preview for this file type