Commit 0df88574e297c27286f38ddd73a04c96b11f55a3

Authored by yinqiaojuan
0 parents

0.0.1

Too many changes to show.

To preserve performance only 28 of 341 files are displayed.

.gitignore 0 → 100644
  1 +++ a/.gitignore
  1 +# OS X
  2 +.DS_Store
  3 +
  4 +# Xcode
  5 +build/
  6 +Products/
  7 +*.pbxuser
  8 +!default.pbxuser
  9 +*.mode1v3
  10 +!default.mode1v3
  11 +*.mode2v3
  12 +!default.mode2v3
  13 +*.perspectivev3
  14 +!default.perspectivev3
  15 +xcuserdata/
  16 +*.xccheckout
  17 +profile
  18 +*.moved-aside
  19 +DerivedData
  20 +*.hmap
  21 +*.ipa
  22 +
  23 +# Bundler
  24 +.bundle
  25 +
  26 +# Add this line if you want to avoid checking in source code from Carthage dependencies.
  27 +# Carthage/Checkouts
  28 +
  29 +Carthage/Build
  30 +
  31 +# We recommend against adding the Pods directory to your .gitignore. However
  32 +# you should judge for yourself, the pros and cons are mentioned at:
  33 +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
  34 +#
  35 +# Note: if you ignore the Pods directory, make sure to uncomment
  36 +# `pod install` in .travis.yml
  37 +#
  38 +# Pods/
... ...
.travis.yml 0 → 100644
  1 +++ a/.travis.yml
  1 +# references:
  2 +# * https://www.objc.io/issues/6-build-tools/travis-ci/
  3 +# * https://github.com/supermarin/xcpretty#usage
  4 +
  5 +osx_image: xcode7.3
  6 +language: objective-c
  7 +# cache: cocoapods
  8 +# podfile: Example/Podfile
  9 +# before_install:
  10 +# - gem install cocoapods # Since Travis is not always on latest version
  11 +# - pod install --project-directory=Example
  12 +script:
  13 +- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/CNLiveEmptyView.xcworkspace -scheme CNLiveEmptyView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
  14 +- pod lib lint
... ...
CNLiveEmptyView.podspec 0 → 100644
  1 +++ a/CNLiveEmptyView.podspec
  1 +
  2 +
  3 +Pod::Spec.new do |s|
  4 + s.name = 'CNLiveEmptyView'
  5 + s.version = '0.0.1'
  6 + s.summary = '封装QMUI空View'
  7 +
  8 + s.description = <<-DESC
  9 +TODO: Add long description of the pod here.
  10 + DESC
  11 +
  12 + s.homepage = 'http://bj.gitlab.cnlive.com/ios-team/CNLiveEmptyView'
  13 + # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  14 + s.license = { :type => 'MIT', :file => 'LICENSE' }
  15 + s.author = { '殷巧娟' => '1427945373@qq.com' }
  16 + s.source = { :git => 'http://bj.gitlab.cnlive.com/ios-team/CNLiveEmptyView.git', :tag => s.version.to_s }
  17 + # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
  18 +
  19 + s.ios.deployment_target = '9.0'
  20 +
  21 + s.source_files = 'CNLiveEmptyView/Classes/**/*'
  22 +
  23 + # s.resource_bundles = {
  24 + # 'CNLiveEmptyView' => ['CNLiveEmptyView/Assets/*.png']
  25 + # }
  26 +
  27 + # s.public_header_files = 'Pod/Classes/**/*.h'
  28 + s.frameworks = 'UIKit', 'Foundation'
  29 + s.dependency 'QMUIKit'
  30 +end
... ...
CNLiveEmptyView/Classes/CNLIveEmptyView.h 0 → 100644
  1 +++ a/CNLiveEmptyView/Classes/CNLIveEmptyView.h
  1 +//
  2 +// CNLIveEmptyView.h
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 2018/12/28.
  6 +//
  7 +
  8 +#import <UIKit/UIKit.h>
  9 +@class QMUIButton;
  10 +NS_ASSUME_NONNULL_BEGIN
  11 +@protocol QMUIEmptyViewLoadingViewProtocol <NSObject>
  12 +
  13 +@optional
  14 +
  15 +- (void)startAnimating; // 当调用 setLoadingViewHidden:NO 时,系统将自动调用此处的 startAnimating
  16 +
  17 +@end
  18 +
  19 +/**
  20 + * 通用的空界面控件,支持显示 loading、标题和副标题提示语、占位图片,QMUICommonViewController 内已集成一个 emptyView,无需额外添加。
  21 + */
  22 +@interface CNLIveEmptyView : UIView
  23 +// 布局顺序从上到下依次为:imageView, loadingView, textLabel, detailTextLabel, actionButton
  24 +@property(nonatomic, strong) UIView<QMUIEmptyViewLoadingViewProtocol> *loadingView; // 此控件通过设置 loadingView.hidden 来控制 loadinView 的显示和隐藏,因此请确保你的loadingView 没有类似于 hidesWhenStopped = YES 之类会使 view.hidden 失效的属性
  25 +@property(nonatomic, strong, readonly) UIImageView *imageView;
  26 +@property(nonatomic, strong, readonly) UILabel *textLabel;
  27 +@property(nonatomic, strong, readonly) UILabel *detailTextLabel;
  28 +@property(nonatomic, strong, readonly) QMUIButton *actionButton;
  29 +
  30 +// 可通过调整这些insets来控制间距
  31 +@property(nonatomic, assign) UIEdgeInsets imageViewInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 36, 0)
  32 +@property(nonatomic, assign) UIEdgeInsets loadingViewInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 36, 0)
  33 +@property(nonatomic, assign) UIEdgeInsets textLabelInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 10, 0)
  34 +@property(nonatomic, assign) UIEdgeInsets detailTextLabelInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 10, 0)
  35 +@property(nonatomic, assign) UIEdgeInsets actionButtonInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 0, 0)
  36 +@property(nonatomic, assign) CGFloat verticalOffset UI_APPEARANCE_SELECTOR; // 如果不想要内容整体垂直居中,则可通过调整此属性来进行垂直偏移。默认为-30,即内容比中间略微偏上
  37 +
  38 +// 字体
  39 +@property(nonatomic, strong) UIFont *textLabelFont UI_APPEARANCE_SELECTOR; // 默认为15pt系统字体
  40 +@property(nonatomic, strong) UIFont *detailTextLabelFont UI_APPEARANCE_SELECTOR; // 默认为14pt系统字体
  41 +@property(nonatomic, strong) UIFont *actionButtonFont UI_APPEARANCE_SELECTOR; // 默认为15pt系统字体
  42 +
  43 +// 颜色
  44 +@property(nonatomic, strong) UIColor *textLabelTextColor UI_APPEARANCE_SELECTOR; // 默认为(93, 100, 110)
  45 +@property(nonatomic, strong) UIColor *detailTextLabelTextColor UI_APPEARANCE_SELECTOR; // 默认为(133, 140, 150)
  46 +@property(nonatomic, strong) UIColor *actionButtonTitleColor UI_APPEARANCE_SELECTOR; // 默认为 ButtonTintColor
  47 +
  48 +// 显示或隐藏loading图标
  49 +- (void)setLoadingViewHidden:(BOOL)hidden;
  50 +
  51 +/**
  52 + * 设置要显示的图片
  53 + * @param image 要显示的图片,为nil则不显示
  54 + */
  55 +- (void)setImage:(UIImage *)image;
  56 +
  57 +/**
  58 + * 设置提示语
  59 + * @param text 提示语文本,若为nil则隐藏textLabel
  60 + */
  61 +- (void)setTextLabelText:(NSString *)text;
  62 +
  63 +/**
  64 + * 设置详细提示语的文本
  65 + * @param text 详细提示语文本,若为nil则隐藏detailTextLabel
  66 + */
  67 +- (void)setDetailTextLabelText:(NSString *)text;
  68 +
  69 +/**
  70 + * 设置操作按钮的文本
  71 + * @param title 操作按钮的文本,若为nil则隐藏actionButton
  72 + */
  73 +- (void)setActionButtonTitle:(NSString *)title;
  74 +
  75 +/**
  76 + * 如果要继承QMUIEmptyView并添加新的子 view,则必须:
  77 + * 1. 像其它自带 view 一样添加到 contentView 上
  78 + * 2. 重写sizeThatContentViewFits
  79 + */
  80 +@property(nonatomic, strong, readonly) UIView *contentView;
  81 +- (CGSize)sizeThatContentViewFits; // 返回一个恰好容纳所有子 view 的大小
  82 +
  83 +@end
  84 +
  85 +NS_ASSUME_NONNULL_END
... ...
CNLiveEmptyView/Classes/CNLIveEmptyView.m 0 → 100644
  1 +++ a/CNLiveEmptyView/Classes/CNLIveEmptyView.m
  1 +//
  2 +// CNLIveEmptyView.m
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 2018/12/28.
  6 +//
  7 +
  8 +#import "CNLIveEmptyView.h"
  9 +#import <QMUIKit/QMUIKit.h>
  10 +#import "QMUICore.h"
  11 +#import "UIControl+QMUI.h"
  12 +#import "NSParagraphStyle+QMUI.h"
  13 +#import "UIView+QMUI.h"
  14 +#import "QMUIButton.h"
  15 +@interface CNLIveEmptyView ()
  16 +@property(nonatomic, strong) UIScrollView *scrollView; // 保证内容超出屏幕时也不至于直接被clip(比如横屏时)
  17 +@end
  18 +
  19 +@implementation CNLIveEmptyView
  20 +
  21 +- (instancetype)initWithFrame:(CGRect)frame {
  22 + self = [super initWithFrame:frame];
  23 + if (self) {
  24 + [self didInitialize];
  25 + }
  26 + return self;
  27 +}
  28 +
  29 +- (instancetype)initWithCoder:(NSCoder *)aDecoder {
  30 + if (self = [super initWithCoder:aDecoder]) {
  31 + [self didInitialize];
  32 + }
  33 + return self;
  34 +}
  35 +- (void)didInitialize {
  36 + // 系统默认会在view即将被add到window上时才设置这些值,这个时机有点晚了,因为我们可能在add到window之前就进行sizeThatFits计算或对view进行截图等操作,因此这里提前到init时就去做
  37 + QMUIEmptyView *appearance = [QMUIEmptyView appearance];
  38 + _imageViewInsets = appearance.imageViewInsets;
  39 + _loadingViewInsets = appearance.loadingViewInsets;
  40 + _textLabelInsets = appearance.textLabelInsets;
  41 + _detailTextLabelInsets = appearance.detailTextLabelInsets;
  42 + _actionButtonInsets = appearance.actionButtonInsets;
  43 + _verticalOffset = appearance.verticalOffset;
  44 + _textLabelFont = appearance.textLabelFont;
  45 + _detailTextLabelFont = appearance.detailTextLabelFont;
  46 + _actionButtonFont = appearance.actionButtonFont;
  47 + _textLabelTextColor = appearance.textLabelTextColor;
  48 + _detailTextLabelTextColor = appearance.detailTextLabelTextColor;
  49 + _actionButtonTitleColor = appearance.actionButtonTitleColor;
  50 +
  51 + self.scrollView = [[UIScrollView alloc] init];
  52 + if (@available(iOS 11, *)) {
  53 + self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  54 + }
  55 + self.scrollView.showsVerticalScrollIndicator = NO;
  56 + self.scrollView.showsHorizontalScrollIndicator = NO;
  57 + self.scrollView.scrollsToTop = NO;
  58 + self.scrollView.contentInset = UIEdgeInsetsMake(0, 16, 0, 16);
  59 + [self addSubview:self.scrollView];
  60 +
  61 + _contentView = [[UIView alloc] init];
  62 + [self.scrollView addSubview:self.contentView];
  63 +
  64 + _loadingView = (UIView<QMUIEmptyViewLoadingViewProtocol> *)[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
  65 + ((UIActivityIndicatorView *)self.loadingView).hidesWhenStopped = NO; // 此控件是通过loadingView.hidden属性来控制显隐的,如果UIActivityIndicatorView的hidesWhenStopped属性设置为YES的话,则手动设置它的hidden属性就会失效,因此这里要置为NO
  66 + [self.contentView addSubview:self.loadingView];
  67 +
  68 + _imageView = [[UIImageView alloc] init];
  69 + self.imageView.contentMode = UIViewContentModeCenter;
  70 + [self.contentView addSubview:self.imageView];
  71 +
  72 + _textLabel = [[UILabel alloc] init];
  73 + self.textLabel.textAlignment = NSTextAlignmentCenter;
  74 + self.textLabel.numberOfLines = 0;
  75 + [self.contentView addSubview:self.textLabel];
  76 +
  77 + _detailTextLabel = [[UILabel alloc] init];
  78 + self.detailTextLabel.textAlignment = NSTextAlignmentCenter;
  79 + self.detailTextLabel.numberOfLines = 0;
  80 + [self.contentView addSubview:self.detailTextLabel];
  81 +
  82 + _actionButton = [[QMUIButton alloc] init];
  83 + self.actionButton.qmui_outsideEdge = UIEdgeInsetsMake(-20, -20, -20, -20);
  84 + self.actionButton.qmui_automaticallyAdjustTouchHighlightedInScrollView = YES;
  85 + [self.contentView addSubview:self.actionButton];
  86 +}
  87 +
  88 +- (void)layoutSubviews {
  89 + [super layoutSubviews];
  90 +
  91 + self.scrollView.frame = self.bounds;
  92 +
  93 + CGSize contentViewSize = CGSizeFlatted([self sizeThatContentViewFits]);
  94 + // contentView 默认垂直居中于 scrollView
  95 + self.contentView.frame = CGRectFlatMake(0, CGRectGetMidY(self.scrollView.bounds) - contentViewSize.height / 2 + self.verticalOffset, contentViewSize.width, contentViewSize.height);
  96 +
  97 + // 如果 contentView 要比 scrollView 高,则置顶展示
  98 + if (CGRectGetHeight(self.contentView.bounds) > CGRectGetHeight(self.scrollView.bounds)) {
  99 + self.contentView.frame = CGRectSetY(self.contentView.frame, 0);
  100 + }
  101 +
  102 + self.scrollView.contentSize = CGSizeMake(fmax(CGRectGetWidth(self.scrollView.bounds) - UIEdgeInsetsGetHorizontalValue(self.scrollView.contentInset), contentViewSize.width), fmax(CGRectGetHeight(self.scrollView.bounds) - UIEdgeInsetsGetVerticalValue(self.scrollView.contentInset), CGRectGetMaxY(self.contentView.frame)));
  103 +
  104 + CGFloat originY = 0;
  105 +
  106 + if (!self.imageView.hidden) {
  107 + [self.imageView sizeToFit];
  108 + self.imageView.frame = CGRectSetXY(self.imageView.frame, CGRectGetMinXHorizontallyCenterInParentRect(self.contentView.bounds, self.imageView.frame) + self.imageViewInsets.left - self.imageViewInsets.right, originY + self.imageViewInsets.top);
  109 + originY = CGRectGetMaxY(self.imageView.frame) + self.imageViewInsets.bottom;
  110 + }
  111 +
  112 + if (!self.loadingView.hidden) {
  113 + self.loadingView.frame = CGRectSetXY(self.loadingView.frame, CGRectGetMinXHorizontallyCenterInParentRect(self.contentView.bounds, self.loadingView.frame) + self.loadingViewInsets.left - self.loadingViewInsets.right, originY + self.loadingViewInsets.top);
  114 + originY = CGRectGetMaxY(self.loadingView.frame) + self.loadingViewInsets.bottom;
  115 + }
  116 +
  117 + if (!self.textLabel.hidden) {
  118 + self.textLabel.frame = CGRectFlatMake(self.textLabelInsets.left, originY + self.textLabelInsets.top, CGRectGetWidth(self.contentView.bounds) - UIEdgeInsetsGetHorizontalValue(self.textLabelInsets), QMUIViewSelfSizingHeight);
  119 + originY = CGRectGetMaxY(self.textLabel.frame) + self.textLabelInsets.bottom;
  120 + }
  121 +
  122 + if (!self.detailTextLabel.hidden) {
  123 + self.detailTextLabel.frame = CGRectFlatMake(self.detailTextLabelInsets.left, originY + self.detailTextLabelInsets.top, CGRectGetWidth(self.contentView.bounds) - UIEdgeInsetsGetHorizontalValue(self.detailTextLabelInsets), QMUIViewSelfSizingHeight);
  124 + originY = CGRectGetMaxY(self.detailTextLabel.frame) + self.detailTextLabelInsets.bottom;
  125 + }
  126 +
  127 + if (!self.actionButton.hidden) {
  128 + [self.actionButton sizeToFit];
  129 + self.actionButton.frame = CGRectSetXY(self.actionButton.frame, CGRectGetMinXHorizontallyCenterInParentRect(self.contentView.bounds, self.actionButton.frame) + self.actionButtonInsets.left - self.actionButtonInsets.right, originY + self.actionButtonInsets.top);
  130 + originY = CGRectGetMaxY(self.actionButton.frame) + self.actionButtonInsets.bottom;
  131 + }
  132 +}
  133 +
  134 +- (CGSize)sizeThatContentViewFits {
  135 + CGFloat resultWidth = CGRectGetWidth(self.scrollView.bounds) - UIEdgeInsetsGetHorizontalValue(self.scrollView.contentInset);
  136 +
  137 + CGFloat imageViewHeight = [self.imageView sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.imageViewInsets);
  138 + CGFloat loadingViewHeight = CGRectGetHeight(self.loadingView.bounds) + UIEdgeInsetsGetVerticalValue(self.loadingViewInsets);
  139 + CGFloat textLabelHeight = [self.textLabel sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.textLabelInsets);
  140 + CGFloat detailTextLabelHeight = [self.detailTextLabel sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.detailTextLabelInsets);
  141 + CGFloat actionButtonHeight = [self.actionButton sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.actionButtonInsets);
  142 +
  143 + CGFloat resultHeight = 0;
  144 + if (!self.imageView.hidden) {
  145 + resultHeight += imageViewHeight;
  146 + }
  147 + if (!self.loadingView.hidden) {
  148 + resultHeight += loadingViewHeight;
  149 + }
  150 + if (!self.textLabel.hidden) {
  151 + resultHeight += textLabelHeight;
  152 + }
  153 + if (!self.detailTextLabel.hidden) {
  154 + resultHeight += detailTextLabelHeight;
  155 + }
  156 + if (!self.actionButton.hidden) {
  157 + resultHeight += actionButtonHeight;
  158 + }
  159 +
  160 + return CGSizeMake(resultWidth, resultHeight);
  161 +}
  162 +
  163 +- (void)updateDetailTextLabelWithText:(NSString *)text {
  164 + if (self.detailTextLabelFont && self.detailTextLabelTextColor && text) {
  165 + NSAttributedString *string = [[NSAttributedString alloc] initWithString:text attributes:@{
  166 + NSFontAttributeName: self.detailTextLabelFont,
  167 + NSForegroundColorAttributeName: self.detailTextLabelTextColor,
  168 + NSParagraphStyleAttributeName: [NSMutableParagraphStyle qmui_paragraphStyleWithLineHeight:self.detailTextLabelFont.pointSize + 10 lineBreakMode:NSLineBreakByWordWrapping textAlignment:NSTextAlignmentCenter]
  169 + }];
  170 + self.detailTextLabel.attributedText = string;
  171 + }
  172 + self.detailTextLabel.hidden = !text;
  173 + [self setNeedsLayout];
  174 +}
  175 +
  176 +- (void)setLoadingView:(UIView<QMUIEmptyViewLoadingViewProtocol> *)loadingView {
  177 + if (self.loadingView != loadingView) {
  178 + [self.loadingView removeFromSuperview];
  179 + _loadingView = loadingView;
  180 + [self.contentView addSubview:loadingView];
  181 + }
  182 + [self setNeedsLayout];
  183 +}
  184 +
  185 +- (void)setLoadingViewHidden:(BOOL)hidden {
  186 + self.loadingView.hidden = hidden;
  187 + if (!hidden && [self.loadingView respondsToSelector:@selector(startAnimating)]) {
  188 + [self.loadingView startAnimating];
  189 + }
  190 + [self setNeedsLayout];
  191 +}
  192 +
  193 +- (void)setImage:(UIImage *)image {
  194 + self.imageView.image = image;
  195 + self.imageView.hidden = !image;
  196 + [self setNeedsLayout];
  197 +}
  198 +
  199 +- (void)setTextLabelText:(NSString *)text {
  200 + self.textLabel.text = text;
  201 + self.textLabel.hidden = !text;
  202 + [self setNeedsLayout];
  203 +}
  204 +
  205 +- (void)setDetailTextLabelText:(NSString *)text {
  206 + [self updateDetailTextLabelWithText:text];
  207 +}
  208 +
  209 +- (void)setActionButtonTitle:(NSString *)title {
  210 + [self.actionButton setTitle:title forState:UIControlStateNormal];
  211 + self.actionButton.hidden = !title;
  212 + [self setNeedsLayout];
  213 +}
  214 +
  215 +- (void)setImageViewInsets:(UIEdgeInsets)imageViewInsets {
  216 + _imageViewInsets = imageViewInsets;
  217 + [self setNeedsLayout];
  218 +}
  219 +
  220 +- (void)setTextLabelInsets:(UIEdgeInsets)textLabelInsets {
  221 + _textLabelInsets = textLabelInsets;
  222 + [self setNeedsLayout];
  223 +}
  224 +
  225 +- (void)setDetailTextLabelInsets:(UIEdgeInsets)detailTextLabelInsets {
  226 + _detailTextLabelInsets = detailTextLabelInsets;
  227 + [self setNeedsLayout];
  228 +}
  229 +
  230 +- (void)setActionButtonInsets:(UIEdgeInsets)actionButtonInsets {
  231 + _actionButtonInsets = actionButtonInsets;
  232 + [self setNeedsLayout];
  233 +}
  234 +
  235 +- (void)setVerticalOffset:(CGFloat)verticalOffset {
  236 + _verticalOffset = verticalOffset;
  237 + [self setNeedsLayout];
  238 +}
  239 +
  240 +- (void)setTextLabelFont:(UIFont *)textLabelFont {
  241 + _textLabelFont = textLabelFont;
  242 + self.textLabel.font = textLabelFont;
  243 + [self setNeedsLayout];
  244 +}
  245 +
  246 +- (void)setDetailTextLabelFont:(UIFont *)detailTextLabelFont {
  247 + _detailTextLabelFont = detailTextLabelFont;
  248 + [self updateDetailTextLabelWithText:self.detailTextLabel.text];
  249 +}
  250 +
  251 +- (void)setActionButtonFont:(UIFont *)actionButtonFont {
  252 + _actionButtonFont = actionButtonFont;
  253 + self.actionButton.titleLabel.font = actionButtonFont;
  254 + [self setNeedsLayout];
  255 +}
  256 +
  257 +- (void)setTextLabelTextColor:(UIColor *)textLabelTextColor {
  258 + _textLabelTextColor = textLabelTextColor;
  259 + self.textLabel.textColor = textLabelTextColor;
  260 +}
  261 +
  262 +- (void)setDetailTextLabelTextColor:(UIColor *)detailTextLabelTextColor {
  263 + _detailTextLabelTextColor = detailTextLabelTextColor;
  264 + [self updateDetailTextLabelWithText:self.detailTextLabel.text];
  265 +}
  266 +
  267 +- (void)setActionButtonTitleColor:(UIColor *)actionButtonTitleColor {
  268 + _actionButtonTitleColor = actionButtonTitleColor;
  269 + [self.actionButton setTitleColor:actionButtonTitleColor forState:UIControlStateNormal];
  270 + [self.actionButton setTitleColor:[actionButtonTitleColor colorWithAlphaComponent:ButtonHighlightedAlpha] forState:UIControlStateHighlighted];
  271 + [self.actionButton setTitleColor:[actionButtonTitleColor colorWithAlphaComponent:ButtonDisabledAlpha] forState:UIControlStateDisabled];
  272 +}
  273 +
  274 +@end
  275 +
  276 +@interface QMUIEmptyView (UIAppearance)
  277 +
  278 +@end
  279 +
  280 +@implementation QMUIEmptyView (UIAppearance)
  281 +
  282 ++ (void)initialize {
  283 + static dispatch_once_t onceToken;
  284 + dispatch_once(&onceToken, ^{
  285 + [self setDefaultAppearance];
  286 + });
  287 +}
  288 +
  289 ++ (void)setDefaultAppearance {
  290 + QMUIEmptyView *appearance = [QMUIEmptyView appearance];
  291 + appearance.imageViewInsets = UIEdgeInsetsMake(0, 0, 36, 0);
  292 + appearance.loadingViewInsets = UIEdgeInsetsMake(0, 0, 36, 0);
  293 + appearance.textLabelInsets = UIEdgeInsetsMake(0, 0, 10, 0);
  294 + appearance.detailTextLabelInsets = UIEdgeInsetsMake(0, 0, 14, 0);
  295 + appearance.actionButtonInsets = UIEdgeInsetsZero;
  296 + appearance.verticalOffset = -30;
  297 +
  298 + appearance.textLabelFont = UIFontMake(15);
  299 + appearance.detailTextLabelFont = UIFontMake(14);
  300 + appearance.actionButtonFont = UIFontMake(15);
  301 +
  302 + appearance.textLabelTextColor = UIColorMake(93, 100, 110);
  303 + appearance.detailTextLabelTextColor = UIColorMake(133, 140, 150);
  304 + appearance.actionButtonTitleColor = ButtonTintColor;
  305 +}
  306 +
  307 +@end
... ...
Example/CNLiveEmptyView.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/CNLiveEmptyView.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 39AAF0B67AA6B586B35C3D95 /* Pods_CNLiveEmptyView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C8193CE092E875EFB99ABE8E /* Pods_CNLiveEmptyView_Example.framework */; };
  11 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  12 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
  13 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  14 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
  15 + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
  16 + 6003F59E195388D20070C39A /* CNLiveAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* CNLiveAppDelegate.m */; };
  17 + 6003F5A7195388D20070C39A /* CNLiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* CNLiveViewController.m */; };
  18 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
  19 + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
  20 + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  21 + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  22 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
  23 + 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
  24 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
  25 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
  26 + BBCEF7EB6B5F0B1E40890319 /* Pods_CNLiveEmptyView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BFB17C8846DC10C18312B78A /* Pods_CNLiveEmptyView_Tests.framework */; };
  27 +/* End PBXBuildFile section */
  28 +
  29 +/* Begin PBXContainerItemProxy section */
  30 + 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
  31 + isa = PBXContainerItemProxy;
  32 + containerPortal = 6003F582195388D10070C39A /* Project object */;
  33 + proxyType = 1;
  34 + remoteGlobalIDString = 6003F589195388D20070C39A;
  35 + remoteInfo = CNLiveEmptyView;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 6003F58A195388D20070C39A /* CNLiveEmptyView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CNLiveEmptyView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  41 + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  42 + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  43 + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  44 + 6003F595195388D20070C39A /* CNLiveEmptyView-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CNLiveEmptyView-Info.plist"; sourceTree = "<group>"; };
  45 + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  46 + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  47 + 6003F59B195388D20070C39A /* CNLiveEmptyView-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CNLiveEmptyView-Prefix.pch"; sourceTree = "<group>"; };
  48 + 6003F59C195388D20070C39A /* CNLiveAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNLiveAppDelegate.h; sourceTree = "<group>"; };
  49 + 6003F59D195388D20070C39A /* CNLiveAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CNLiveAppDelegate.m; sourceTree = "<group>"; };
  50 + 6003F5A5195388D20070C39A /* CNLiveViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNLiveViewController.h; sourceTree = "<group>"; };
  51 + 6003F5A6195388D20070C39A /* CNLiveViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CNLiveViewController.m; sourceTree = "<group>"; };
  52 + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  53 + 6003F5AE195388D20070C39A /* CNLiveEmptyView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CNLiveEmptyView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  54 + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  55 + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  56 + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  57 + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
  58 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
  59 + 644B67FF71F2C386E9C93E6D /* CNLiveEmptyView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CNLiveEmptyView.podspec; path = ../CNLiveEmptyView.podspec; sourceTree = "<group>"; };
  60 + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  61 + 8016DE73B4317A28329B19BE /* Pods-CNLiveEmptyView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CNLiveEmptyView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests.release.xcconfig"; sourceTree = "<group>"; };
  62 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  63 + 9105AFB549AE9AD5FB00DB3B /* Pods-CNLiveEmptyView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CNLiveEmptyView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example.release.xcconfig"; sourceTree = "<group>"; };
  64 + 9121B6F09522AAF5F79684D1 /* Pods-CNLiveEmptyView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CNLiveEmptyView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example.debug.xcconfig"; sourceTree = "<group>"; };
  65 + 92CA038AC1F2FC383B120A22 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  66 + BFB17C8846DC10C18312B78A /* Pods_CNLiveEmptyView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveEmptyView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  67 + C8193CE092E875EFB99ABE8E /* Pods_CNLiveEmptyView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveEmptyView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  68 + D8D0855CD284B9B6FCB12D9A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  69 + DFF8D75290EA4129AF4290B3 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CNLiveEmptyView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  70 +/* End PBXFileReference section */
  71 +
  72 +/* Begin PBXFrameworksBuildPhase section */
  73 + 6003F587195388D20070C39A /* Frameworks */ = {
  74 + isa = PBXFrameworksBuildPhase;
  75 + buildActionMask = 2147483647;
  76 + files = (
  77 + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
  78 + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
  79 + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
  80 + 39AAF0B67AA6B586B35C3D95 /* Pods_CNLiveEmptyView_Example.framework in Frameworks */,
  81 + );
  82 + runOnlyForDeploymentPostprocessing = 0;
  83 + };
  84 + 6003F5AB195388D20070C39A /* Frameworks */ = {
  85 + isa = PBXFrameworksBuildPhase;
  86 + buildActionMask = 2147483647;
  87 + files = (
  88 + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
  89 + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
  90 + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
  91 + BBCEF7EB6B5F0B1E40890319 /* Pods_CNLiveEmptyView_Tests.framework in Frameworks */,
  92 + );
  93 + runOnlyForDeploymentPostprocessing = 0;
  94 + };
  95 +/* End PBXFrameworksBuildPhase section */
  96 +
  97 +/* Begin PBXGroup section */
  98 + 6003F581195388D10070C39A = {
  99 + isa = PBXGroup;
  100 + children = (
  101 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
  102 + 6003F593195388D20070C39A /* Example for CNLiveEmptyView */,
  103 + 6003F5B5195388D20070C39A /* Tests */,
  104 + 6003F58C195388D20070C39A /* Frameworks */,
  105 + 6003F58B195388D20070C39A /* Products */,
  106 + 8585A1588F3BFD11471C774F /* Pods */,
  107 + );
  108 + sourceTree = "<group>";
  109 + };
  110 + 6003F58B195388D20070C39A /* Products */ = {
  111 + isa = PBXGroup;
  112 + children = (
  113 + 6003F58A195388D20070C39A /* CNLiveEmptyView_Example.app */,
  114 + 6003F5AE195388D20070C39A /* CNLiveEmptyView_Tests.xctest */,
  115 + );
  116 + name = Products;
  117 + sourceTree = "<group>";
  118 + };
  119 + 6003F58C195388D20070C39A /* Frameworks */ = {
  120 + isa = PBXGroup;
  121 + children = (
  122 + 6003F58D195388D20070C39A /* Foundation.framework */,
  123 + 6003F58F195388D20070C39A /* CoreGraphics.framework */,
  124 + 6003F591195388D20070C39A /* UIKit.framework */,
  125 + 6003F5AF195388D20070C39A /* XCTest.framework */,
  126 + C8193CE092E875EFB99ABE8E /* Pods_CNLiveEmptyView_Example.framework */,
  127 + BFB17C8846DC10C18312B78A /* Pods_CNLiveEmptyView_Tests.framework */,
  128 + );
  129 + name = Frameworks;
  130 + sourceTree = "<group>";
  131 + };
  132 + 6003F593195388D20070C39A /* Example for CNLiveEmptyView */ = {
  133 + isa = PBXGroup;
  134 + children = (
  135 + 6003F59C195388D20070C39A /* CNLiveAppDelegate.h */,
  136 + 6003F59D195388D20070C39A /* CNLiveAppDelegate.m */,
  137 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
  138 + 6003F5A5195388D20070C39A /* CNLiveViewController.h */,
  139 + 6003F5A6195388D20070C39A /* CNLiveViewController.m */,
  140 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
  141 + 6003F5A8195388D20070C39A /* Images.xcassets */,
  142 + 6003F594195388D20070C39A /* Supporting Files */,
  143 + );
  144 + name = "Example for CNLiveEmptyView";
  145 + path = CNLiveEmptyView;
  146 + sourceTree = "<group>";
  147 + };
  148 + 6003F594195388D20070C39A /* Supporting Files */ = {
  149 + isa = PBXGroup;
  150 + children = (
  151 + 6003F595195388D20070C39A /* CNLiveEmptyView-Info.plist */,
  152 + 6003F596195388D20070C39A /* InfoPlist.strings */,
  153 + 6003F599195388D20070C39A /* main.m */,
  154 + 6003F59B195388D20070C39A /* CNLiveEmptyView-Prefix.pch */,
  155 + );
  156 + name = "Supporting Files";
  157 + sourceTree = "<group>";
  158 + };
  159 + 6003F5B5195388D20070C39A /* Tests */ = {
  160 + isa = PBXGroup;
  161 + children = (
  162 + 6003F5BB195388D20070C39A /* Tests.m */,
  163 + 6003F5B6195388D20070C39A /* Supporting Files */,
  164 + );
  165 + path = Tests;
  166 + sourceTree = "<group>";
  167 + };
  168 + 6003F5B6195388D20070C39A /* Supporting Files */ = {
  169 + isa = PBXGroup;
  170 + children = (
  171 + 6003F5B7195388D20070C39A /* Tests-Info.plist */,
  172 + 6003F5B8195388D20070C39A /* InfoPlist.strings */,
  173 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
  174 + );
  175 + name = "Supporting Files";
  176 + sourceTree = "<group>";
  177 + };
  178 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
  179 + isa = PBXGroup;
  180 + children = (
  181 + 644B67FF71F2C386E9C93E6D /* CNLiveEmptyView.podspec */,
  182 + 92CA038AC1F2FC383B120A22 /* README.md */,
  183 + D8D0855CD284B9B6FCB12D9A /* LICENSE */,
  184 + );
  185 + name = "Podspec Metadata";
  186 + sourceTree = "<group>";
  187 + };
  188 + 8585A1588F3BFD11471C774F /* Pods */ = {
  189 + isa = PBXGroup;
  190 + children = (
  191 + 9121B6F09522AAF5F79684D1 /* Pods-CNLiveEmptyView_Example.debug.xcconfig */,
  192 + 9105AFB549AE9AD5FB00DB3B /* Pods-CNLiveEmptyView_Example.release.xcconfig */,
  193 + DFF8D75290EA4129AF4290B3 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */,
  194 + 8016DE73B4317A28329B19BE /* Pods-CNLiveEmptyView_Tests.release.xcconfig */,
  195 + );
  196 + name = Pods;
  197 + sourceTree = "<group>";
  198 + };
  199 +/* End PBXGroup section */
  200 +
  201 +/* Begin PBXNativeTarget section */
  202 + 6003F589195388D20070C39A /* CNLiveEmptyView_Example */ = {
  203 + isa = PBXNativeTarget;
  204 + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "CNLiveEmptyView_Example" */;
  205 + buildPhases = (
  206 + 385F16755218D2F74828469C /* [CP] Check Pods Manifest.lock */,
  207 + 6003F586195388D20070C39A /* Sources */,
  208 + 6003F587195388D20070C39A /* Frameworks */,
  209 + 6003F588195388D20070C39A /* Resources */,
  210 + 3697CFF09F3860BA7BFE6FBE /* [CP] Embed Pods Frameworks */,
  211 + );
  212 + buildRules = (
  213 + );
  214 + dependencies = (
  215 + );
  216 + name = CNLiveEmptyView_Example;
  217 + productName = CNLiveEmptyView;
  218 + productReference = 6003F58A195388D20070C39A /* CNLiveEmptyView_Example.app */;
  219 + productType = "com.apple.product-type.application";
  220 + };
  221 + 6003F5AD195388D20070C39A /* CNLiveEmptyView_Tests */ = {
  222 + isa = PBXNativeTarget;
  223 + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "CNLiveEmptyView_Tests" */;
  224 + buildPhases = (
  225 + 1515903612CEC5F83C2F7EFC /* [CP] Check Pods Manifest.lock */,
  226 + 6003F5AA195388D20070C39A /* Sources */,
  227 + 6003F5AB195388D20070C39A /* Frameworks */,
  228 + 6003F5AC195388D20070C39A /* Resources */,
  229 + A3388498433A34AFF7A5F0D4 /* [CP] Embed Pods Frameworks */,
  230 + );
  231 + buildRules = (
  232 + );
  233 + dependencies = (
  234 + 6003F5B4195388D20070C39A /* PBXTargetDependency */,
  235 + );
  236 + name = CNLiveEmptyView_Tests;
  237 + productName = CNLiveEmptyViewTests;
  238 + productReference = 6003F5AE195388D20070C39A /* CNLiveEmptyView_Tests.xctest */;
  239 + productType = "com.apple.product-type.bundle.unit-test";
  240 + };
  241 +/* End PBXNativeTarget section */
  242 +
  243 +/* Begin PBXProject section */
  244 + 6003F582195388D10070C39A /* Project object */ = {
  245 + isa = PBXProject;
  246 + attributes = {
  247 + CLASSPREFIX = CNLive;
  248 + LastUpgradeCheck = 0720;
  249 + ORGANIZATIONNAME = "殷巧娟";
  250 + TargetAttributes = {
  251 + 6003F589195388D20070C39A = {
  252 + DevelopmentTeam = 94X49GG3ZW;
  253 + };
  254 + 6003F5AD195388D20070C39A = {
  255 + TestTargetID = 6003F589195388D20070C39A;
  256 + };
  257 + };
  258 + };
  259 + buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "CNLiveEmptyView" */;
  260 + compatibilityVersion = "Xcode 3.2";
  261 + developmentRegion = English;
  262 + hasScannedForEncodings = 0;
  263 + knownRegions = (
  264 + en,
  265 + Base,
  266 + );
  267 + mainGroup = 6003F581195388D10070C39A;
  268 + productRefGroup = 6003F58B195388D20070C39A /* Products */;
  269 + projectDirPath = "";
  270 + projectRoot = "";
  271 + targets = (
  272 + 6003F589195388D20070C39A /* CNLiveEmptyView_Example */,
  273 + 6003F5AD195388D20070C39A /* CNLiveEmptyView_Tests */,
  274 + );
  275 + };
  276 +/* End PBXProject section */
  277 +
  278 +/* Begin PBXResourcesBuildPhase section */
  279 + 6003F588195388D20070C39A /* Resources */ = {
  280 + isa = PBXResourcesBuildPhase;
  281 + buildActionMask = 2147483647;
  282 + files = (
  283 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
  284 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
  285 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
  286 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
  287 + );
  288 + runOnlyForDeploymentPostprocessing = 0;
  289 + };
  290 + 6003F5AC195388D20070C39A /* Resources */ = {
  291 + isa = PBXResourcesBuildPhase;
  292 + buildActionMask = 2147483647;
  293 + files = (
  294 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
  295 + );
  296 + runOnlyForDeploymentPostprocessing = 0;
  297 + };
  298 +/* End PBXResourcesBuildPhase section */
  299 +
  300 +/* Begin PBXShellScriptBuildPhase section */
  301 + 1515903612CEC5F83C2F7EFC /* [CP] Check Pods Manifest.lock */ = {
  302 + isa = PBXShellScriptBuildPhase;
  303 + buildActionMask = 2147483647;
  304 + files = (
  305 + );
  306 + inputFileListPaths = (
  307 + );
  308 + inputPaths = (
  309 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  310 + "${PODS_ROOT}/Manifest.lock",
  311 + );
  312 + name = "[CP] Check Pods Manifest.lock";
  313 + outputFileListPaths = (
  314 + );
  315 + outputPaths = (
  316 + "$(DERIVED_FILE_DIR)/Pods-CNLiveEmptyView_Tests-checkManifestLockResult.txt",
  317 + );
  318 + runOnlyForDeploymentPostprocessing = 0;
  319 + shellPath = /bin/sh;
  320 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  321 + showEnvVarsInLog = 0;
  322 + };
  323 + 3697CFF09F3860BA7BFE6FBE /* [CP] Embed Pods Frameworks */ = {
  324 + isa = PBXShellScriptBuildPhase;
  325 + buildActionMask = 2147483647;
  326 + files = (
  327 + );
  328 + inputFileListPaths = (
  329 + );
  330 + inputPaths = (
  331 + "${SRCROOT}/Pods/Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example-frameworks.sh",
  332 + "${BUILT_PRODUCTS_DIR}/CNLiveEmptyView/CNLiveEmptyView.framework",
  333 + "${BUILT_PRODUCTS_DIR}/QMUIKit/QMUIKit.framework",
  334 + );
  335 + name = "[CP] Embed Pods Frameworks";
  336 + outputFileListPaths = (
  337 + );
  338 + outputPaths = (
  339 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveEmptyView.framework",
  340 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QMUIKit.framework",
  341 + );
  342 + runOnlyForDeploymentPostprocessing = 0;
  343 + shellPath = /bin/sh;
  344 + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example-frameworks.sh\"\n";
  345 + showEnvVarsInLog = 0;
  346 + };
  347 + 385F16755218D2F74828469C /* [CP] Check Pods Manifest.lock */ = {
  348 + isa = PBXShellScriptBuildPhase;
  349 + buildActionMask = 2147483647;
  350 + files = (
  351 + );
  352 + inputFileListPaths = (
  353 + );
  354 + inputPaths = (
  355 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  356 + "${PODS_ROOT}/Manifest.lock",
  357 + );
  358 + name = "[CP] Check Pods Manifest.lock";
  359 + outputFileListPaths = (
  360 + );
  361 + outputPaths = (
  362 + "$(DERIVED_FILE_DIR)/Pods-CNLiveEmptyView_Example-checkManifestLockResult.txt",
  363 + );
  364 + runOnlyForDeploymentPostprocessing = 0;
  365 + shellPath = /bin/sh;
  366 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  367 + showEnvVarsInLog = 0;
  368 + };
  369 + A3388498433A34AFF7A5F0D4 /* [CP] Embed Pods Frameworks */ = {
  370 + isa = PBXShellScriptBuildPhase;
  371 + buildActionMask = 2147483647;
  372 + files = (
  373 + );
  374 + inputFileListPaths = (
  375 + );
  376 + inputPaths = (
  377 + "${SRCROOT}/Pods/Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests-frameworks.sh",
  378 + "${BUILT_PRODUCTS_DIR}/QMUIKit/QMUIKit.framework",
  379 + );
  380 + name = "[CP] Embed Pods Frameworks";
  381 + outputFileListPaths = (
  382 + );
  383 + outputPaths = (
  384 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QMUIKit.framework",
  385 + );
  386 + runOnlyForDeploymentPostprocessing = 0;
  387 + shellPath = /bin/sh;
  388 + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests-frameworks.sh\"\n";
  389 + showEnvVarsInLog = 0;
  390 + };
  391 +/* End PBXShellScriptBuildPhase section */
  392 +
  393 +/* Begin PBXSourcesBuildPhase section */
  394 + 6003F586195388D20070C39A /* Sources */ = {
  395 + isa = PBXSourcesBuildPhase;
  396 + buildActionMask = 2147483647;
  397 + files = (
  398 + 6003F59E195388D20070C39A /* CNLiveAppDelegate.m in Sources */,
  399 + 6003F5A7195388D20070C39A /* CNLiveViewController.m in Sources */,
  400 + 6003F59A195388D20070C39A /* main.m in Sources */,
  401 + );
  402 + runOnlyForDeploymentPostprocessing = 0;
  403 + };
  404 + 6003F5AA195388D20070C39A /* Sources */ = {
  405 + isa = PBXSourcesBuildPhase;
  406 + buildActionMask = 2147483647;
  407 + files = (
  408 + 6003F5BC195388D20070C39A /* Tests.m in Sources */,
  409 + );
  410 + runOnlyForDeploymentPostprocessing = 0;
  411 + };
  412 +/* End PBXSourcesBuildPhase section */
  413 +
  414 +/* Begin PBXTargetDependency section */
  415 + 6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
  416 + isa = PBXTargetDependency;
  417 + target = 6003F589195388D20070C39A /* CNLiveEmptyView_Example */;
  418 + targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
  419 + };
  420 +/* End PBXTargetDependency section */
  421 +
  422 +/* Begin PBXVariantGroup section */
  423 + 6003F596195388D20070C39A /* InfoPlist.strings */ = {
  424 + isa = PBXVariantGroup;
  425 + children = (
  426 + 6003F597195388D20070C39A /* en */,
  427 + );
  428 + name = InfoPlist.strings;
  429 + sourceTree = "<group>";
  430 + };
  431 + 6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
  432 + isa = PBXVariantGroup;
  433 + children = (
  434 + 6003F5B9195388D20070C39A /* en */,
  435 + );
  436 + name = InfoPlist.strings;
  437 + sourceTree = "<group>";
  438 + };
  439 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
  440 + isa = PBXVariantGroup;
  441 + children = (
  442 + 71719F9E1E33DC2100824A3D /* Base */,
  443 + );
  444 + name = LaunchScreen.storyboard;
  445 + sourceTree = "<group>";
  446 + };
  447 +/* End PBXVariantGroup section */
  448 +
  449 +/* Begin XCBuildConfiguration section */
  450 + 6003F5BD195388D20070C39A /* Debug */ = {
  451 + isa = XCBuildConfiguration;
  452 + buildSettings = {
  453 + ALWAYS_SEARCH_USER_PATHS = NO;
  454 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  455 + CLANG_CXX_LIBRARY = "libc++";
  456 + CLANG_ENABLE_MODULES = YES;
  457 + CLANG_ENABLE_OBJC_ARC = YES;
  458 + CLANG_WARN_BOOL_CONVERSION = YES;
  459 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  460 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  461 + CLANG_WARN_EMPTY_BODY = YES;
  462 + CLANG_WARN_ENUM_CONVERSION = YES;
  463 + CLANG_WARN_INT_CONVERSION = YES;
  464 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  465 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  466 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  467 + COPY_PHASE_STRIP = NO;
  468 + ENABLE_TESTABILITY = YES;
  469 + GCC_C_LANGUAGE_STANDARD = gnu99;
  470 + GCC_DYNAMIC_NO_PIC = NO;
  471 + GCC_OPTIMIZATION_LEVEL = 0;
  472 + GCC_PREPROCESSOR_DEFINITIONS = (
  473 + "DEBUG=1",
  474 + "$(inherited)",
  475 + );
  476 + GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  477 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  478 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  479 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  480 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  481 + GCC_WARN_UNUSED_FUNCTION = YES;
  482 + GCC_WARN_UNUSED_VARIABLE = YES;
  483 + IPHONEOS_DEPLOYMENT_TARGET = 9.3;
  484 + ONLY_ACTIVE_ARCH = YES;
  485 + SDKROOT = iphoneos;
  486 + TARGETED_DEVICE_FAMILY = "1,2";
  487 + };
  488 + name = Debug;
  489 + };
  490 + 6003F5BE195388D20070C39A /* Release */ = {
  491 + isa = XCBuildConfiguration;
  492 + buildSettings = {
  493 + ALWAYS_SEARCH_USER_PATHS = NO;
  494 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  495 + CLANG_CXX_LIBRARY = "libc++";
  496 + CLANG_ENABLE_MODULES = YES;
  497 + CLANG_ENABLE_OBJC_ARC = YES;
  498 + CLANG_WARN_BOOL_CONVERSION = YES;
  499 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  500 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  501 + CLANG_WARN_EMPTY_BODY = YES;
  502 + CLANG_WARN_ENUM_CONVERSION = YES;
  503 + CLANG_WARN_INT_CONVERSION = YES;
  504 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  505 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  506 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  507 + COPY_PHASE_STRIP = YES;
  508 + ENABLE_NS_ASSERTIONS = NO;
  509 + GCC_C_LANGUAGE_STANDARD = gnu99;
  510 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  511 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  512 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  513 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  514 + GCC_WARN_UNUSED_FUNCTION = YES;
  515 + GCC_WARN_UNUSED_VARIABLE = YES;
  516 + IPHONEOS_DEPLOYMENT_TARGET = 9.3;
  517 + SDKROOT = iphoneos;
  518 + TARGETED_DEVICE_FAMILY = "1,2";
  519 + VALIDATE_PRODUCT = YES;
  520 + };
  521 + name = Release;
  522 + };
  523 + 6003F5C0195388D20070C39A /* Debug */ = {
  524 + isa = XCBuildConfiguration;
  525 + baseConfigurationReference = 9121B6F09522AAF5F79684D1 /* Pods-CNLiveEmptyView_Example.debug.xcconfig */;
  526 + buildSettings = {
  527 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  528 + DEVELOPMENT_TEAM = 94X49GG3ZW;
  529 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  530 + GCC_PREFIX_HEADER = "CNLiveEmptyView/CNLiveEmptyView-Prefix.pch";
  531 + INFOPLIST_FILE = "CNLiveEmptyView/CNLiveEmptyView-Info.plist";
  532 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  533 + MODULE_NAME = ExampleApp;
  534 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  535 + PRODUCT_NAME = "$(TARGET_NAME)";
  536 + WRAPPER_EXTENSION = app;
  537 + };
  538 + name = Debug;
  539 + };
  540 + 6003F5C1195388D20070C39A /* Release */ = {
  541 + isa = XCBuildConfiguration;
  542 + baseConfigurationReference = 9105AFB549AE9AD5FB00DB3B /* Pods-CNLiveEmptyView_Example.release.xcconfig */;
  543 + buildSettings = {
  544 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  545 + DEVELOPMENT_TEAM = 94X49GG3ZW;
  546 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  547 + GCC_PREFIX_HEADER = "CNLiveEmptyView/CNLiveEmptyView-Prefix.pch";
  548 + INFOPLIST_FILE = "CNLiveEmptyView/CNLiveEmptyView-Info.plist";
  549 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  550 + MODULE_NAME = ExampleApp;
  551 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  552 + PRODUCT_NAME = "$(TARGET_NAME)";
  553 + WRAPPER_EXTENSION = app;
  554 + };
  555 + name = Release;
  556 + };
  557 + 6003F5C3195388D20070C39A /* Debug */ = {
  558 + isa = XCBuildConfiguration;
  559 + baseConfigurationReference = DFF8D75290EA4129AF4290B3 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */;
  560 + buildSettings = {
  561 + BUNDLE_LOADER = "$(TEST_HOST)";
  562 + FRAMEWORK_SEARCH_PATHS = (
  563 + "$(SDKROOT)/Developer/Library/Frameworks",
  564 + "$(inherited)",
  565 + "$(DEVELOPER_FRAMEWORKS_DIR)",
  566 + );
  567 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  568 + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
  569 + GCC_PREPROCESSOR_DEFINITIONS = (
  570 + "DEBUG=1",
  571 + "$(inherited)",
  572 + );
  573 + INFOPLIST_FILE = "Tests/Tests-Info.plist";
  574 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  575 + PRODUCT_NAME = "$(TARGET_NAME)";
  576 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CNLiveEmptyView_Example.app/CNLiveEmptyView_Example";
  577 + WRAPPER_EXTENSION = xctest;
  578 + };
  579 + name = Debug;
  580 + };
  581 + 6003F5C4195388D20070C39A /* Release */ = {
  582 + isa = XCBuildConfiguration;
  583 + baseConfigurationReference = 8016DE73B4317A28329B19BE /* Pods-CNLiveEmptyView_Tests.release.xcconfig */;
  584 + buildSettings = {
  585 + BUNDLE_LOADER = "$(TEST_HOST)";
  586 + FRAMEWORK_SEARCH_PATHS = (
  587 + "$(SDKROOT)/Developer/Library/Frameworks",
  588 + "$(inherited)",
  589 + "$(DEVELOPER_FRAMEWORKS_DIR)",
  590 + );
  591 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  592 + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
  593 + INFOPLIST_FILE = "Tests/Tests-Info.plist";
  594 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  595 + PRODUCT_NAME = "$(TARGET_NAME)";
  596 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CNLiveEmptyView_Example.app/CNLiveEmptyView_Example";
  597 + WRAPPER_EXTENSION = xctest;
  598 + };
  599 + name = Release;
  600 + };
  601 +/* End XCBuildConfiguration section */
  602 +
  603 +/* Begin XCConfigurationList section */
  604 + 6003F585195388D10070C39A /* Build configuration list for PBXProject "CNLiveEmptyView" */ = {
  605 + isa = XCConfigurationList;
  606 + buildConfigurations = (
  607 + 6003F5BD195388D20070C39A /* Debug */,
  608 + 6003F5BE195388D20070C39A /* Release */,
  609 + );
  610 + defaultConfigurationIsVisible = 0;
  611 + defaultConfigurationName = Release;
  612 + };
  613 + 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "CNLiveEmptyView_Example" */ = {
  614 + isa = XCConfigurationList;
  615 + buildConfigurations = (
  616 + 6003F5C0195388D20070C39A /* Debug */,
  617 + 6003F5C1195388D20070C39A /* Release */,
  618 + );
  619 + defaultConfigurationIsVisible = 0;
  620 + defaultConfigurationName = Release;
  621 + };
  622 + 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "CNLiveEmptyView_Tests" */ = {
  623 + isa = XCConfigurationList;
  624 + buildConfigurations = (
  625 + 6003F5C3195388D20070C39A /* Debug */,
  626 + 6003F5C4195388D20070C39A /* Release */,
  627 + );
  628 + defaultConfigurationIsVisible = 0;
  629 + defaultConfigurationName = Release;
  630 + };
  631 +/* End XCConfigurationList section */
  632 + };
  633 + rootObject = 6003F582195388D10070C39A /* Project object */;
  634 +}
... ...
Example/CNLiveEmptyView.xcodeproj/project.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/CNLiveEmptyView.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:CNLiveEmptyView.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
... ...
Example/CNLiveEmptyView.xcodeproj/xcshareddata/xcschemes/CNLiveEmptyView-Example.xcscheme 0 → 100644
  1 +++ a/Example/CNLiveEmptyView.xcodeproj/xcshareddata/xcschemes/CNLiveEmptyView-Example.xcscheme
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "0720"
  4 + version = "1.3">
  5 + <BuildAction
  6 + parallelizeBuildables = "YES"
  7 + buildImplicitDependencies = "YES">
  8 + <BuildActionEntries>
  9 + <BuildActionEntry
  10 + buildForTesting = "YES"
  11 + buildForRunning = "YES"
  12 + buildForProfiling = "YES"
  13 + buildForArchiving = "YES"
  14 + buildForAnalyzing = "YES">
  15 + <BuildableReference
  16 + BuildableIdentifier = "primary"
  17 + BlueprintIdentifier = "6003F589195388D20070C39A"
  18 + BuildableName = "CNLiveEmptyView_Example.app"
  19 + BlueprintName = "CNLiveEmptyView_Example"
  20 + ReferencedContainer = "container:CNLiveEmptyView.xcodeproj">
  21 + </BuildableReference>
  22 + </BuildActionEntry>
  23 + </BuildActionEntries>
  24 + </BuildAction>
  25 + <TestAction
  26 + buildConfiguration = "Debug"
  27 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  28 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  29 + shouldUseLaunchSchemeArgsEnv = "YES">
  30 + <Testables>
  31 + <TestableReference
  32 + skipped = "NO">
  33 + <BuildableReference
  34 + BuildableIdentifier = "primary"
  35 + BlueprintIdentifier = "6003F5AD195388D20070C39A"
  36 + BuildableName = "CNLiveEmptyView_Tests.xctest"
  37 + BlueprintName = "CNLiveEmptyView_Tests"
  38 + ReferencedContainer = "container:CNLiveEmptyView.xcodeproj">
  39 + </BuildableReference>
  40 + </TestableReference>
  41 + </Testables>
  42 + <MacroExpansion>
  43 + <BuildableReference
  44 + BuildableIdentifier = "primary"
  45 + BlueprintIdentifier = "6003F589195388D20070C39A"
  46 + BuildableName = "CNLiveEmptyView_Example.app"
  47 + BlueprintName = "CNLiveEmptyView_Example"
  48 + ReferencedContainer = "container:CNLiveEmptyView.xcodeproj">
  49 + </BuildableReference>
  50 + </MacroExpansion>
  51 + <AdditionalOptions>
  52 + </AdditionalOptions>
  53 + </TestAction>
  54 + <LaunchAction
  55 + buildConfiguration = "Debug"
  56 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  57 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  58 + launchStyle = "0"
  59 + useCustomWorkingDirectory = "NO"
  60 + ignoresPersistentStateOnLaunch = "NO"
  61 + debugDocumentVersioning = "YES"
  62 + debugServiceExtension = "internal"
  63 + allowLocationSimulation = "YES">
  64 + <BuildableProductRunnable
  65 + runnableDebuggingMode = "0">
  66 + <BuildableReference
  67 + BuildableIdentifier = "primary"
  68 + BlueprintIdentifier = "6003F589195388D20070C39A"
  69 + BuildableName = "CNLiveEmptyView_Example.app"
  70 + BlueprintName = "CNLiveEmptyView_Example"
  71 + ReferencedContainer = "container:CNLiveEmptyView.xcodeproj">
  72 + </BuildableReference>
  73 + </BuildableProductRunnable>
  74 + <AdditionalOptions>
  75 + </AdditionalOptions>
  76 + </LaunchAction>
  77 + <ProfileAction
  78 + buildConfiguration = "Release"
  79 + shouldUseLaunchSchemeArgsEnv = "YES"
  80 + savedToolIdentifier = ""
  81 + useCustomWorkingDirectory = "NO"
  82 + debugDocumentVersioning = "YES">
  83 + <BuildableProductRunnable
  84 + runnableDebuggingMode = "0">
  85 + <BuildableReference
  86 + BuildableIdentifier = "primary"
  87 + BlueprintIdentifier = "6003F589195388D20070C39A"
  88 + BuildableName = "CNLiveEmptyView_Example.app"
  89 + BlueprintName = "CNLiveEmptyView_Example"
  90 + ReferencedContainer = "container:CNLiveEmptyView.xcodeproj">
  91 + </BuildableReference>
  92 + </BuildableProductRunnable>
  93 + </ProfileAction>
  94 + <AnalyzeAction
  95 + buildConfiguration = "Debug">
  96 + </AnalyzeAction>
  97 + <ArchiveAction
  98 + buildConfiguration = "Release"
  99 + revealArchiveInOrganizer = "YES">
  100 + </ArchiveAction>
  101 +</Scheme>
... ...
Example/CNLiveEmptyView.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/CNLiveEmptyView.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "group:CNLiveEmptyView.xcodeproj">
  6 + </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
  10 +</Workspace>
... ...
Example/CNLiveEmptyView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 0 → 100644
  1 +++ a/Example/CNLiveEmptyView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>IDEDidComputeMac32BitWarning</key>
  6 + <true/>
  7 +</dict>
  8 +</plist>
... ...
Example/CNLiveEmptyView/Base.lproj/LaunchScreen.storyboard 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/Base.lproj/LaunchScreen.storyboard
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
  3 + <device id="retina4_7" orientation="portrait">
  4 + <adaptation id="fullscreen"/>
  5 + </device>
  6 + <dependencies>
  7 + <deployment identifier="iOS"/>
  8 + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
  9 + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10 + </dependencies>
  11 + <scenes>
  12 + <!--View Controller-->
  13 + <scene sceneID="EHf-IW-A2E">
  14 + <objects>
  15 + <viewController id="01J-lp-oVM" sceneMemberID="viewController">
  16 + <layoutGuides>
  17 + <viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
  18 + <viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
  19 + </layoutGuides>
  20 + <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
  21 + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  22 + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  23 + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  24 + </view>
  25 + </viewController>
  26 + <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
  27 + </objects>
  28 + <point key="canvasLocation" x="53" y="375"/>
  29 + </scene>
  30 + </scenes>
  31 +</document>
... ...
Example/CNLiveEmptyView/Base.lproj/Main.storyboard 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/Base.lproj/Main.storyboard
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="whP-gf-Uak">
  3 + <device id="retina4_7" orientation="portrait">
  4 + <adaptation id="fullscreen"/>
  5 + </device>
  6 + <dependencies>
  7 + <deployment identifier="iOS"/>
  8 + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
  9 + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10 + </dependencies>
  11 + <scenes>
  12 + <!--View Controller-->
  13 + <scene sceneID="wQg-tq-qST">
  14 + <objects>
  15 + <viewController id="whP-gf-Uak" customClass="CNLiveViewController" sceneMemberID="viewController">
  16 + <layoutGuides>
  17 + <viewControllerLayoutGuide type="top" id="uEw-UM-LJ8"/>
  18 + <viewControllerLayoutGuide type="bottom" id="Mvr-aV-6Um"/>
  19 + </layoutGuides>
  20 + <view key="view" contentMode="scaleToFill" id="TpU-gO-2f1">
  21 + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  22 + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  23 + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  24 + </view>
  25 + </viewController>
  26 + <placeholder placeholderIdentifier="IBFirstResponder" id="tc2-Qw-aMS" userLabel="First Responder" sceneMemberID="firstResponder"/>
  27 + </objects>
  28 + <point key="canvasLocation" x="305" y="433"/>
  29 + </scene>
  30 + </scenes>
  31 +</document>
... ...
Example/CNLiveEmptyView/CNLiveAppDelegate.h 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/CNLiveAppDelegate.h
  1 +//
  2 +// CNLiveAppDelegate.h
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 12/28/2018.
  6 +// Copyright (c) 2018 殷巧娟. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface CNLiveAppDelegate : UIResponder <UIApplicationDelegate>
  12 +
  13 +@property (strong, nonatomic) UIWindow *window;
  14 +
  15 +@end
... ...
Example/CNLiveEmptyView/CNLiveAppDelegate.m 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/CNLiveAppDelegate.m
  1 +//
  2 +// CNLiveAppDelegate.m
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 12/28/2018.
  6 +// Copyright (c) 2018 殷巧娟. All rights reserved.
  7 +//
  8 +
  9 +#import "CNLiveAppDelegate.h"
  10 +
  11 +@implementation CNLiveAppDelegate
  12 +
  13 +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  14 +{
  15 + // Override point for customization after application launch.
  16 + return YES;
  17 +}
  18 +
  19 +- (void)applicationWillResignActive:(UIApplication *)application
  20 +{
  21 + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
  22 + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
  23 +}
  24 +
  25 +- (void)applicationDidEnterBackground:(UIApplication *)application
  26 +{
  27 + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
  28 + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  29 +}
  30 +
  31 +- (void)applicationWillEnterForeground:(UIApplication *)application
  32 +{
  33 + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
  34 +}
  35 +
  36 +- (void)applicationDidBecomeActive:(UIApplication *)application
  37 +{
  38 + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  39 +}
  40 +
  41 +- (void)applicationWillTerminate:(UIApplication *)application
  42 +{
  43 + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  44 +}
  45 +
  46 +@end
... ...
Example/CNLiveEmptyView/CNLiveEmptyView-Info.plist 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/CNLiveEmptyView-Info.plist
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>CFBundleDevelopmentRegion</key>
  6 + <string>en</string>
  7 + <key>CFBundleDisplayName</key>
  8 + <string>${PRODUCT_NAME}</string>
  9 + <key>CFBundleExecutable</key>
  10 + <string>${EXECUTABLE_NAME}</string>
  11 + <key>CFBundleIdentifier</key>
  12 + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  13 + <key>CFBundleInfoDictionaryVersion</key>
  14 + <string>6.0</string>
  15 + <key>CFBundleName</key>
  16 + <string>${PRODUCT_NAME}</string>
  17 + <key>CFBundlePackageType</key>
  18 + <string>APPL</string>
  19 + <key>CFBundleShortVersionString</key>
  20 + <string>1.0</string>
  21 + <key>CFBundleSignature</key>
  22 + <string>????</string>
  23 + <key>CFBundleVersion</key>
  24 + <string>1.0</string>
  25 + <key>LSRequiresIPhoneOS</key>
  26 + <true/>
  27 + <key>UILaunchStoryboardName</key>
  28 + <string>LaunchScreen</string>
  29 + <key>UIMainStoryboardFile</key>
  30 + <string>Main</string>
  31 + <key>UIRequiredDeviceCapabilities</key>
  32 + <array>
  33 + <string>armv7</string>
  34 + </array>
  35 + <key>UISupportedInterfaceOrientations</key>
  36 + <array>
  37 + <string>UIInterfaceOrientationPortrait</string>
  38 + <string>UIInterfaceOrientationLandscapeLeft</string>
  39 + <string>UIInterfaceOrientationLandscapeRight</string>
  40 + </array>
  41 + <key>UISupportedInterfaceOrientations~ipad</key>
  42 + <array>
  43 + <string>UIInterfaceOrientationPortrait</string>
  44 + <string>UIInterfaceOrientationPortraitUpsideDown</string>
  45 + <string>UIInterfaceOrientationLandscapeLeft</string>
  46 + <string>UIInterfaceOrientationLandscapeRight</string>
  47 + </array>
  48 +</dict>
  49 +</plist>
... ...
Example/CNLiveEmptyView/CNLiveEmptyView-Prefix.pch 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/CNLiveEmptyView-Prefix.pch
  1 +//
  2 +// Prefix header
  3 +//
  4 +// The contents of this file are implicitly included at the beginning of every source file.
  5 +//
  6 +
  7 +#import <Availability.h>
  8 +
  9 +#ifndef __IPHONE_5_0
  10 +#warning "This project uses features only available in iOS SDK 5.0 and later."
  11 +#endif
  12 +
  13 +#ifdef __OBJC__
  14 + @import UIKit;
  15 + @import Foundation;
  16 +#endif
... ...
Example/CNLiveEmptyView/CNLiveViewController.h 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/CNLiveViewController.h
  1 +//
  2 +// CNLiveViewController.h
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 12/28/2018.
  6 +// Copyright (c) 2018 殷巧娟. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +
  11 +@interface CNLiveViewController : UIViewController
  12 +
  13 +@end
... ...
Example/CNLiveEmptyView/CNLiveViewController.m 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/CNLiveViewController.m
  1 +//
  2 +// CNLiveViewController.m
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 12/28/2018.
  6 +// Copyright (c) 2018 殷巧娟. All rights reserved.
  7 +//
  8 +
  9 +#import "CNLiveViewController.h"
  10 +@interface CNLiveViewController ()
  11 +
  12 +@end
  13 +
  14 +@implementation CNLiveViewController
  15 +
  16 +- (void)viewDidLoad
  17 +{
  18 + [super viewDidLoad];
  19 + // Do any additional setup after loading the view, typically from a nib.
  20 +}
  21 +
  22 +- (void)didReceiveMemoryWarning
  23 +{
  24 + [super didReceiveMemoryWarning];
  25 + // Dispose of any resources that can be recreated.
  26 +}
  27 +
  28 +@end
... ...
Example/CNLiveEmptyView/Images.xcassets/AppIcon.appiconset/Contents.json 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/Images.xcassets/AppIcon.appiconset/Contents.json
  1 +{
  2 + "images" : [
  3 + {
  4 + "idiom" : "iphone",
  5 + "size" : "20x20",
  6 + "scale" : "2x"
  7 + },
  8 + {
  9 + "idiom" : "iphone",
  10 + "size" : "20x20",
  11 + "scale" : "3x"
  12 + },
  13 + {
  14 + "idiom" : "iphone",
  15 + "size" : "29x29",
  16 + "scale" : "2x"
  17 + },
  18 + {
  19 + "idiom" : "iphone",
  20 + "size" : "29x29",
  21 + "scale" : "3x"
  22 + },
  23 + {
  24 + "idiom" : "iphone",
  25 + "size" : "40x40",
  26 + "scale" : "2x"
  27 + },
  28 + {
  29 + "idiom" : "iphone",
  30 + "size" : "40x40",
  31 + "scale" : "3x"
  32 + },
  33 + {
  34 + "idiom" : "iphone",
  35 + "size" : "60x60",
  36 + "scale" : "2x"
  37 + },
  38 + {
  39 + "idiom" : "iphone",
  40 + "size" : "60x60",
  41 + "scale" : "3x"
  42 + },
  43 + {
  44 + "idiom" : "ipad",
  45 + "size" : "20x20",
  46 + "scale" : "1x"
  47 + },
  48 + {
  49 + "idiom" : "ipad",
  50 + "size" : "20x20",
  51 + "scale" : "2x"
  52 + },
  53 + {
  54 + "idiom" : "ipad",
  55 + "size" : "29x29",
  56 + "scale" : "1x"
  57 + },
  58 + {
  59 + "idiom" : "ipad",
  60 + "size" : "29x29",
  61 + "scale" : "2x"
  62 + },
  63 + {
  64 + "idiom" : "ipad",
  65 + "size" : "40x40",
  66 + "scale" : "1x"
  67 + },
  68 + {
  69 + "idiom" : "ipad",
  70 + "size" : "40x40",
  71 + "scale" : "2x"
  72 + },
  73 + {
  74 + "idiom" : "ipad",
  75 + "size" : "76x76",
  76 + "scale" : "1x"
  77 + },
  78 + {
  79 + "idiom" : "ipad",
  80 + "size" : "76x76",
  81 + "scale" : "2x"
  82 + },
  83 + {
  84 + "idiom" : "ipad",
  85 + "size" : "83.5x83.5",
  86 + "scale" : "2x"
  87 + },
  88 + {
  89 + "idiom" : "ios-marketing",
  90 + "size" : "1024x1024",
  91 + "scale" : "1x"
  92 + }
  93 + ],
  94 + "info" : {
  95 + "version" : 1,
  96 + "author" : "xcode"
  97 + }
  98 +}
... ...
Example/CNLiveEmptyView/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
... ...
Example/CNLiveEmptyView/main.m 0 → 100644
  1 +++ a/Example/CNLiveEmptyView/main.m
  1 +//
  2 +// main.m
  3 +// CNLiveEmptyView
  4 +//
  5 +// Created by 殷巧娟 on 12/28/2018.
  6 +// Copyright (c) 2018 殷巧娟. All rights reserved.
  7 +//
  8 +
  9 +@import UIKit;
  10 +#import "CNLiveAppDelegate.h"
  11 +
  12 +int main(int argc, char * argv[])
  13 +{
  14 + @autoreleasepool {
  15 + return UIApplicationMain(argc, argv, nil, NSStringFromClass([CNLiveAppDelegate class]));
  16 + }
  17 +}
... ...
Example/Podfile 0 → 100644
  1 +++ a/Example/Podfile
  1 +use_frameworks!
  2 +
  3 +platform :ios, '9.0'
  4 +
  5 +target 'CNLiveEmptyView_Example' do
  6 + pod 'CNLiveEmptyView', :path => '../'
  7 + pod 'QMUIKit'
  8 +
  9 + target 'CNLiveEmptyView_Tests' do
  10 + inherit! :search_paths
  11 + pod 'QMUIKit'
  12 +
  13 + end
  14 +end
... ...
Example/Podfile.lock 0 → 100644
  1 +++ a/Example/Podfile.lock
  1 +PODS:
  2 + - CNLiveEmptyView (0.0.1):
  3 + - QMUIKit
  4 + - QMUIKit (2.9.3):
  5 + - QMUIKit/QMUIComponents (= 2.9.3)
  6 + - QMUIKit/QMUICore (= 2.9.3)
  7 + - QMUIKit/QMUILog (= 2.9.3)
  8 + - QMUIKit/QMUIMainFrame (= 2.9.3)
  9 + - QMUIKit/QMUIResources (= 2.9.3)
  10 + - QMUIKit/QMUIWeakObjectContainer (= 2.9.3)
  11 + - QMUIKit/QMUIComponents (2.9.3):
  12 + - QMUIKit/QMUIComponents/NavigationBarTransition (= 2.9.3)
  13 + - QMUIKit/QMUIComponents/QMUIAlertController (= 2.9.3)
  14 + - QMUIKit/QMUIComponents/QMUIAssetLibrary (= 2.9.3)
  15 + - QMUIKit/QMUIComponents/QMUIBadge (= 2.9.3)
  16 + - QMUIKit/QMUIComponents/QMUIButton (= 2.9.3)
  17 + - QMUIKit/QMUIComponents/QMUICAAnimationExtension (= 2.9.3)
  18 + - QMUIKit/QMUIComponents/QMUICellHeightCache (= 2.9.3)
  19 + - QMUIKit/QMUIComponents/QMUICellHeightKeyCache (= 2.9.3)
  20 + - QMUIKit/QMUIComponents/QMUICellSizeKeyCache (= 2.9.3)
  21 + - QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout (= 2.9.3)
  22 + - QMUIKit/QMUIComponents/QMUIDialogViewController (= 2.9.3)
  23 + - QMUIKit/QMUIComponents/QMUIEmotionInputManager (= 2.9.3)
  24 + - QMUIKit/QMUIComponents/QMUIEmotionView (= 2.9.3)
  25 + - QMUIKit/QMUIComponents/QMUIEmptyView (= 2.9.3)
  26 + - QMUIKit/QMUIComponents/QMUIFillButton (= 2.9.3)
  27 + - QMUIKit/QMUIComponents/QMUIFloatLayoutView (= 2.9.3)
  28 + - QMUIKit/QMUIComponents/QMUIGhostButton (= 2.9.3)
  29 + - QMUIKit/QMUIComponents/QMUIGridView (= 2.9.3)
  30 + - QMUIKit/QMUIComponents/QMUIImagePickerLibrary (= 2.9.3)
  31 + - QMUIKit/QMUIComponents/QMUIImagePreviewView (= 2.9.3)
  32 + - QMUIKit/QMUIComponents/QMUIKeyboardManager (= 2.9.3)
  33 + - QMUIKit/QMUIComponents/QMUILabel (= 2.9.3)
  34 + - QMUIKit/QMUIComponents/QMUILinkButton (= 2.9.3)
  35 + - QMUIKit/QMUIComponents/QMUILogManagerViewController (= 2.9.3)
  36 + - QMUIKit/QMUIComponents/QMUILogWithConfigurationSupported (= 2.9.3)
  37 + - QMUIKit/QMUIComponents/QMUIMarqueeLabel (= 2.9.3)
  38 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController (= 2.9.3)
  39 + - QMUIKit/QMUIComponents/QMUIMoreOperationController (= 2.9.3)
  40 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates (= 2.9.3)
  41 + - QMUIKit/QMUIComponents/QMUINavigationButton (= 2.9.3)
  42 + - QMUIKit/QMUIComponents/QMUINavigationTitleView (= 2.9.3)
  43 + - QMUIKit/QMUIComponents/QMUIOrderedDictionary (= 2.9.3)
  44 + - QMUIKit/QMUIComponents/QMUIPieProgressView (= 2.9.3)
  45 + - QMUIKit/QMUIComponents/QMUIPopupContainerView (= 2.9.3)
  46 + - QMUIKit/QMUIComponents/QMUIPopupMenuView (= 2.9.3)
  47 + - QMUIKit/QMUIComponents/QMUIScrollAnimator (= 2.9.3)
  48 + - QMUIKit/QMUIComponents/QMUISearchBar (= 2.9.3)
  49 + - QMUIKit/QMUIComponents/QMUISearchController (= 2.9.3)
  50 + - QMUIKit/QMUIComponents/QMUISegmentedControl (= 2.9.3)
  51 + - QMUIKit/QMUIComponents/QMUISlider (= 2.9.3)
  52 + - QMUIKit/QMUIComponents/QMUIStaticTableView (= 2.9.3)
  53 + - QMUIKit/QMUIComponents/QMUITableView (= 2.9.3)
  54 + - QMUIKit/QMUIComponents/QMUITableViewCell (= 2.9.3)
  55 + - QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView (= 2.9.3)
  56 + - QMUIKit/QMUIComponents/QMUITableViewProtocols (= 2.9.3)
  57 + - QMUIKit/QMUIComponents/QMUITestView (= 2.9.3)
  58 + - QMUIKit/QMUIComponents/QMUITextField (= 2.9.3)
  59 + - QMUIKit/QMUIComponents/QMUITextView (= 2.9.3)
  60 + - QMUIKit/QMUIComponents/QMUITips (= 2.9.3)
  61 + - QMUIKit/QMUIComponents/QMUIToastView (= 2.9.3)
  62 + - QMUIKit/QMUIComponents/QMUIToolbarButton (= 2.9.3)
  63 + - QMUIKit/QMUIComponents/QMUIVisualEffectView (= 2.9.3)
  64 + - QMUIKit/QMUIComponents/QMUIZoomImageView (= 2.9.3)
  65 + - QMUIKit/QMUICore
  66 + - QMUIKit/QMUIComponents/NavigationBarTransition (2.9.3):
  67 + - QMUIKit/QMUIComponents/QMUINavigationTitleView
  68 + - QMUIKit/QMUICore
  69 + - QMUIKit/QMUIMainFrame
  70 + - QMUIKit/QMUIComponents/QMUIAlertController (2.9.3):
  71 + - QMUIKit/QMUIComponents/QMUIButton
  72 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController
  73 + - QMUIKit/QMUIComponents/QMUITextField
  74 + - QMUIKit/QMUICore
  75 + - QMUIKit/QMUIComponents/QMUIAssetLibrary (2.9.3):
  76 + - QMUIKit/QMUICore
  77 + - QMUIKit/QMUIComponents/QMUIBadge (2.9.3):
  78 + - QMUIKit/QMUIComponents/QMUILabel
  79 + - QMUIKit/QMUICore
  80 + - QMUIKit/QMUIComponents/QMUIButton (2.9.3):
  81 + - QMUIKit/QMUICore
  82 + - QMUIKit/QMUIComponents/QMUICAAnimationExtension (2.9.3):
  83 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  84 + - QMUIKit/QMUICore
  85 + - QMUIKit/QMUIComponents/QMUICellHeightCache (2.9.3):
  86 + - QMUIKit/QMUIComponents/QMUITableViewProtocols
  87 + - QMUIKit/QMUICore
  88 + - QMUIKit/QMUIComponents/QMUICellHeightKeyCache (2.9.3):
  89 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  90 + - QMUIKit/QMUIComponents/QMUITableViewProtocols
  91 + - QMUIKit/QMUICore
  92 + - QMUIKit/QMUIComponents/QMUICellSizeKeyCache (2.9.3):
  93 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  94 + - QMUIKit/QMUICore
  95 + - QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout (2.9.3):
  96 + - QMUIKit/QMUICore
  97 + - QMUIKit/QMUIComponents/QMUIDialogViewController (2.9.3):
  98 + - QMUIKit/QMUIComponents/QMUIButton
  99 + - QMUIKit/QMUIComponents/QMUILabel
  100 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController
  101 + - QMUIKit/QMUIComponents/QMUINavigationTitleView
  102 + - QMUIKit/QMUIComponents/QMUITableView
  103 + - QMUIKit/QMUIComponents/QMUITableViewCell
  104 + - QMUIKit/QMUIComponents/QMUITextField
  105 + - QMUIKit/QMUICore
  106 + - QMUIKit/QMUIMainFrame
  107 + - QMUIKit/QMUIComponents/QMUIEmotionInputManager (2.9.3):
  108 + - QMUIKit/QMUIComponents/QMUIEmotionView
  109 + - QMUIKit/QMUICore
  110 + - QMUIKit/QMUIComponents/QMUIEmotionView (2.9.3):
  111 + - QMUIKit/QMUIComponents/QMUIButton
  112 + - QMUIKit/QMUICore
  113 + - QMUIKit/QMUIResources
  114 + - QMUIKit/QMUIComponents/QMUIEmptyView (2.9.3):
  115 + - QMUIKit/QMUIComponents/QMUIButton
  116 + - QMUIKit/QMUICore
  117 + - QMUIKit/QMUIComponents/QMUIFillButton (2.9.3):
  118 + - QMUIKit/QMUIComponents/QMUIButton
  119 + - QMUIKit/QMUICore
  120 + - QMUIKit/QMUIComponents/QMUIFloatLayoutView (2.9.3):
  121 + - QMUIKit/QMUICore
  122 + - QMUIKit/QMUIComponents/QMUIGhostButton (2.9.3):
  123 + - QMUIKit/QMUIComponents/QMUIButton
  124 + - QMUIKit/QMUICore
  125 + - QMUIKit/QMUIComponents/QMUIGridView (2.9.3):
  126 + - QMUIKit/QMUICore
  127 + - QMUIKit/QMUIComponents/QMUIImagePickerLibrary (2.9.3):
  128 + - QMUIKit/QMUIComponents/QMUIAlertController
  129 + - QMUIKit/QMUIComponents/QMUIAssetLibrary
  130 + - QMUIKit/QMUIComponents/QMUIButton
  131 + - QMUIKit/QMUIComponents/QMUIEmptyView
  132 + - QMUIKit/QMUIComponents/QMUIImagePreviewView
  133 + - QMUIKit/QMUIComponents/QMUINavigationButton
  134 + - QMUIKit/QMUIComponents/QMUITableViewCell
  135 + - QMUIKit/QMUIComponents/QMUIZoomImageView
  136 + - QMUIKit/QMUICore
  137 + - QMUIKit/QMUIMainFrame
  138 + - QMUIKit/QMUIResources
  139 + - QMUIKit/QMUIComponents/QMUIImagePreviewView (2.9.3):
  140 + - QMUIKit/QMUIComponents/QMUIButton
  141 + - QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout
  142 + - QMUIKit/QMUIComponents/QMUIEmptyView
  143 + - QMUIKit/QMUIComponents/QMUIPieProgressView
  144 + - QMUIKit/QMUIComponents/QMUIZoomImageView
  145 + - QMUIKit/QMUICore
  146 + - QMUIKit/QMUIMainFrame
  147 + - QMUIKit/QMUIComponents/QMUIKeyboardManager (2.9.3):
  148 + - QMUIKit/QMUICore
  149 + - QMUIKit/QMUIComponents/QMUILabel (2.9.3):
  150 + - QMUIKit/QMUICore
  151 + - QMUIKit/QMUIComponents/QMUILinkButton (2.9.3):
  152 + - QMUIKit/QMUIComponents/QMUIButton
  153 + - QMUIKit/QMUICore
  154 + - QMUIKit/QMUIComponents/QMUILogManagerViewController (2.9.3):
  155 + - QMUIKit/QMUIComponents/QMUIPopupMenuView
  156 + - QMUIKit/QMUIComponents/QMUISearchController
  157 + - QMUIKit/QMUIComponents/QMUIStaticTableView
  158 + - QMUIKit/QMUIComponents/QMUITableView
  159 + - QMUIKit/QMUICore
  160 + - QMUIKit/QMUIMainFrame
  161 + - QMUIKit/QMUIComponents/QMUILogWithConfigurationSupported (2.9.3):
  162 + - QMUIKit/QMUICore
  163 + - QMUIKit/QMUIComponents/QMUIMarqueeLabel (2.9.3):
  164 + - QMUIKit/QMUICore
  165 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController (2.9.3):
  166 + - QMUIKit/QMUIComponents/QMUIKeyboardManager
  167 + - QMUIKit/QMUICore
  168 + - QMUIKit/QMUIComponents/QMUIMoreOperationController (2.9.3):
  169 + - QMUIKit/QMUIComponents/QMUIButton
  170 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController
  171 + - QMUIKit/QMUICore
  172 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates (2.9.3):
  173 + - QMUIKit/QMUICore
  174 + - QMUIKit/QMUIComponents/QMUINavigationButton (2.9.3):
  175 + - QMUIKit/QMUICore
  176 + - QMUIKit/QMUIMainFrame
  177 + - QMUIKit/QMUIComponents/QMUINavigationTitleView (2.9.3):
  178 + - QMUIKit/QMUIComponents/QMUIButton
  179 + - QMUIKit/QMUICore
  180 + - QMUIKit/QMUIComponents/QMUIOrderedDictionary (2.9.3):
  181 + - QMUIKit/QMUICore
  182 + - QMUIKit/QMUIComponents/QMUIPieProgressView (2.9.3):
  183 + - QMUIKit/QMUICore
  184 + - QMUIKit/QMUIComponents/QMUIPopupContainerView (2.9.3):
  185 + - QMUIKit/QMUICore
  186 + - QMUIKit/QMUIMainFrame
  187 + - QMUIKit/QMUIComponents/QMUIPopupMenuView (2.9.3):
  188 + - QMUIKit/QMUIComponents/QMUIButton
  189 + - QMUIKit/QMUIComponents/QMUIPopupContainerView
  190 + - QMUIKit/QMUICore
  191 + - QMUIKit/QMUIComponents/QMUIScrollAnimator (2.9.3):
  192 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  193 + - QMUIKit/QMUICore
  194 + - QMUIKit/QMUIComponents/QMUISearchBar (2.9.3):
  195 + - QMUIKit/QMUICore
  196 + - QMUIKit/QMUIComponents/QMUISearchController (2.9.3):
  197 + - QMUIKit/QMUIComponents/QMUIEmptyView
  198 + - QMUIKit/QMUIComponents/QMUISearchBar
  199 + - QMUIKit/QMUICore
  200 + - QMUIKit/QMUIMainFrame
  201 + - QMUIKit/QMUIComponents/QMUISegmentedControl (2.9.3):
  202 + - QMUIKit/QMUICore
  203 + - QMUIKit/QMUIComponents/QMUISlider (2.9.3):
  204 + - QMUIKit/QMUICore
  205 + - QMUIKit/QMUIComponents/QMUIStaticTableView (2.9.3):
  206 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  207 + - QMUIKit/QMUIComponents/QMUITableViewCell
  208 + - QMUIKit/QMUICore
  209 + - QMUIKit/QMUIComponents/QMUITableView (2.9.3):
  210 + - QMUIKit/QMUIComponents/QMUITableViewProtocols
  211 + - QMUIKit/QMUICore
  212 + - QMUIKit/QMUIComponents/QMUITableViewCell (2.9.3):
  213 + - QMUIKit/QMUIComponents/QMUIButton
  214 + - QMUIKit/QMUICore
  215 + - QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView (2.9.3):
  216 + - QMUIKit/QMUICore
  217 + - QMUIKit/QMUIComponents/QMUITableViewProtocols (2.9.3):
  218 + - QMUIKit/QMUICore
  219 + - QMUIKit/QMUIComponents/QMUITestView (2.9.3):
  220 + - QMUIKit/QMUICore
  221 + - QMUIKit/QMUIComponents/QMUITextField (2.9.3):
  222 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  223 + - QMUIKit/QMUICore
  224 + - QMUIKit/QMUIComponents/QMUITextView (2.9.3):
  225 + - QMUIKit/QMUIComponents/QMUILabel
  226 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  227 + - QMUIKit/QMUICore
  228 + - QMUIKit/QMUIComponents/QMUITips (2.9.3):
  229 + - QMUIKit/QMUIComponents/QMUIToastView
  230 + - QMUIKit/QMUICore
  231 + - QMUIKit/QMUIResources
  232 + - QMUIKit/QMUIComponents/QMUIToastView (2.9.3):
  233 + - QMUIKit/QMUIComponents/QMUIKeyboardManager
  234 + - QMUIKit/QMUICore
  235 + - QMUIKit/QMUIComponents/QMUIToolbarButton (2.9.3):
  236 + - QMUIKit/QMUICore
  237 + - QMUIKit/QMUIComponents/QMUIVisualEffectView (2.9.3):
  238 + - QMUIKit/QMUICore
  239 + - QMUIKit/QMUIComponents/QMUIZoomImageView (2.9.3):
  240 + - QMUIKit/QMUIComponents/QMUIAssetLibrary
  241 + - QMUIKit/QMUIComponents/QMUIButton
  242 + - QMUIKit/QMUIComponents/QMUIEmptyView
  243 + - QMUIKit/QMUIComponents/QMUIPieProgressView
  244 + - QMUIKit/QMUIComponents/QMUISlider
  245 + - QMUIKit/QMUICore
  246 + - QMUIKit/QMUICore (2.9.3):
  247 + - QMUIKit/QMUILog
  248 + - QMUIKit/QMUIWeakObjectContainer
  249 + - QMUIKit/QMUILog (2.9.3)
  250 + - QMUIKit/QMUIMainFrame (2.9.3):
  251 + - QMUIKit/QMUIComponents/QMUIEmptyView
  252 + - QMUIKit/QMUIComponents/QMUIKeyboardManager
  253 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  254 + - QMUIKit/QMUIComponents/QMUINavigationTitleView
  255 + - QMUIKit/QMUIComponents/QMUITableView
  256 + - QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView
  257 + - QMUIKit/QMUICore
  258 + - QMUIKit/QMUILog
  259 + - QMUIKit/QMUIResources (2.9.3)
  260 + - QMUIKit/QMUIWeakObjectContainer (2.9.3)
  261 +
  262 +DEPENDENCIES:
  263 + - CNLiveEmptyView (from `../`)
  264 + - QMUIKit
  265 +
  266 +SPEC REPOS:
  267 + https://github.com/cocoapods/specs.git:
  268 + - QMUIKit
  269 +
  270 +EXTERNAL SOURCES:
  271 + CNLiveEmptyView:
  272 + :path: "../"
  273 +
  274 +SPEC CHECKSUMS:
  275 + CNLiveEmptyView: 5d4d9d24bb55b66442b0349853b4b272eb76450f
  276 + QMUIKit: 5b8f0a3ab60e42af1310bd40a6fe1b54d612d15c
  277 +
  278 +PODFILE CHECKSUM: f9dcbfc4404eab992a0350b4d63a05cf922abc72
  279 +
  280 +COCOAPODS: 1.5.3
... ...
Example/Pods/Local Podspecs/CNLiveEmptyView.podspec.json 0 → 100644
  1 +++ a/Example/Pods/Local Podspecs/CNLiveEmptyView.podspec.json
  1 +{
  2 + "name": "CNLiveEmptyView",
  3 + "version": "0.0.1",
  4 + "summary": "封装QMUI空View",
  5 + "description": "TODO: Add long description of the pod here.",
  6 + "homepage": "http://bj.gitlab.cnlive.com/ios-team/CNLiveEmptyView",
  7 + "license": {
  8 + "type": "MIT",
  9 + "file": "LICENSE"
  10 + },
  11 + "authors": {
  12 + "殷巧娟": "1427945373@qq.com"
  13 + },
  14 + "source": {
  15 + "git": "http://bj.gitlab.cnlive.com/ios-team/CNLiveEmptyView.git",
  16 + "tag": "0.0.1"
  17 + },
  18 + "platforms": {
  19 + "ios": "9.0"
  20 + },
  21 + "source_files": "CNLiveEmptyView/Classes/**/*",
  22 + "frameworks": [
  23 + "UIKit",
  24 + "Foundation"
  25 + ],
  26 + "dependencies": {
  27 + "QMUIKit": [
  28 +
  29 + ]
  30 + }
  31 +}
... ...
Example/Pods/Manifest.lock 0 → 100644
  1 +++ a/Example/Pods/Manifest.lock
  1 +PODS:
  2 + - CNLiveEmptyView (0.0.1):
  3 + - QMUIKit
  4 + - QMUIKit (2.9.3):
  5 + - QMUIKit/QMUIComponents (= 2.9.3)
  6 + - QMUIKit/QMUICore (= 2.9.3)
  7 + - QMUIKit/QMUILog (= 2.9.3)
  8 + - QMUIKit/QMUIMainFrame (= 2.9.3)
  9 + - QMUIKit/QMUIResources (= 2.9.3)
  10 + - QMUIKit/QMUIWeakObjectContainer (= 2.9.3)
  11 + - QMUIKit/QMUIComponents (2.9.3):
  12 + - QMUIKit/QMUIComponents/NavigationBarTransition (= 2.9.3)
  13 + - QMUIKit/QMUIComponents/QMUIAlertController (= 2.9.3)
  14 + - QMUIKit/QMUIComponents/QMUIAssetLibrary (= 2.9.3)
  15 + - QMUIKit/QMUIComponents/QMUIBadge (= 2.9.3)
  16 + - QMUIKit/QMUIComponents/QMUIButton (= 2.9.3)
  17 + - QMUIKit/QMUIComponents/QMUICAAnimationExtension (= 2.9.3)
  18 + - QMUIKit/QMUIComponents/QMUICellHeightCache (= 2.9.3)
  19 + - QMUIKit/QMUIComponents/QMUICellHeightKeyCache (= 2.9.3)
  20 + - QMUIKit/QMUIComponents/QMUICellSizeKeyCache (= 2.9.3)
  21 + - QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout (= 2.9.3)
  22 + - QMUIKit/QMUIComponents/QMUIDialogViewController (= 2.9.3)
  23 + - QMUIKit/QMUIComponents/QMUIEmotionInputManager (= 2.9.3)
  24 + - QMUIKit/QMUIComponents/QMUIEmotionView (= 2.9.3)
  25 + - QMUIKit/QMUIComponents/QMUIEmptyView (= 2.9.3)
  26 + - QMUIKit/QMUIComponents/QMUIFillButton (= 2.9.3)
  27 + - QMUIKit/QMUIComponents/QMUIFloatLayoutView (= 2.9.3)
  28 + - QMUIKit/QMUIComponents/QMUIGhostButton (= 2.9.3)
  29 + - QMUIKit/QMUIComponents/QMUIGridView (= 2.9.3)
  30 + - QMUIKit/QMUIComponents/QMUIImagePickerLibrary (= 2.9.3)
  31 + - QMUIKit/QMUIComponents/QMUIImagePreviewView (= 2.9.3)
  32 + - QMUIKit/QMUIComponents/QMUIKeyboardManager (= 2.9.3)
  33 + - QMUIKit/QMUIComponents/QMUILabel (= 2.9.3)
  34 + - QMUIKit/QMUIComponents/QMUILinkButton (= 2.9.3)
  35 + - QMUIKit/QMUIComponents/QMUILogManagerViewController (= 2.9.3)
  36 + - QMUIKit/QMUIComponents/QMUILogWithConfigurationSupported (= 2.9.3)
  37 + - QMUIKit/QMUIComponents/QMUIMarqueeLabel (= 2.9.3)
  38 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController (= 2.9.3)
  39 + - QMUIKit/QMUIComponents/QMUIMoreOperationController (= 2.9.3)
  40 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates (= 2.9.3)
  41 + - QMUIKit/QMUIComponents/QMUINavigationButton (= 2.9.3)
  42 + - QMUIKit/QMUIComponents/QMUINavigationTitleView (= 2.9.3)
  43 + - QMUIKit/QMUIComponents/QMUIOrderedDictionary (= 2.9.3)
  44 + - QMUIKit/QMUIComponents/QMUIPieProgressView (= 2.9.3)
  45 + - QMUIKit/QMUIComponents/QMUIPopupContainerView (= 2.9.3)
  46 + - QMUIKit/QMUIComponents/QMUIPopupMenuView (= 2.9.3)
  47 + - QMUIKit/QMUIComponents/QMUIScrollAnimator (= 2.9.3)
  48 + - QMUIKit/QMUIComponents/QMUISearchBar (= 2.9.3)
  49 + - QMUIKit/QMUIComponents/QMUISearchController (= 2.9.3)
  50 + - QMUIKit/QMUIComponents/QMUISegmentedControl (= 2.9.3)
  51 + - QMUIKit/QMUIComponents/QMUISlider (= 2.9.3)
  52 + - QMUIKit/QMUIComponents/QMUIStaticTableView (= 2.9.3)
  53 + - QMUIKit/QMUIComponents/QMUITableView (= 2.9.3)
  54 + - QMUIKit/QMUIComponents/QMUITableViewCell (= 2.9.3)
  55 + - QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView (= 2.9.3)
  56 + - QMUIKit/QMUIComponents/QMUITableViewProtocols (= 2.9.3)
  57 + - QMUIKit/QMUIComponents/QMUITestView (= 2.9.3)
  58 + - QMUIKit/QMUIComponents/QMUITextField (= 2.9.3)
  59 + - QMUIKit/QMUIComponents/QMUITextView (= 2.9.3)
  60 + - QMUIKit/QMUIComponents/QMUITips (= 2.9.3)
  61 + - QMUIKit/QMUIComponents/QMUIToastView (= 2.9.3)
  62 + - QMUIKit/QMUIComponents/QMUIToolbarButton (= 2.9.3)
  63 + - QMUIKit/QMUIComponents/QMUIVisualEffectView (= 2.9.3)
  64 + - QMUIKit/QMUIComponents/QMUIZoomImageView (= 2.9.3)
  65 + - QMUIKit/QMUICore
  66 + - QMUIKit/QMUIComponents/NavigationBarTransition (2.9.3):
  67 + - QMUIKit/QMUIComponents/QMUINavigationTitleView
  68 + - QMUIKit/QMUICore
  69 + - QMUIKit/QMUIMainFrame
  70 + - QMUIKit/QMUIComponents/QMUIAlertController (2.9.3):
  71 + - QMUIKit/QMUIComponents/QMUIButton
  72 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController
  73 + - QMUIKit/QMUIComponents/QMUITextField
  74 + - QMUIKit/QMUICore
  75 + - QMUIKit/QMUIComponents/QMUIAssetLibrary (2.9.3):
  76 + - QMUIKit/QMUICore
  77 + - QMUIKit/QMUIComponents/QMUIBadge (2.9.3):
  78 + - QMUIKit/QMUIComponents/QMUILabel
  79 + - QMUIKit/QMUICore
  80 + - QMUIKit/QMUIComponents/QMUIButton (2.9.3):
  81 + - QMUIKit/QMUICore
  82 + - QMUIKit/QMUIComponents/QMUICAAnimationExtension (2.9.3):
  83 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  84 + - QMUIKit/QMUICore
  85 + - QMUIKit/QMUIComponents/QMUICellHeightCache (2.9.3):
  86 + - QMUIKit/QMUIComponents/QMUITableViewProtocols
  87 + - QMUIKit/QMUICore
  88 + - QMUIKit/QMUIComponents/QMUICellHeightKeyCache (2.9.3):
  89 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  90 + - QMUIKit/QMUIComponents/QMUITableViewProtocols
  91 + - QMUIKit/QMUICore
  92 + - QMUIKit/QMUIComponents/QMUICellSizeKeyCache (2.9.3):
  93 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  94 + - QMUIKit/QMUICore
  95 + - QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout (2.9.3):
  96 + - QMUIKit/QMUICore
  97 + - QMUIKit/QMUIComponents/QMUIDialogViewController (2.9.3):
  98 + - QMUIKit/QMUIComponents/QMUIButton
  99 + - QMUIKit/QMUIComponents/QMUILabel
  100 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController
  101 + - QMUIKit/QMUIComponents/QMUINavigationTitleView
  102 + - QMUIKit/QMUIComponents/QMUITableView
  103 + - QMUIKit/QMUIComponents/QMUITableViewCell
  104 + - QMUIKit/QMUIComponents/QMUITextField
  105 + - QMUIKit/QMUICore
  106 + - QMUIKit/QMUIMainFrame
  107 + - QMUIKit/QMUIComponents/QMUIEmotionInputManager (2.9.3):
  108 + - QMUIKit/QMUIComponents/QMUIEmotionView
  109 + - QMUIKit/QMUICore
  110 + - QMUIKit/QMUIComponents/QMUIEmotionView (2.9.3):
  111 + - QMUIKit/QMUIComponents/QMUIButton
  112 + - QMUIKit/QMUICore
  113 + - QMUIKit/QMUIResources
  114 + - QMUIKit/QMUIComponents/QMUIEmptyView (2.9.3):
  115 + - QMUIKit/QMUIComponents/QMUIButton
  116 + - QMUIKit/QMUICore
  117 + - QMUIKit/QMUIComponents/QMUIFillButton (2.9.3):
  118 + - QMUIKit/QMUIComponents/QMUIButton
  119 + - QMUIKit/QMUICore
  120 + - QMUIKit/QMUIComponents/QMUIFloatLayoutView (2.9.3):
  121 + - QMUIKit/QMUICore
  122 + - QMUIKit/QMUIComponents/QMUIGhostButton (2.9.3):
  123 + - QMUIKit/QMUIComponents/QMUIButton
  124 + - QMUIKit/QMUICore
  125 + - QMUIKit/QMUIComponents/QMUIGridView (2.9.3):
  126 + - QMUIKit/QMUICore
  127 + - QMUIKit/QMUIComponents/QMUIImagePickerLibrary (2.9.3):
  128 + - QMUIKit/QMUIComponents/QMUIAlertController
  129 + - QMUIKit/QMUIComponents/QMUIAssetLibrary
  130 + - QMUIKit/QMUIComponents/QMUIButton
  131 + - QMUIKit/QMUIComponents/QMUIEmptyView
  132 + - QMUIKit/QMUIComponents/QMUIImagePreviewView
  133 + - QMUIKit/QMUIComponents/QMUINavigationButton
  134 + - QMUIKit/QMUIComponents/QMUITableViewCell
  135 + - QMUIKit/QMUIComponents/QMUIZoomImageView
  136 + - QMUIKit/QMUICore
  137 + - QMUIKit/QMUIMainFrame
  138 + - QMUIKit/QMUIResources
  139 + - QMUIKit/QMUIComponents/QMUIImagePreviewView (2.9.3):
  140 + - QMUIKit/QMUIComponents/QMUIButton
  141 + - QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout
  142 + - QMUIKit/QMUIComponents/QMUIEmptyView
  143 + - QMUIKit/QMUIComponents/QMUIPieProgressView
  144 + - QMUIKit/QMUIComponents/QMUIZoomImageView
  145 + - QMUIKit/QMUICore
  146 + - QMUIKit/QMUIMainFrame
  147 + - QMUIKit/QMUIComponents/QMUIKeyboardManager (2.9.3):
  148 + - QMUIKit/QMUICore
  149 + - QMUIKit/QMUIComponents/QMUILabel (2.9.3):
  150 + - QMUIKit/QMUICore
  151 + - QMUIKit/QMUIComponents/QMUILinkButton (2.9.3):
  152 + - QMUIKit/QMUIComponents/QMUIButton
  153 + - QMUIKit/QMUICore
  154 + - QMUIKit/QMUIComponents/QMUILogManagerViewController (2.9.3):
  155 + - QMUIKit/QMUIComponents/QMUIPopupMenuView
  156 + - QMUIKit/QMUIComponents/QMUISearchController
  157 + - QMUIKit/QMUIComponents/QMUIStaticTableView
  158 + - QMUIKit/QMUIComponents/QMUITableView
  159 + - QMUIKit/QMUICore
  160 + - QMUIKit/QMUIMainFrame
  161 + - QMUIKit/QMUIComponents/QMUILogWithConfigurationSupported (2.9.3):
  162 + - QMUIKit/QMUICore
  163 + - QMUIKit/QMUIComponents/QMUIMarqueeLabel (2.9.3):
  164 + - QMUIKit/QMUICore
  165 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController (2.9.3):
  166 + - QMUIKit/QMUIComponents/QMUIKeyboardManager
  167 + - QMUIKit/QMUICore
  168 + - QMUIKit/QMUIComponents/QMUIMoreOperationController (2.9.3):
  169 + - QMUIKit/QMUIComponents/QMUIButton
  170 + - QMUIKit/QMUIComponents/QMUIModalPresentationViewController
  171 + - QMUIKit/QMUICore
  172 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates (2.9.3):
  173 + - QMUIKit/QMUICore
  174 + - QMUIKit/QMUIComponents/QMUINavigationButton (2.9.3):
  175 + - QMUIKit/QMUICore
  176 + - QMUIKit/QMUIMainFrame
  177 + - QMUIKit/QMUIComponents/QMUINavigationTitleView (2.9.3):
  178 + - QMUIKit/QMUIComponents/QMUIButton
  179 + - QMUIKit/QMUICore
  180 + - QMUIKit/QMUIComponents/QMUIOrderedDictionary (2.9.3):
  181 + - QMUIKit/QMUICore
  182 + - QMUIKit/QMUIComponents/QMUIPieProgressView (2.9.3):
  183 + - QMUIKit/QMUICore
  184 + - QMUIKit/QMUIComponents/QMUIPopupContainerView (2.9.3):
  185 + - QMUIKit/QMUICore
  186 + - QMUIKit/QMUIMainFrame
  187 + - QMUIKit/QMUIComponents/QMUIPopupMenuView (2.9.3):
  188 + - QMUIKit/QMUIComponents/QMUIButton
  189 + - QMUIKit/QMUIComponents/QMUIPopupContainerView
  190 + - QMUIKit/QMUICore
  191 + - QMUIKit/QMUIComponents/QMUIScrollAnimator (2.9.3):
  192 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  193 + - QMUIKit/QMUICore
  194 + - QMUIKit/QMUIComponents/QMUISearchBar (2.9.3):
  195 + - QMUIKit/QMUICore
  196 + - QMUIKit/QMUIComponents/QMUISearchController (2.9.3):
  197 + - QMUIKit/QMUIComponents/QMUIEmptyView
  198 + - QMUIKit/QMUIComponents/QMUISearchBar
  199 + - QMUIKit/QMUICore
  200 + - QMUIKit/QMUIMainFrame
  201 + - QMUIKit/QMUIComponents/QMUISegmentedControl (2.9.3):
  202 + - QMUIKit/QMUICore
  203 + - QMUIKit/QMUIComponents/QMUISlider (2.9.3):
  204 + - QMUIKit/QMUICore
  205 + - QMUIKit/QMUIComponents/QMUIStaticTableView (2.9.3):
  206 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  207 + - QMUIKit/QMUIComponents/QMUITableViewCell
  208 + - QMUIKit/QMUICore
  209 + - QMUIKit/QMUIComponents/QMUITableView (2.9.3):
  210 + - QMUIKit/QMUIComponents/QMUITableViewProtocols
  211 + - QMUIKit/QMUICore
  212 + - QMUIKit/QMUIComponents/QMUITableViewCell (2.9.3):
  213 + - QMUIKit/QMUIComponents/QMUIButton
  214 + - QMUIKit/QMUICore
  215 + - QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView (2.9.3):
  216 + - QMUIKit/QMUICore
  217 + - QMUIKit/QMUIComponents/QMUITableViewProtocols (2.9.3):
  218 + - QMUIKit/QMUICore
  219 + - QMUIKit/QMUIComponents/QMUITestView (2.9.3):
  220 + - QMUIKit/QMUICore
  221 + - QMUIKit/QMUIComponents/QMUITextField (2.9.3):
  222 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  223 + - QMUIKit/QMUICore
  224 + - QMUIKit/QMUIComponents/QMUITextView (2.9.3):
  225 + - QMUIKit/QMUIComponents/QMUILabel
  226 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  227 + - QMUIKit/QMUICore
  228 + - QMUIKit/QMUIComponents/QMUITips (2.9.3):
  229 + - QMUIKit/QMUIComponents/QMUIToastView
  230 + - QMUIKit/QMUICore
  231 + - QMUIKit/QMUIResources
  232 + - QMUIKit/QMUIComponents/QMUIToastView (2.9.3):
  233 + - QMUIKit/QMUIComponents/QMUIKeyboardManager
  234 + - QMUIKit/QMUICore
  235 + - QMUIKit/QMUIComponents/QMUIToolbarButton (2.9.3):
  236 + - QMUIKit/QMUICore
  237 + - QMUIKit/QMUIComponents/QMUIVisualEffectView (2.9.3):
  238 + - QMUIKit/QMUICore
  239 + - QMUIKit/QMUIComponents/QMUIZoomImageView (2.9.3):
  240 + - QMUIKit/QMUIComponents/QMUIAssetLibrary
  241 + - QMUIKit/QMUIComponents/QMUIButton
  242 + - QMUIKit/QMUIComponents/QMUIEmptyView
  243 + - QMUIKit/QMUIComponents/QMUIPieProgressView
  244 + - QMUIKit/QMUIComponents/QMUISlider
  245 + - QMUIKit/QMUICore
  246 + - QMUIKit/QMUICore (2.9.3):
  247 + - QMUIKit/QMUILog
  248 + - QMUIKit/QMUIWeakObjectContainer
  249 + - QMUIKit/QMUILog (2.9.3)
  250 + - QMUIKit/QMUIMainFrame (2.9.3):
  251 + - QMUIKit/QMUIComponents/QMUIEmptyView
  252 + - QMUIKit/QMUIComponents/QMUIKeyboardManager
  253 + - QMUIKit/QMUIComponents/QMUIMultipleDelegates
  254 + - QMUIKit/QMUIComponents/QMUINavigationTitleView
  255 + - QMUIKit/QMUIComponents/QMUITableView
  256 + - QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView
  257 + - QMUIKit/QMUICore
  258 + - QMUIKit/QMUILog
  259 + - QMUIKit/QMUIResources (2.9.3)
  260 + - QMUIKit/QMUIWeakObjectContainer (2.9.3)
  261 +
  262 +DEPENDENCIES:
  263 + - CNLiveEmptyView (from `../`)
  264 + - QMUIKit
  265 +
  266 +SPEC REPOS:
  267 + https://github.com/cocoapods/specs.git:
  268 + - QMUIKit
  269 +
  270 +EXTERNAL SOURCES:
  271 + CNLiveEmptyView:
  272 + :path: "../"
  273 +
  274 +SPEC CHECKSUMS:
  275 + CNLiveEmptyView: 5d4d9d24bb55b66442b0349853b4b272eb76450f
  276 + QMUIKit: 5b8f0a3ab60e42af1310bd40a6fe1b54d612d15c
  277 +
  278 +PODFILE CHECKSUM: f9dcbfc4404eab992a0350b4d63a05cf922abc72
  279 +
  280 +COCOAPODS: 1.5.3
... ...
Example/Pods/Pods.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 01E7B512A066BD221732CEDBE99EFBA5 /* NSObject+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FBA584E8D69023B04F3E9C0EE13AC4B /* NSObject+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  11 + 03AD3B056545F6F314B2AD2D8B18F38F /* UILabel+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFE6C0338FF14F776ED05B848791DEE /* UILabel+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  12 + 041D318B110F9AC41214BE407744F3DC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; };
  13 + 042E8EB554366AB197C7D13EB14C3D62 /* QMUINavigationTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF0C172B9B16B8CADFB100C4ECC6B51 /* QMUINavigationTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  14 + 06183E502B4C592FE7A3B5EBD100D7D8 /* UIFont+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B138AD96E6F55D5CEE18B43FFEB0E09 /* UIFont+QMUI.m */; };
  15 + 06C41B356F787F43EB7296C3DD0AF1D1 /* QMUIEmotionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FBCA193824C0876896D38178A616F51 /* QMUIEmotionView.m */; };
  16 + 07BEB44AA7ADF48B9670C5BF5A7D346B /* UITextField+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = B26FF42D767BB2E6A993A94EB30DBC29 /* UITextField+QMUI.m */; };
  17 + 0946FD563EA05D9F8F93A2A7F543D3AB /* UIViewController+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 165E0888868032EBFDE488DA7F0FD3C3 /* UIViewController+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  18 + 0968F6192A3DA5129212FF03FE8FEB2A /* CNLiveEmptyView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F7560AD693F83976234F0D45E9996E /* CNLiveEmptyView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  19 + 0C4EDDD500E4DD28BB95823F4FF2BE0E /* QMUICellHeightKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 00662AEF1699E1D4902BAD916450E34B /* QMUICellHeightKeyCache.m */; };
  20 + 0D657BB8801944CBC55602078E68992C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; };
  21 + 0F49C2178A6E6B172F5CA07334553CC9 /* QMUILogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2889BF54D43039E34ECE63FAC85D2E1D /* QMUILogger.h */; settings = {ATTRIBUTES = (Public, ); }; };
  22 + 0FC73C99FEE6A81E5009D4F2C3B66DFD /* QMUITestView.m in Sources */ = {isa = PBXBuildFile; fileRef = C136D7A96F6AEC6E04F9D7BB36CEF407 /* QMUITestView.m */; };
  23 + 10F5B85145D8B1289BAE97EAE0C74426 /* QMUIPieProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1932056E130DE52DD4D2C1FFEFF6488E /* QMUIPieProgressView.m */; };
  24 + 11556552E4D0C4A5864AB7CAFFEAC631 /* QMUIAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B1BAEBCC134F0E55931EE8FD6285F9 /* QMUIAlertController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  25 + 11A6AF711CA2813D33E793E86D1E012A /* UINavigationController+NavigationBarTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DE6E1E6FCDCFB243945ADA92A0F6AB5 /* UINavigationController+NavigationBarTransition.m */; };
  26 + 127020520F5A7FE2A3784679CDEB8A2C /* QMUILogItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AFA529D8BB06D207B0AFC4DB4C63B0 /* QMUILogItem.m */; };
  27 + 12963E4837FEE98129F4ABEFF16AE8FE /* QMUITableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAB1559AE486653A691314C4547EB1C /* QMUITableView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  28 + 12E2B7743DF3E1A70D60E4C3853F2972 /* QMUIImagePreviewViewTransitionAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = DD309F2F8CB5E37EA28A715D01C270FB /* QMUIImagePreviewViewTransitionAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
  29 + 14633DF331FE9018A02E7342724B044B /* QMUIImagePickerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0EEC5A4431089D9628CC12CE116626 /* QMUIImagePickerHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  30 + 1581075A2A5E9ADB633E6DAAD3EAA3B5 /* QMUIToastContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB0B08F81CB62FBC862DC4B8AD650F7 /* QMUIToastContentView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  31 + 15A3FE9F87BB0A861007EB50FD22EB07 /* UIImage+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1725A6198F32713C08CBA45F6AC827 /* UIImage+QMUI.m */; };
  32 + 16F91D845B2418F1D33C63AA046A87E6 /* NSCharacterSet+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D49056A96BBFFB26BA7E5221EC613C /* NSCharacterSet+QMUI.m */; };
  33 + 180FB456CF687FF6AEBFA75A5EDF6EEE /* QMUIToastAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F7830A031D621288EB25E7A6FD20C3 /* QMUIToastAnimator.m */; };
  34 + 18B51AE8AF73D0DD2A724A092F5093F5 /* UITableView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A0790F8B91ED97495544F4282217E4 /* UITableView+QMUI.m */; };
  35 + 193A4BAA332C9C89D95B5526B19F0AD8 /* QMUICore.h in Headers */ = {isa = PBXBuildFile; fileRef = 077AFA915EC01CA9175704F67FBCAFD0 /* QMUICore.h */; settings = {ATTRIBUTES = (Public, ); }; };
  36 + 19BA5FA86CEE218555B8658826319397 /* QMUICollectionViewPagingLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = E2977DDFBEF55ED13F4AF294B294CC36 /* QMUICollectionViewPagingLayout.h */; settings = {ATTRIBUTES = (Public, ); }; };
  37 + 1A36D47A6ED84D942B1976CE2ABED963 /* UITextView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD3C3E68F130B422DF3DACF69421296 /* UITextView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  38 + 1C521EF625B41357F0CB413827B7CD86 /* NSPointerArray+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = F6F657C9BD0220BD743C922AF5B222E9 /* NSPointerArray+QMUI.m */; };
  39 + 1D01F53D1E98E75C1955E1A78E8C859E /* QMUIDialogViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F1CE3B7EF800365F868727333DF157 /* QMUIDialogViewController.m */; };
  40 + 1DD173A80C0378E21D465DBA7861A99D /* UICollectionView+QMUICellSizeKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB6A17FB5E745A52EDC0FC41A4F8296 /* UICollectionView+QMUICellSizeKeyCache.m */; };
  41 + 216810392D04AC06C8813FF35C2CF72C /* CAAnimation+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 499EF5FE957D6D80D95323CB70730B6A /* CAAnimation+QMUI.m */; };
  42 + 21721B2A906821C1F1CE56FDC6897E59 /* NSURL+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D7951DD02F645C9086235BB4A8D5AD /* NSURL+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  43 + 22845717D7948B9126192ACD8BADACE1 /* QMUIToolbarButton.h in Headers */ = {isa = PBXBuildFile; fileRef = D423AE613459A02EF5750754E241E992 /* QMUIToolbarButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
  44 + 23C419A7BBF7D9ABF92E19C9B79DEC37 /* QMUILogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FDF4F1F4B6CBE02E67053FD29C9E39C /* QMUILogger.m */; };
  45 + 244CAA2D1C32860C73621E6041BDDF66 /* QMUIImagePickerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 161B95BB46BE053A3A86B78C869B9837 /* QMUIImagePickerViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  46 + 293CE73AABE88640487AD29E26636B63 /* QMUIResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 85932D487990FC072A12E9374F52C874 /* QMUIResources.bundle */; };
  47 + 2B20ED99B49E02EFF0C3C08B98FA9609 /* UIWindow+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = E86385A72F3BE692AC4018DB65885A7B /* UIWindow+QMUI.m */; };
  48 + 2B3307D5B5DB4765F3E7101CBA0A5A66 /* QMUIFillButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 1984A77A339279E570FDBFBBC4C3E7D3 /* QMUIFillButton.m */; };
  49 + 2BD65595552832A9C01155149BD8B08F /* UINavigationBar+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = DF8698EC7AE5965D0103956446E512B6 /* UINavigationBar+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  50 + 2BF5C2154EDC596664EF2824F4A5409A /* NSParagraphStyle+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 422D99FD1AC04F522A413CF7ADF124CF /* NSParagraphStyle+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  51 + 2C6F5C7EC31236A5061337E9FBB087B5 /* QMUIHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EAD16142E5A442F1D766F3A5D49BB0D /* QMUIHelper.m */; };
  52 + 2D4FD6A500B3AE311CFA3EEBA628C8CB /* UINavigationController+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = B69590567331243D21345E880160327D /* UINavigationController+QMUI.m */; };
  53 + 2DDDA60EAC8675DFC534A62251C03143 /* QMUILogger+QMUIConfigurationTemplate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D0850B301BEB3719C4A7D17FB2F40CA /* QMUILogger+QMUIConfigurationTemplate.h */; settings = {ATTRIBUTES = (Public, ); }; };
  54 + 2E2459B9AC5937C194C14448F138FA2C /* UIImage+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 25895284DB54A412962C0FF635786791 /* UIImage+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  55 + 2FBC225F35A70C8AFBFC5DA8587078DC /* UIBezierPath+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E8DF67EC99D97064B5BB52A25FD748D /* UIBezierPath+QMUI.m */; };
  56 + 2FD137EDACEFD17AE2234F7144E7ED31 /* QMUIButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EE0AF141F0E9AE7BF1C90592659BCB /* QMUIButton.m */; };
  57 + 30C23DF60924606DB435433359656B9B /* QMUIPopupMenuView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0738271D12A250FC4D6E98741E17AE42 /* QMUIPopupMenuView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  58 + 30D8BA4304B6D30F67E20B0F5ED2CE97 /* QMUIEmotionInputManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4994D415610E59E9DE52417033006E4 /* QMUIEmotionInputManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  59 + 31FD00A6D113A5314D116306D3A2E164 /* QMUIAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B3FE982FEADC65BEC00A71A527CE0D /* QMUIAsset.h */; settings = {ATTRIBUTES = (Public, ); }; };
  60 + 324C92F377B8D5EB6E14A299DCA00DF2 /* QMUIPieProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6C6D629E4E1A8B1398CEE675C71C62 /* QMUIPieProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  61 + 33DAB95F3359E906663B168B053BFF12 /* QMUIButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 287C336CDC48C5051F59D0FCF740229B /* QMUIButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
  62 + 34A7BC5221A8BD0118EC55244026C7C7 /* QMUIToastBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = BECC15D823DCF17DFB168444DD512D83 /* QMUIToastBackgroundView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  63 + 35D163D9D66833E34D252B2AE11E5D0C /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AEEFD6E48F6EC9A483894FD94DE6BB7 /* Photos.framework */; };
  64 + 37CC805CBC9818AC65B875A3207C4906 /* UICollectionView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B76C07B4297EEF730A63E8D1187E125 /* UICollectionView+QMUI.m */; };
  65 + 3957DBE30574212BE7F8A9788ED06175 /* QMUIImagePreviewView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFFF25B06592EA5C7EFA48A1258266B /* QMUIImagePreviewView.m */; };
  66 + 3A6582E5A5C7910944BE9B9C73F42A51 /* QMUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C43A7E5C626923A12C6FE74C0DF6B8F4 /* QMUITextField.h */; settings = {ATTRIBUTES = (Public, ); }; };
  67 + 3AD4E7946321C37CD401B684441A4799 /* QMUINavigationTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = E04880C0C33071DE92510CF3E4219816 /* QMUINavigationTitleView.m */; };
  68 + 3B80CAB1B7208530125377CEACE4BA1E /* QMUIFloatLayoutView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DBF896A7B31025FE2C6DC39E67F190 /* QMUIFloatLayoutView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  69 + 3F810AF22DAAB176E7556ED91633BCC6 /* QMUIPopupMenuBaseItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B8BA450A02AE3B1E5624D77632AB0F /* QMUIPopupMenuBaseItem.m */; };
  70 + 3FDD8BC5A3F641B0DBCE67D3D873E46A /* NSCharacterSet+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1342CAA536F1093670F70710BF2D0E8B /* NSCharacterSet+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  71 + 4127608B57F00089045F8AD7B1463D4D /* QMUINavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A048ACF092059565289CF4641A22005 /* QMUINavigationController.m */; };
  72 + 413E377BAD7E6FDE4359149C2CE2867B /* QMUITabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0FEFE801A14A45382A8A00A81443E19 /* QMUITabBarViewController.m */; };
  73 + 432CB84EB98638540AB1386A5F389FFF /* NSString+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = AE749EADDDFC3C0BCB54B92B97DC9A3E /* NSString+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  74 + 438A076ABC060A4244856AADF3C0BA10 /* QMUIEmptyView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4636F28001CE67ED9789F72ACB72D4DB /* QMUIEmptyView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  75 + 4397882D314ED50EC6E7622DB73310C9 /* QMUICommonViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FD366EEA95B02272042009FD3216960C /* QMUICommonViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  76 + 4456F51D7692C1759B9476DFB38D5D4B /* QMUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E71CD44B6575C425DF7CD11FFA361D8 /* QMUIKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
  77 + 4840535FFCA64938EF9867E66CCB1244 /* QMUIAssetsGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 36699F793146618678F7DC35307003BB /* QMUIAssetsGroup.m */; };
  78 + 484A97E777B74C8CE4A788F0C22FD4AC /* QMUISearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = A045DD906F8DDC43AA5B20073E0C4FB8 /* QMUISearchController.m */; };
  79 + 48B7E00B4F13EF83A0BF1C44E7142A5A /* QMUIVisualEffectView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB92BF234C24893E40E87322812BE854 /* QMUIVisualEffectView.m */; };
  80 + 49289143795B4EA0FAEB6348CE1D239F /* UIButton+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = B65B0B8E776B08BD1DE850C481CABC96 /* UIButton+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  81 + 495EA62F59A87AE8980C4AB4BC4184A0 /* QMUICellHeightKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D62F035D90C15C26B9622E7CEB8CA71 /* QMUICellHeightKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  82 + 49DA2BCEABFFBB57BB9F87F1B3D3F93C /* UIBarItem+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1777C15B5E4B64602B31CDE9D5B871DE /* UIBarItem+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  83 + 4C1A02885473223F6DDABAFE8FCC2CCD /* UITextView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 16B889D321AB2DCA20B101F81C77EB49 /* UITextView+QMUI.m */; };
  84 + 4C64B60D53B34F56E639392C9827A7E8 /* UITabBar+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 619519D7A09BA5CEA4266A2640B4581E /* UITabBar+QMUI.m */; };
  85 + 4D0F752F57706308001C77830B33DB3D /* QMUINavigationBarScrollingSnapAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FA6DD888FEE0F4F39ADB0658BDE578 /* QMUINavigationBarScrollingSnapAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
  86 + 4E33FFA73C8016DE464E94021E5AEF22 /* NSNumber+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = FF9FF34D4DFD43A9746700AFCFE9DFBD /* NSNumber+QMUI.m */; };
  87 + 5363D625C0EBE1EB3A81DF4CC1C97636 /* QMUIImagePickerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 5197D6245F70C0122146EB6DFD6F879B /* QMUIImagePickerHelper.m */; };
  88 + 5386B82B5D1F952034726981F704157E /* QMUIKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C61875C1C7CCD3C12C13552D6085CDC0 /* QMUIKit-dummy.m */; };
  89 + 53E0B2D677EC9C5083C7E7C22AC0A907 /* UIActivityIndicatorView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = F55C4429DF1417CDE5C08227ECFD97D2 /* UIActivityIndicatorView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  90 + 5594B6F17DCFC58E28CA9C48B92314F4 /* QMUIVisualEffectView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AB498BC41FC2118B18390DD86D8B85 /* QMUIVisualEffectView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  91 + 55A949806B22C97EAE000B1FE4475693 /* Pods-CNLiveEmptyView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 597F06210A5C4839F3A01FB6657CF5FE /* Pods-CNLiveEmptyView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  92 + 5618D4899FF529F0EE988E1097E2FEFA /* QMUISegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A396EC8BE89FD67361034654F7CFBB7F /* QMUISegmentedControl.h */; settings = {ATTRIBUTES = (Public, ); }; };
  93 + 567E58C50172F4C34536D689A38AEAC6 /* QMUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B054A6D940AF86C0A85D955EBEF8C9F /* QMUITextView.m */; };
  94 + 56B9648570F5CD30F8227A75CCFC7198 /* NSObject+QMUIMultipleDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = E4AD4D24307FD758878B3C7FD3F26715 /* NSObject+QMUIMultipleDelegates.m */; };
  95 + 57B5FB62EF642851329D9EA18B51ADC7 /* QMUIFloatLayoutView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F4F87282593B83C8B61D60308091E53 /* QMUIFloatLayoutView.m */; };
  96 + 5836CBE9D3EB3AD1F6BE58731BB5F740 /* UIButton+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B0AA544D03796CB11223A4816268340 /* UIButton+QMUI.m */; };
  97 + 5925A30354348C5382F12A9D84EC3E6D /* QMUIKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76039CB566391A6BA6AEBF7D9734C789 /* QMUIKeyboardManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  98 + 59E7E25D8A135EDACB7759F2C49F73C1 /* UIBarItem+QMUIBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 7664E1AFB598843452C5EE0DFDA2F90F /* UIBarItem+QMUIBadge.m */; };
  99 + 5B835A34D69F25B06E2D88CFC3B922C1 /* Pods-CNLiveEmptyView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 82CC725A02E5604CC03C146A8F0EC9F6 /* Pods-CNLiveEmptyView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  100 + 5C224EA7E589017AD93EEB9AEA283477 /* QMUISearchController.h in Headers */ = {isa = PBXBuildFile; fileRef = 327C8E15776D10CC335EE39D482F0B93 /* QMUISearchController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  101 + 5D194303E589FDF7340D2DD56032F71F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */; };
  102 + 5F0A41598DB8408CC2ABAD9A2E54BF50 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; };
  103 + 5F168C2431A1B549B591925585DE8AA5 /* QMUIToolbarButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D850ABD913ABEBD0DDB6DF2CED64C70 /* QMUIToolbarButton.m */; };
  104 + 600893FC4B6F8D5A98A6DEDBAC8CCC51 /* QMUIStaticTableViewCellDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE8BC108D919FB6CF683FF361AE29E /* QMUIStaticTableViewCellDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
  105 + 6020B0863DFB5A724E092DADCCC5A0B0 /* UIControl+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CDD7D98B71F997EEBCAB5336337C4E4 /* UIControl+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  106 + 602C1CEDDE9F3E1836DA451AACF32303 /* QMUIHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE3BE5E75CEA2213D2096157B25FF8B /* QMUIHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  107 + 602C8F2F532E98E9E59ED8C88E21C2A9 /* QMUIToastView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D444F54109B58C71D511822CCC3D70 /* QMUIToastView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  108 + 6087D3022F8163F4C6C48CF33756F2DD /* QMUIPopupMenuItemProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EABE85B0DD17D8D8919CE747722ED10C /* QMUIPopupMenuItemProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
  109 + 62FBEBCB65A3CBCB14C356B3241EB295 /* UINavigationBar+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC36AE2BBAAF6E062E1BB571A12DAC3 /* UINavigationBar+QMUI.m */; };
  110 + 6341376F11CA2761AE89A6A655AC8E2F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */; };
  111 + 63D07228A545BFB46A569500F9A72A2B /* NSObject+QMUIMultipleDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = B25FFA583216D9C9D2213A8B3C427C6A /* NSObject+QMUIMultipleDelegates.h */; settings = {ATTRIBUTES = (Public, ); }; };
  112 + 674FB071292ACC09A9B9A27FC62D8E87 /* QMUICellSizeKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F3B2BAD0624686F245F57504F8EFF273 /* QMUICellSizeKeyCache.m */; };
  113 + 68377240D1B6065E5ECE7B07FD1F7B34 /* NSArray+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBCC2CED44C83247713DE526F707C6A /* NSArray+QMUI.m */; };
  114 + 69DB19F67214F6D2CDCD4F0BE623DE4E /* QMUICommonTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 00838B8220BC4A9F6921DEDEF7C87BB5 /* QMUICommonTableViewController.m */; };
  115 + 6D98C492932E992464313867827C6E48 /* QMUIMarqueeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 02AE85186AFBED5626B4880AC416E72E /* QMUIMarqueeLabel.m */; };
  116 + 6DBF01A94C9EC969FBAE9E1ABAC630E3 /* QMUIZoomImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CF3F9562DD8C287DC6D2542A34FC724 /* QMUIZoomImageView.m */; };
  117 + 6F02A29C52AF5E9EC87A45B716AE1571 /* QMUITips.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DCC6A4BF711108367C04F5DE98D67FA /* QMUITips.h */; settings = {ATTRIBUTES = (Public, ); }; };
  118 + 6F4638A576D8B3C7445A474F348F301A /* UIBarItem+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 683062B5F72F6AEA59EF18E1D5578B30 /* UIBarItem+QMUI.m */; };
  119 + 72BF013DC2B8EE4144E227AE82CD4B61 /* UIViewController+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B383EFF233CC47CFE93E39E3A294B3 /* UIViewController+QMUI.m */; };
  120 + 737C47C102183E136966364AA36C7878 /* QMUIScrollAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 616D197C7043557D8CD03CAA163FF758 /* QMUIScrollAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
  121 + 742418CFB9338DA932419261BA325BCF /* QMUIMultipleDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = D537E9E21A1BAAB1E80CF579CBC55004 /* QMUIMultipleDelegates.m */; };
  122 + 750DE3C97B3A6464199B953549510A5E /* QMUIAssetsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8313B026D354228B21153842B59A48 /* QMUIAssetsManager.m */; };
  123 + 75D89F60DE950EFE2FC33BB75035A049 /* CNLiveEmptyView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A334B1B2B3B8CAA8E2FE0F3891203F57 /* CNLiveEmptyView-dummy.m */; };
  124 + 7757DA73A69BFB706DA1C1884866DE43 /* QMUIModalPresentationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E952A4B8FB69C74700E00F99EDDEF51 /* QMUIModalPresentationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  125 + 7942A4267F55B45E41424307CD48841C /* QMUIImagePreviewViewTransitionAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C89055ECCB57B3A56318F598C5CA28 /* QMUIImagePreviewViewTransitionAnimator.m */; };
  126 + 7CF44DAA17716138552A66DB1CB450F3 /* QMUISlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1901C9CC0A5C3032FC01AAB002057BBC /* QMUISlider.h */; settings = {ATTRIBUTES = (Public, ); }; };
  127 + 7D9F0860712824EEF5951BA2DD855ED1 /* QMUINavigationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 283F50BE7F4B50C41EEA03E6BE9DE8B8 /* QMUINavigationButton.m */; };
  128 + 80A131003441D725597314C96032DEBB /* QMUIToastBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 726AF970C89C9A961AFFF8CADDEDA82D /* QMUIToastBackgroundView.m */; };
  129 + 8252B8D53EB29E381C87E3205F960BD5 /* Pods-CNLiveEmptyView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F2C0AE36FF8A6FBD0F4D3332F76206 /* Pods-CNLiveEmptyView_Tests-dummy.m */; };
  130 + 82D066A40242C1DDA193CF943DCC82C5 /* QMUISlider.m in Sources */ = {isa = PBXBuildFile; fileRef = B1A5A2C71F414E5AA8C1C2CD4D56985F /* QMUISlider.m */; };
  131 + 830B493C6EDF2CB9E0775AB0C41335D7 /* QMUIImagePickerCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C56617AB75CCE01118C8128FDF1F64 /* QMUIImagePickerCollectionViewCell.m */; };
  132 + 8351B663263F5E287EC8E897E42E2997 /* QMUILogManagerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = ED57E4A38F06537DC6966171C30BF157 /* QMUILogManagerViewController.m */; };
  133 + 83D79FB2E3B2F967FE62E3A97179433A /* QMUIToastAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2981C23463A0E6905599C78C8B9A99 /* QMUIToastAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
  134 + 840A1B2DDF024C929FE654B990D9999E /* QMUIGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F4B66BD0FAE2F4269835611D719976 /* QMUIGridView.m */; };
  135 + 8A225DDFA94C552C34A0D07AB54F4D0D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; };
  136 + 8ACB31850007B39C3AFDEECAEF54CBAC /* QMUIScrollAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 857B8006B85CBCA575684957635B0A10 /* QMUIScrollAnimator.m */; };
  137 + 8AD1DBF67A9F618E32E19A9088D6038C /* UITableView+QMUICellHeightKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B53096C42905AB1C59777B0B3E8AF0 /* UITableView+QMUICellHeightKeyCache.m */; };
  138 + 8B74F47C1A6C2A01D50783AC6354633E /* QMUIOrderedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = DDDA9F16724F7DF41E399F7936141A26 /* QMUIOrderedDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
  139 + 8DF8D514C5BB282DD21F0F90E3E46DB5 /* QMUIGhostButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D447ACD7C50558809EEB9011172DC5 /* QMUIGhostButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
  140 + 8E68002FE0D9AB7DAAEEA6D8FFB005A3 /* QMUINavigationBarScrollingAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F32A69897C7122B7ABED37FD7C7F782 /* QMUINavigationBarScrollingAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
  141 + 8E91D1B51CE94B9B76209EE668DCB0B4 /* UIGestureRecognizer+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 650AB04A0616F4EF66DB15CF4CBF2C52 /* UIGestureRecognizer+QMUI.m */; };
  142 + 90D810F588B817BA5B7C9FC4A500FD8F /* QMUIConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = E54E4F49EB2413C6A87A157A5CBC845B /* QMUIConfiguration.m */; };
  143 + 9197668099C0B08C451A5626B583432E /* QMUIAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = B486D035DFA15E971FCBB939A382D549 /* QMUIAsset.m */; };
  144 + 91FCDCC474D6595ADB754593D7B106E0 /* UITabBarItem+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 3808C54A498A6C7A8A5DC615CAE391B4 /* UITabBarItem+QMUI.m */; };
  145 + 9252416654B3DC5DCEE157697C818069 /* QMUIImagePickerPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD02F0ED9678FC6298B2F20AB2D76063 /* QMUIImagePickerPreviewViewController.m */; };
  146 + 957671AD514FCCFC22C85798DD71737E /* QMUIZoomImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CB781E583D78BD658298CF0F9EEB9D /* QMUIZoomImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  147 + 966C92271150560E0BF7943DB48151BF /* QMUIToastView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D26D12E88A89080C31024959A3E22C0 /* QMUIToastView.m */; };
  148 + 9731F3127D8F2AF3BEB26066C677C014 /* UITabBar+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = A108628037348306FAD8265EEE6A0EDF /* UITabBar+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  149 + 98A05A86F57EA3036C25E157277A6837 /* UIBezierPath+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1996B9D42A07181EA5C80FE74AF1A167 /* UIBezierPath+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  150 + 98DCABC2F84FF075DC7F32D9C30D6851 /* QMUIFillButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDE2D459E31DE8A69617CECA6250125 /* QMUIFillButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
  151 + 99AF47353B42C6EF3AF6FAB64879148A /* QMUIRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 127E47F52696D3D8ED8F707C8C66EE50 /* QMUIRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; };
  152 + 9A594F57FE68DF76BBACAFBBF0EC2E76 /* QMUIEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3588B9E21B3E79011ABBE2A871A9D2AD /* QMUIEmptyView.m */; };
  153 + 9B2D2DA035B9F83CF10B951F84EFF836 /* QMUIAssetsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 418E55EF1A1D3B3789758B61DB0F07AE /* QMUIAssetsManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  154 + 9B4BF3B366314DFA0B0AD7D69A40270D /* QMUIMultipleDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = C885FA9876A632DBC6894FA1F7DF3FF5 /* QMUIMultipleDelegates.h */; settings = {ATTRIBUTES = (Public, ); }; };
  155 + 9B7F22B51BF4DA9B71762775039A49AF /* QMUITableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DED7AACC5025619371184D791E6FEFC /* QMUITableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
  156 + 9E1B5962F63B6B46CC3B5ECF103EDA8B /* QMUILogNameManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3D603DFFA65ADC3AB2E5BABB74829F /* QMUILogNameManager.m */; };
  157 + 9E5E984428B1C5FE7AA4C35236C0B4A3 /* UIImageView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 79FAF550F440725BEA0445DB99D69A52 /* UIImageView+QMUI.m */; };
  158 + 9F255BD5D3303E755C39543AD44AFA67 /* QMUIKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E26E328980D74476C4F336AD59C8DEDF /* QMUIKeyboardManager.m */; };
  159 + A04322DDD8311884BB4A787963B0C4EA /* QMUILogNameManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEFBD1348A991F10A4FAD4AA664A253 /* QMUILogNameManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  160 + A2944278F3892353760FF412AAC0378B /* UIInterface+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 461861850FA6A468417A888DF7E1165E /* UIInterface+QMUI.m */; };
  161 + A32F2D82FE57098B62301EC411CAF259 /* UITextField+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AE6157F70474DE2C8A6C5972AE70DC /* UITextField+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  162 + A4D1C788C312BC29EEE17B0495DE70BE /* QMUILog.h in Headers */ = {isa = PBXBuildFile; fileRef = 233D456A0F45469D9CC3A7F13759705D /* QMUILog.h */; settings = {ATTRIBUTES = (Public, ); }; };
  163 + A56C764E5EE137BFDDA241172DC2662B /* UIControl+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AAD4B9E2A2C7842EA9551EBEAC6A7E /* UIControl+QMUI.m */; };
  164 + A5966578513EA11742658B760DE3824B /* NSParagraphStyle+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FC77F74C6B4AF75D3E2EFBE3DD25A6 /* NSParagraphStyle+QMUI.m */; };
  165 + A6FF789663B4B7D19A6154645F4D4457 /* QMUIMoreOperationController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC8BDE0C3092C803525B946DB8576CC /* QMUIMoreOperationController.m */; };
  166 + A74BD2309D4B42DDACE1A5271E12C291 /* QMUIPopupMenuButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A64DC20478808BBC302BC9F3C29BF90 /* QMUIPopupMenuButtonItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
  167 + A74FE89F7BCAF1CD83E92FD8D9DABE56 /* QMUILinkButton.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BD968040F7A09D4EBEE2F20A9F39CC /* QMUILinkButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
  168 + A931154D63A9799A8B71BA5510699B04 /* QMUIToastContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 867709A2535E18508D6CD97A8EF8994E /* QMUIToastContentView.m */; };
  169 + A9B309EAF7D8D6035A24F4C95B9E4EE4 /* UIView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC6F084D6F34C249C680A3A0B1449A8 /* UIView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  170 + AB1B9F2119D2A09248DC0387BB323808 /* QMUINavigationBarScrollingAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ECEEF9B11989B420403CD531291E663 /* QMUINavigationBarScrollingAnimator.m */; };
  171 + ABA134811761320CF5D61526FA400492 /* QMUINavigationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 639E0FFC9470B61321B1DA3C8531BE68 /* QMUINavigationButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
  172 + AC232A54F6D3B32F8F50919D6E9A906A /* QMUITableViewHeaderFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF70F64119EA11EBFE453FC82669886 /* QMUITableViewHeaderFooterView.m */; };
  173 + ACB80C9490234516E5AC67EFE2CA8A07 /* NSObject+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 77202FDF896E7023A466BBBE8D9EF99E /* NSObject+QMUI.m */; };
  174 + AD5FC16345EC189A5D6A828CD8B72EBA /* UIColor+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = FB68B2AFC6810F003EA15FB5FF704DE0 /* UIColor+QMUI.m */; };
  175 + AE5B22F539C14C894D987A4B00A8DFFD /* UICollectionView+QMUICellSizeKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEB59D540E5BE7443437C918454DA10 /* UICollectionView+QMUICellSizeKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  176 + AED3BF0B8867843FD48B436BD0309DF7 /* QMUIImagePickerPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F4DCE773B8DDE5C085E6E4708CE3F9 /* QMUIImagePickerPreviewViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  177 + B085CBE3ACFFCEE42B76ECF136920711 /* QMUIImagePreviewView.h in Headers */ = {isa = PBXBuildFile; fileRef = 355CD548B59249FF7CE60F8D01F476DE /* QMUIImagePreviewView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  178 + B1C4323317D95638CB8ADA78AEAC4ED2 /* NSAttributedString+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 5079DDDCF8ED34E921770AEE593997D2 /* NSAttributedString+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  179 + B29A9514F1739F6D6C71FA4CF1FD2517 /* QMUIConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F698C6F858196B9297E6D63FB0E63E2 /* QMUIConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
  180 + B2A1F201BDF14608967CFC2F3883BB17 /* UIScrollView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C5D0EE23FC21D542575412F69178A6 /* UIScrollView+QMUI.m */; };
  181 + B2CF36AAA556682AC90E4AB3D1C12850 /* QMUIModalPresentationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DCAC689B16A852521E02B74F8B2BE32 /* QMUIModalPresentationViewController.m */; };
  182 + B346710B2B2B824BDF12054E49E5C1E4 /* QMUIMarqueeLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 66670377EF4A625B8565B62F5156A929 /* QMUIMarqueeLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
  183 + B3672FC7B472B9311303510382304F0C /* QMUITabBarViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 824F70F3808B026C14632564A627F063 /* QMUITabBarViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  184 + B3AC824656DBDE0CF80B4BD75A3F3223 /* QMUITips.m in Sources */ = {isa = PBXBuildFile; fileRef = F19D6A92D9B1A0E9C28D5A8485EBE11D /* QMUITips.m */; };
  185 + B98197DDE77CDC4A1EB29C663F25426C /* UITableView+QMUIStaticCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF56C90A7B7E8EB1C2D376674309117 /* UITableView+QMUIStaticCell.m */; };
  186 + B9BAFCAA207285C670189F321F00FDA3 /* UINavigationBar+Transition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E99114CB3E2D765D08B090D9D995059 /* UINavigationBar+Transition.m */; };
  187 + BA0F5C38FA0610B28133D444CDCDDD77 /* QMUITableView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E16978D401CA5628C96E21D0DA9BD7 /* QMUITableView.m */; };
  188 + BA208BBBA6C082778538AB8C47BB55E9 /* UIImageView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = D67F9BBE995013B23D4586B5AB5A2EE0 /* UIImageView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  189 + BABA2856001A48624ED8636E77E8370C /* QMUIEmotionInputManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93253C7854DAE2514FAB20DD80CF745A /* QMUIEmotionInputManager.m */; };
  190 + BD104CD02B2C29C4B53323AE5302E98B /* QMUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 9252BCC60CA50B365DDCC86BBD5BE970 /* QMUITextField.m */; };
  191 + BEECD3F633AA8D604C1C0554420AE162 /* NSNumber+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5F415A8486BD8FFF6D2BEDDD5AF0CD /* NSNumber+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  192 + C1DF19B62F4921780A3E3FF3611A1173 /* QMUICollectionViewPagingLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1952CEE8CACB06D5BB473881DA37508C /* QMUICollectionViewPagingLayout.m */; };
  193 + C1E119D07E6884C0A3A4CA3B08FCE6CE /* QMUIWeakObjectContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABC0D68AF99F730F1536B7F5A57C071 /* QMUIWeakObjectContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
  194 + C1EF40859E564CEC53AE875496836BB9 /* QMUIEmotionView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC94B72CC75F40FA770C30E825655D5 /* QMUIEmotionView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  195 + C21C8A69C5E4CC58CB796365762D8ED9 /* QMUIRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 946F39A3036111880BAED7E5EF15FA33 /* QMUIRuntime.m */; };
  196 + C2BFA3F671732B71A5B777C8B613D952 /* QMUIImagePickerCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0BC95E8F4CCB85D92C0CCE6DDB679B /* QMUIImagePickerCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
  197 + C3DFD5E9FF52CA7195E32D8B8C6C2773 /* UITableViewCell+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = B868D5A4F5C7283565D2FCCFD4DA168E /* UITableViewCell+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  198 + C425BF7A9B47A20A84467BB3B10DA3D9 /* QMUISegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD97020833AEF2873EC85EDE55FB578 /* QMUISegmentedControl.m */; };
  199 + C5E3B079DF68C75C3258AC3DB725D128 /* UIActivityIndicatorView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD23780728557F602277DDEF5C2921B /* UIActivityIndicatorView+QMUI.m */; };
  200 + C63BB4BD549C97593FEEA94555F83DA5 /* QMUILabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B55534A34D585299A7D9664A7C39CC /* QMUILabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
  201 + C6B1162684F87B969DAEB12207E8F280 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40260A64A188F91D6A6381DF6BFCA26D /* CoreGraphics.framework */; };
  202 + C6B9D194FAFA53958D9ACBB37C08B18A /* UIScrollView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = BA241FE0BABD76043ED1E4E0AE066D41 /* UIScrollView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  203 + C6E8891835E0F2E3405CC9AEFE51E838 /* NSAttributedString+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = C06D0BC222CE3E61E465D76A20EF7812 /* NSAttributedString+QMUI.m */; };
  204 + C753087D0ACA836DCEADD5BABAC55FA5 /* QMUICommonDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = CAED37508C776E749D8B1A0AC673D1CF /* QMUICommonDefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
  205 + CA7B8E6414F941B4210D4678CBE07D7E /* CALayer+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 75549842FFA8F83CDFD8C4645AE95611 /* CALayer+QMUI.m */; };
  206 + CA979554B5BBE6CB6141E5085787B5E1 /* UICollectionView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = A44B5F9CD4EB82148EAD99B391AECEAE /* UICollectionView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  207 + CBB58198D544F0EC2C858FD000249E49 /* UITableView+QMUIStaticCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EAB1C72CEACC749511F82D680CB3CF0 /* UITableView+QMUIStaticCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
  208 + CBE81D3BA8C043995DCFB068E0C635E6 /* QMUICellSizeKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D9CCBA6B30ACC6F406823B0A2F29D4 /* QMUICellSizeKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  209 + CD8040430E2E1FE28CB03093DEBDDEA0 /* QMUIDialogViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 015BB595DBD6949EBEAA8738FE12223C /* QMUIDialogViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  210 + CE09780F8CA8CD4EE6A1B123D31D4E14 /* QMUICommonTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F61563A08E28F519DB973AE802F57CB /* QMUICommonTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  211 + CE96E7BB1D4AAACCBA2464C8259E6BE8 /* UINavigationBar+Transition.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC3F3AC95A6649895997EFE7DBB8A15 /* UINavigationBar+Transition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  212 + CED8C0E109AE5C07457E6554AD5B71DD /* QMUILogger+QMUIConfigurationTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = A41171C1FAABAFEB8B002334683DDC02 /* QMUILogger+QMUIConfigurationTemplate.m */; };
  213 + CFA005CE48ABAC391B329AD54F85956E /* QMUIPopupMenuButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D373C51981B5FAC668514CA43CDF92 /* QMUIPopupMenuButtonItem.m */; };
  214 + D01120F76A901FFF13DA6348840CDCD4 /* CALayer+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECAAEED7ED1AE6BB0C74A7E484DE701 /* CALayer+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  215 + D0326EA81EBDDBF14C1182569BA0277F /* QMUISearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1F717D2A0F5A721EB82C4F5487E962 /* QMUISearchBar.h */; settings = {ATTRIBUTES = (Public, ); }; };
  216 + D1EC16E972188659E50EF542ECCF3CFC /* QMUIKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8943F79BF4D4A53FFFE3F0050916BCF6 /* QMUIKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  217 + D20730D9F69FF9C4186ABA54C7F6FC88 /* UIBarItem+QMUIBadge.h in Headers */ = {isa = PBXBuildFile; fileRef = C3FAD9906F57EC9243FEEBAF1CC94A85 /* UIBarItem+QMUIBadge.h */; settings = {ATTRIBUTES = (Public, ); }; };
  218 + D25F32DA7FED3363AA6B4B9E2FB5A510 /* NSString+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 841D768E9E7FEF437D4846C1C31B5575 /* NSString+QMUI.m */; };
  219 + D2FD45CB6581A2973AEFEC6F9A38B3A7 /* UIFont+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F7A119D066B4550FC5E42E400F8862 /* UIFont+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  220 + D4001C048D42BBB24DBB932DD2A152D4 /* QMUICellHeightCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EC65E8D340A5A5B77C907E2793E67762 /* QMUICellHeightCache.m */; };
  221 + D6BAF554CE2E6014CF4A78B989A3CB61 /* QMUIPopupContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = A63D3844E87808AA9D24689B6B47B062 /* QMUIPopupContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  222 + D82C9C4E0361EF7845BD794AD9192094 /* CNLIveEmptyView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1F8088B05CE4F5E6DCE8B2B342BA43 /* CNLIveEmptyView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  223 + D8BF594D74C4C933CF8A3839EDDA240A /* QMUILogManagerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3541F828BAD3505DDC8F0704A9DC4EA6 /* QMUILogManagerViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  224 + DA37053814C784016A68F38EFC8438E7 /* UINavigationController+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B36D00AD94C22E70156A190BCF04B5E /* UINavigationController+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  225 + DB84517AF23B1C1F6C3F035A1D384079 /* QMUIMoreOperationController.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA9729534672F275FC6765EC39073BF /* QMUIMoreOperationController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  226 + DBF87BEC484D1A7BFB002AD37112A011 /* QMUINavigationBarScrollingSnapAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A122ADE1B28F4931A5D1F00EA44BBF /* QMUINavigationBarScrollingSnapAnimator.m */; };
  227 + DCB7A9361EEA6DA8CA48E693A40A1F1A /* UILabel+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1196980CB7705682DA4A1EE38C7EB1DF /* UILabel+QMUI.m */; };
  228 + DDDF04873B95100A55B32A8021A5A044 /* QMUILogItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6178F81A5DCE840951801F0B9BD0BBB9 /* QMUILogItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
  229 + DE633CC2F952A79C6E9005163C1229A3 /* UIInterface+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7F2D7D88AB86A72FDA6D76DB4B96F5 /* UIInterface+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  230 + DEE9D620BC5EEAAAB21A6EA3D5C47C15 /* UIGestureRecognizer+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E719ADE006E41FD830DEBECEB80C27 /* UIGestureRecognizer+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  231 + DFCC8F026F767F6334497C86E20D7D1E /* NSPointerArray+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F176113F7996CD3D61EA30EB7BBCB8 /* NSPointerArray+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  232 + E086D684681607E1B2A0F468376F4F51 /* QMUIPopupMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC4C7536C6A522197B783CAE57FBED3 /* QMUIPopupMenuView.m */; };
  233 + E1FDC706953F6D15A889774245122AAA /* QMUIImagePreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EE39525CA5175DB98D35B53C5F5EA1B6 /* QMUIImagePreviewViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  234 + E34AD536D2746AEB15162196C263ABBF /* UITableView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF86EE16C919F56CC23E7AEB6EA4D08 /* UITableView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  235 + E483666641A4474AF423CD46ABD5B34A /* NSURL+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 945A54E818CAE0C47232E4C381A7687E /* NSURL+QMUI.m */; };
  236 + E4DDCDC1A3C8101648191FBEB73CAEA5 /* UISearchBar+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E7AAFCD5D0A3D30E851278F8B487DE3 /* UISearchBar+QMUI.m */; };
  237 + E4F9876EE5627A172148005160D512B8 /* QMUIAssetsGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E191ACCD195AF9FEB074F6CB45C1269D /* QMUIAssetsGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
  238 + E4FB601C1C80420E9F42DD00C8227C52 /* UITableViewCell+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1283089156FCF7A4E9AE931119BC44D8 /* UITableViewCell+QMUI.m */; };
  239 + E60ED6E94246A236B06916B76F78E442 /* QMUIStaticTableViewCellDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = EB229A67630CCBB2F844070BFBEC9144 /* QMUIStaticTableViewCellDataSource.m */; };
  240 + E6354FA899B04183C15367F677D128C3 /* QMUISearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 65D66AA6950E94C05B873771039500DB /* QMUISearchBar.m */; };
  241 + E6D823A37F1002C706321BCF1C7ED082 /* QMUIGridView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F99588BE293DF0528770A7C21A81FDB /* QMUIGridView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  242 + E75DDE590BCEC7556D4EE6B9DD014153 /* QMUIWeakObjectContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = FE6C5B6806715C91E5F7F9EC9C69F532 /* QMUIWeakObjectContainer.m */; };
  243 + E7E70F5315F90041D4E85F846F3AB198 /* QMUINavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B8E9C8A57CB3B34447C7AFF7EE44F3 /* QMUINavigationController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  244 + E801FFC9B6DA2418463A055B35963F8A /* QMUITestView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B02F3630DD5A74CFAFE7F1557DF971 /* QMUITestView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  245 + E80F2756601C718374107460DCB32748 /* UITableView+QMUICellHeightKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA4634DEC017D84E09F2CD4139567C6 /* UITableView+QMUICellHeightKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  246 + EA0EABBE83A7EFAFA3BFB3B29E636F47 /* UITabBarItem+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAB45CBC99EEAB4F5A994E6581CD23F /* UITabBarItem+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  247 + EB470C377DB0C81A19BE5A3B2E6906E3 /* QMUITableViewHeaderFooterView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A3CFA4E9B72274853BD50AA1762BEA4 /* QMUITableViewHeaderFooterView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  248 + EB4E57488CADC70956C924F743915F3B /* UIView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CEEBE0056F48DF0574635BFF9B97D17 /* UIView+QMUI.m */; };
  249 + EB7CA1BD99BE3107CBB5503CA5734C38 /* QMUITableViewProtocols.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E295F9CA326954427EB0E5B99C32C9 /* QMUITableViewProtocols.h */; settings = {ATTRIBUTES = (Public, ); }; };
  250 + EBA00B4E183291F16BD3E70F5545A19E /* QMUILinkButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CA4E6D9642C1EA36A3E91C9A6E0472 /* QMUILinkButton.m */; };
  251 + EBDF30D89BBC44E122533D30BF408B5C /* QMUIStaticTableViewCellData.m in Sources */ = {isa = PBXBuildFile; fileRef = B5D064B65D40155BD70B64BB388B1ACF /* QMUIStaticTableViewCellData.m */; };
  252 + EC0E9554EBA33B171AE6D48E2BCDF319 /* CAAnimation+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D421279B582750E58EC942F4A0FCE7 /* CAAnimation+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  253 + EC29086E4DB8A7793F503D4D8EDCD958 /* UINavigationController+NavigationBarTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 0795C145C01D191967884F859BD43A9D /* UINavigationController+NavigationBarTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
  254 + EC70CE17CA3023A1A77FF3A187CCE5DD /* QMUIAlbumViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 72B82B4BCFD16806FC20C290B3D2E699 /* QMUIAlbumViewController.m */; };
  255 + EEBC2EF893EB702CA83E71BB3E66B1BB /* QMUILabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C9398ABF09E8B8746F6F313652317810 /* QMUILabel.m */; };
  256 + F00F43773B15AF7EAAB57AC7DBEA68ED /* QMUIAlbumViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D17B68E99341DC48C2E81F03B96144 /* QMUIAlbumViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  257 + F0574E26BB4D8A39D8022D3C81A79BEB /* QMUICellHeightCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E626E9E36A29D01E46FBF42A7AF154E5 /* QMUICellHeightCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
  258 + F08C30D9EB1B3BB4223E0F1B398142F9 /* QMUIImagePreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C15442CE05336642565CB6E148B01488 /* QMUIImagePreviewViewController.m */; };
  259 + F1D151223008D02ECB38FC93A6EA065C /* QMUIStaticTableViewCellData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D214161CD57C864F4C0C809DBA89B14 /* QMUIStaticTableViewCellData.h */; settings = {ATTRIBUTES = (Public, ); }; };
  260 + F234F3607CA45F890D06C59FE40D990B /* Pods-CNLiveEmptyView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C6510D9ED4D0CD2FC651A247198D6 /* Pods-CNLiveEmptyView_Example-dummy.m */; };
  261 + F2AE5301B2774FE7CEDC3C5CDA45DB96 /* QMUIImagePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EC56849B1C6696F083821703676DA32 /* QMUIImagePickerViewController.m */; };
  262 + F2B7F0C9CE5FDD1E8D50C09858ED832F /* QMUIGhostButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 967AB00EA7E3BA4F62B4C7085A4711CF /* QMUIGhostButton.m */; };
  263 + F379C6E0E8E0DFFD770095A09B05F54A /* QMUIOrderedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = D4464095CFC47051FEFA4E0CF85B2497 /* QMUIOrderedDictionary.m */; };
  264 + F42714ADACB03385C14750F09BC740A2 /* UISearchBar+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3F01F7981A029E86204CEEB4B0A82A /* UISearchBar+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  265 + F7DF29F59BB17BF81DC52D0E86E72CEE /* QMUIAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB1DA87013A89A9A0AA87994468E7B7 /* QMUIAlertController.m */; };
  266 + F8D296A00D8B3DBA1B0CEE39D96B5FDE /* UIColor+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 869C42510C54A3ADB853E5BF49F8E6A5 /* UIColor+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  267 + F9124D828382C0A0CB0811EFA4A304A7 /* QMUIPopupMenuBaseItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABB3CE4A38F351A8FBD21EDF8580222 /* QMUIPopupMenuBaseItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
  268 + F9E4DC75F56D2AD012E4CCA0CF237212 /* CNLIveEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCDBCAE4C1F9A3184DCC7BDEB562D1B0 /* CNLIveEmptyView.m */; };
  269 + FA4F64F894ADD0256F704A9A83C9456F /* QMUIConfigurationMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D8750A5FCB1ED4F34F50B194B17B7F /* QMUIConfigurationMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
  270 + FA744AB026C3D0F55BE525A87D0E17B3 /* QMUIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9508DF866BFC31906CF430A49E544810 /* QMUIKit.framework */; };
  271 + FB04C1F111D42D3C00E986C35B1232A9 /* QMUIPopupContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B46C337B4B39772F05CDABA373C58AD /* QMUIPopupContainerView.m */; };
  272 + FBBB5B0C0F6BD7FB5721628CDC7FE714 /* NSArray+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0ACFDAD3DF53E0D2B5A46263182A5D /* NSArray+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  273 + FD233A23DBE3C8B658A38B954D32BE6C /* QMUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6505AAF0659F39DEAB36634B19A798D /* QMUITextView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  274 + FE36AEC7BB5555927E0278CCA0572E04 /* UIWindow+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 18159ED77BAE29B4AC4ABAB295C1A6B4 /* UIWindow+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
  275 + FF84E0E96B8B3B34EEBC2178CD2D3465 /* QMUITableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDE20E4892A38F41F0E4F9CF62A11DC /* QMUITableViewCell.m */; };
  276 + FFDCF030E3CC9ED7A0ADA456BA085705 /* QMUICommonViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55D52D939C034CAF431D2B076FF05EF6 /* QMUICommonViewController.m */; };
  277 +/* End PBXBuildFile section */
  278 +
  279 +/* Begin PBXContainerItemProxy section */
  280 + 46F058EAB977557ABCB3DE72D010CA6F /* PBXContainerItemProxy */ = {
  281 + isa = PBXContainerItemProxy;
  282 + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  283 + proxyType = 1;
  284 + remoteGlobalIDString = 5FD6C1B5E41B57AC8FE465907571182B;
  285 + remoteInfo = CNLiveEmptyView;
  286 + };
  287 + 7C343FB263765A3A80A624CFDF99735D /* PBXContainerItemProxy */ = {
  288 + isa = PBXContainerItemProxy;
  289 + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  290 + proxyType = 1;
  291 + remoteGlobalIDString = 43B0DA3AA48198ACED5A3CF5259C774F;
  292 + remoteInfo = "Pods-CNLiveEmptyView_Example";
  293 + };
  294 + C0CB3782696DB06EEAFB377165598512 /* PBXContainerItemProxy */ = {
  295 + isa = PBXContainerItemProxy;
  296 + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  297 + proxyType = 1;
  298 + remoteGlobalIDString = 2885551A239E95E9A67302B20F0E798A;
  299 + remoteInfo = QMUIKit;
  300 + };
  301 + C57D8FAD6992FF1ACADBC51FF31BC6F2 /* PBXContainerItemProxy */ = {
  302 + isa = PBXContainerItemProxy;
  303 + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  304 + proxyType = 1;
  305 + remoteGlobalIDString = 2885551A239E95E9A67302B20F0E798A;
  306 + remoteInfo = QMUIKit;
  307 + };
  308 + F0385B6036263C82238ABF8DF7AA6712 /* PBXContainerItemProxy */ = {
  309 + isa = PBXContainerItemProxy;
  310 + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  311 + proxyType = 1;
  312 + remoteGlobalIDString = 2885551A239E95E9A67302B20F0E798A;
  313 + remoteInfo = QMUIKit;
  314 + };
  315 +/* End PBXContainerItemProxy section */
  316 +
  317 +/* Begin PBXFileReference section */
  318 + 00662AEF1699E1D4902BAD916450E34B /* QMUICellHeightKeyCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICellHeightKeyCache.m; path = QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m; sourceTree = "<group>"; };
  319 + 00778AE6A4C57D8DB6DF4F714336FCC3 /* Pods-CNLiveEmptyView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Example.release.xcconfig"; sourceTree = "<group>"; };
  320 + 00838B8220BC4A9F6921DEDEF7C87BB5 /* QMUICommonTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICommonTableViewController.m; path = QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m; sourceTree = "<group>"; };
  321 + 015BB595DBD6949EBEAA8738FE12223C /* QMUIDialogViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIDialogViewController.h; path = QMUIKit/QMUIComponents/QMUIDialogViewController.h; sourceTree = "<group>"; };
  322 + 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
  323 + 01DE8BC108D919FB6CF683FF361AE29E /* QMUIStaticTableViewCellDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIStaticTableViewCellDataSource.h; path = QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.h; sourceTree = "<group>"; };
  324 + 02AE85186AFBED5626B4880AC416E72E /* QMUIMarqueeLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIMarqueeLabel.m; path = QMUIKit/QMUIComponents/QMUIMarqueeLabel.m; sourceTree = "<group>"; };
  325 + 04C935A6EE0AF3EC233622E9DB4133E2 /* CNLiveEmptyView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveEmptyView.xcconfig; sourceTree = "<group>"; };
  326 + 0738271D12A250FC4D6E98741E17AE42 /* QMUIPopupMenuView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupMenuView.h; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h; sourceTree = "<group>"; };
  327 + 077AFA915EC01CA9175704F67FBCAFD0 /* QMUICore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICore.h; path = QMUIKit/QMUICore/QMUICore.h; sourceTree = "<group>"; };
  328 + 0795C145C01D191967884F859BD43A9D /* UINavigationController+NavigationBarTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+NavigationBarTransition.h"; path = "QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.h"; sourceTree = "<group>"; };
  329 + 07B3FE982FEADC65BEC00A71A527CE0D /* QMUIAsset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAsset.h; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h; sourceTree = "<group>"; };
  330 + 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QMUIKit.xcconfig; sourceTree = "<group>"; };
  331 + 09F7560AD693F83976234F0D45E9996E /* CNLiveEmptyView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveEmptyView-umbrella.h"; sourceTree = "<group>"; };
  332 + 0A1EF718D9476C4CDC4A342936A337F8 /* Pods-CNLiveEmptyView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Example-frameworks.sh"; sourceTree = "<group>"; };
  333 + 0ABC0D68AF99F730F1536B7F5A57C071 /* QMUIWeakObjectContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIWeakObjectContainer.h; path = QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h; sourceTree = "<group>"; };
  334 + 0BB4AB09F4015EF7ACEABBCAA03203C2 /* Pods-CNLiveEmptyView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveEmptyView_Example.modulemap"; sourceTree = "<group>"; };
  335 + 0E3F01F7981A029E86204CEEB4B0A82A /* UISearchBar+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISearchBar+QMUI.h"; path = "QMUIKit/UIKitExtensions/UISearchBar+QMUI.h"; sourceTree = "<group>"; };
  336 + 0E8DF67EC99D97064B5BB52A25FD748D /* UIBezierPath+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBezierPath+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m"; sourceTree = "<group>"; };
  337 + 1196980CB7705682DA4A1EE38C7EB1DF /* UILabel+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+QMUI.m"; path = "QMUIKit/UIKitExtensions/UILabel+QMUI.m"; sourceTree = "<group>"; };
  338 + 11F1CE3B7EF800365F868727333DF157 /* QMUIDialogViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIDialogViewController.m; path = QMUIKit/QMUIComponents/QMUIDialogViewController.m; sourceTree = "<group>"; };
  339 + 127E47F52696D3D8ED8F707C8C66EE50 /* QMUIRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIRuntime.h; path = QMUIKit/QMUICore/QMUIRuntime.h; sourceTree = "<group>"; };
  340 + 1283089156FCF7A4E9AE931119BC44D8 /* UITableViewCell+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableViewCell+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m"; sourceTree = "<group>"; };
  341 + 1342CAA536F1093670F70710BF2D0E8B /* NSCharacterSet+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCharacterSet+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h"; sourceTree = "<group>"; };
  342 + 15D373C51981B5FAC668514CA43CDF92 /* QMUIPopupMenuButtonItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupMenuButtonItem.m; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m; sourceTree = "<group>"; };
  343 + 161B95BB46BE053A3A86B78C869B9837 /* QMUIImagePickerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerViewController.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h; sourceTree = "<group>"; };
  344 + 165E0888868032EBFDE488DA7F0FD3C3 /* UIViewController+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIViewController+QMUI.h"; sourceTree = "<group>"; };
  345 + 16B889D321AB2DCA20B101F81C77EB49 /* UITextView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITextView+QMUI.m"; sourceTree = "<group>"; };
  346 + 1777C15B5E4B64602B31CDE9D5B871DE /* UIBarItem+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarItem+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIBarItem+QMUI.h"; sourceTree = "<group>"; };
  347 + 1810A443D3C0AE0E22F655BF37DA8297 /* Pods-CNLiveEmptyView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Tests-frameworks.sh"; sourceTree = "<group>"; };
  348 + 18159ED77BAE29B4AC4ABAB295C1A6B4 /* UIWindow+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIWindow+QMUI.h"; sourceTree = "<group>"; };
  349 + 1901C9CC0A5C3032FC01AAB002057BBC /* QMUISlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISlider.h; path = QMUIKit/QMUIComponents/QMUISlider.h; sourceTree = "<group>"; };
  350 + 1932056E130DE52DD4D2C1FFEFF6488E /* QMUIPieProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPieProgressView.m; path = QMUIKit/QMUIComponents/QMUIPieProgressView.m; sourceTree = "<group>"; };
  351 + 1952CEE8CACB06D5BB473881DA37508C /* QMUICollectionViewPagingLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICollectionViewPagingLayout.m; path = QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m; sourceTree = "<group>"; };
  352 + 1984A77A339279E570FDBFBBC4C3E7D3 /* QMUIFillButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIFillButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m; sourceTree = "<group>"; };
  353 + 1996B9D42A07181EA5C80FE74AF1A167 /* UIBezierPath+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBezierPath+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h"; sourceTree = "<group>"; };
  354 + 1CDE2D459E31DE8A69617CECA6250125 /* QMUIFillButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIFillButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h; sourceTree = "<group>"; };
  355 + 1D1F8088B05CE4F5E6DCE8B2B342BA43 /* CNLIveEmptyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CNLIveEmptyView.h; path = CNLiveEmptyView/Classes/CNLIveEmptyView.h; sourceTree = "<group>"; };
  356 + 1EC36AE2BBAAF6E062E1BB571A12DAC3 /* UINavigationBar+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+QMUI.m"; path = "QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m"; sourceTree = "<group>"; };
  357 + 1F61563A08E28F519DB973AE802F57CB /* QMUICommonTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICommonTableViewController.h; path = QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h; sourceTree = "<group>"; };
  358 + 214FBE177F855DB8735D07488C0A2762 /* Pods-CNLiveEmptyView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Tests.release.xcconfig"; sourceTree = "<group>"; };
  359 + 22AFA529D8BB06D207B0AFC4DB4C63B0 /* QMUILogItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogItem.m; path = QMUIKit/QMUIComponents/Log/QMUILogItem.m; sourceTree = "<group>"; };
  360 + 233D456A0F45469D9CC3A7F13759705D /* QMUILog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILog.h; path = QMUIKit/QMUIComponents/Log/QMUILog.h; sourceTree = "<group>"; };
  361 + 23EE0AF141F0E9AE7BF1C90592659BCB /* QMUIButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m; sourceTree = "<group>"; };
  362 + 25895284DB54A412962C0FF635786791 /* UIImage+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIImage+QMUI.h"; sourceTree = "<group>"; };
  363 + 26B1BAEBCC134F0E55931EE8FD6285F9 /* QMUIAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAlertController.h; path = QMUIKit/QMUIComponents/QMUIAlertController.h; sourceTree = "<group>"; };
  364 + 283F50BE7F4B50C41EEA03E6BE9DE8B8 /* QMUINavigationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m; sourceTree = "<group>"; };
  365 + 287C336CDC48C5051F59D0FCF740229B /* QMUIButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h; sourceTree = "<group>"; };
  366 + 2889BF54D43039E34ECE63FAC85D2E1D /* QMUILogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogger.h; path = QMUIKit/QMUIComponents/Log/QMUILogger.h; sourceTree = "<group>"; };
  367 + 29F7830A031D621288EB25E7A6FD20C3 /* QMUIToastAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastAnimator.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m; sourceTree = "<group>"; };
  368 + 2B054A6D940AF86C0A85D955EBEF8C9F /* QMUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITextView.m; path = QMUIKit/QMUIComponents/QMUITextView.m; sourceTree = "<group>"; };
  369 + 2BF86EE16C919F56CC23E7AEB6EA4D08 /* UITableView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITableView+QMUI.h"; sourceTree = "<group>"; };
  370 + 2CAD66BB8CA2859628157161F89ECDDC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  371 + 2CBCC2CED44C83247713DE526F707C6A /* NSArray+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSArray+QMUI.m"; sourceTree = "<group>"; };
  372 + 2CDD7D98B71F997EEBCAB5336337C4E4 /* UIControl+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIControl+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIControl+QMUI.h"; sourceTree = "<group>"; };
  373 + 2CEEBE0056F48DF0574635BFF9B97D17 /* UIView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIView+QMUI.m"; sourceTree = "<group>"; };
  374 + 2D214161CD57C864F4C0C809DBA89B14 /* QMUIStaticTableViewCellData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIStaticTableViewCellData.h; path = QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h; sourceTree = "<group>"; };
  375 + 2DE6E1E6FCDCFB243945ADA92A0F6AB5 /* UINavigationController+NavigationBarTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+NavigationBarTransition.m"; path = "QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m"; sourceTree = "<group>"; };
  376 + 2DED7AACC5025619371184D791E6FEFC /* QMUITableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableViewCell.h; path = QMUIKit/QMUIComponents/QMUITableViewCell.h; sourceTree = "<group>"; };
  377 + 2ECAAEED7ED1AE6BB0C74A7E484DE701 /* CALayer+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+QMUI.h"; path = "QMUIKit/UIKitExtensions/CALayer+QMUI.h"; sourceTree = "<group>"; };
  378 + 2F698C6F858196B9297E6D63FB0E63E2 /* QMUIConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIConfiguration.h; path = QMUIKit/QMUICore/QMUIConfiguration.h; sourceTree = "<group>"; };
  379 + 2FB0B08F81CB62FBC862DC4B8AD650F7 /* QMUIToastContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastContentView.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h; sourceTree = "<group>"; };
  380 + 30F176113F7996CD3D61EA30EB7BBCB8 /* NSPointerArray+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSPointerArray+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h"; sourceTree = "<group>"; };
  381 + 31CB781E583D78BD658298CF0F9EEB9D /* QMUIZoomImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIZoomImageView.h; path = QMUIKit/QMUIComponents/QMUIZoomImageView.h; sourceTree = "<group>"; };
  382 + 327C8E15776D10CC335EE39D482F0B93 /* QMUISearchController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISearchController.h; path = QMUIKit/QMUIComponents/QMUISearchController.h; sourceTree = "<group>"; };
  383 + 32C203828549F79489D9137720F0773C /* Pods-CNLiveEmptyView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveEmptyView_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  384 + 3430509A8B18E41D42C8E93B541332EC /* QMUIKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = QMUIKit.framework; path = QMUIKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  385 + 3541F828BAD3505DDC8F0704A9DC4EA6 /* QMUILogManagerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogManagerViewController.h; path = QMUIKit/QMUIComponents/QMUILogManagerViewController.h; sourceTree = "<group>"; };
  386 + 355CD548B59249FF7CE60F8D01F476DE /* QMUIImagePreviewView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePreviewView.h; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h; sourceTree = "<group>"; };
  387 + 3588B9E21B3E79011ABBE2A871A9D2AD /* QMUIEmptyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIEmptyView.m; path = QMUIKit/QMUIComponents/QMUIEmptyView.m; sourceTree = "<group>"; };
  388 + 36699F793146618678F7DC35307003BB /* QMUIAssetsGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAssetsGroup.m; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m; sourceTree = "<group>"; };
  389 + 3808C54A498A6C7A8A5DC615CAE391B4 /* UITabBarItem+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarItem+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m"; sourceTree = "<group>"; };
  390 + 39728F299AB5E6F9A72B37E7DBE49536 /* Pods-CNLiveEmptyView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveEmptyView_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
  391 + 39CA4E6D9642C1EA36A3E91C9A6E0472 /* QMUILinkButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILinkButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m; sourceTree = "<group>"; };
  392 + 3A3CFA4E9B72274853BD50AA1762BEA4 /* QMUITableViewHeaderFooterView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableViewHeaderFooterView.h; path = QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h; sourceTree = "<group>"; };
  393 + 3ABB3CE4A38F351A8FBD21EDF8580222 /* QMUIPopupMenuBaseItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupMenuBaseItem.h; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h; sourceTree = "<group>"; };
  394 + 3B0AA544D03796CB11223A4816268340 /* UIButton+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIButton+QMUI.m"; sourceTree = "<group>"; };
  395 + 3BFE6C0338FF14F776ED05B848791DEE /* UILabel+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+QMUI.h"; path = "QMUIKit/UIKitExtensions/UILabel+QMUI.h"; sourceTree = "<group>"; };
  396 + 3CF0C172B9B16B8CADFB100C4ECC6B51 /* QMUINavigationTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationTitleView.h; path = QMUIKit/QMUIComponents/QMUINavigationTitleView.h; sourceTree = "<group>"; };
  397 + 3D0850B301BEB3719C4A7D17FB2F40CA /* QMUILogger+QMUIConfigurationTemplate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QMUILogger+QMUIConfigurationTemplate.h"; path = "QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h"; sourceTree = "<group>"; };
  398 + 3D26D12E88A89080C31024959A3E22C0 /* QMUIToastView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastView.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastView.m; sourceTree = "<group>"; };
  399 + 3E0BC95E8F4CCB85D92C0CCE6DDB679B /* QMUIImagePickerCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerCollectionViewCell.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h; sourceTree = "<group>"; };
  400 + 3ECEEF9B11989B420403CD531291E663 /* QMUINavigationBarScrollingAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationBarScrollingAnimator.m; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m; sourceTree = "<group>"; };
  401 + 3F32A69897C7122B7ABED37FD7C7F782 /* QMUINavigationBarScrollingAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationBarScrollingAnimator.h; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h; sourceTree = "<group>"; };
  402 + 40260A64A188F91D6A6381DF6BFCA26D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };
  403 + 4071783299036F262D37B316D0BA85C2 /* Pods-CNLiveEmptyView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveEmptyView_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  404 + 40D421279B582750E58EC942F4A0FCE7 /* CAAnimation+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAAnimation+QMUI.h"; path = "QMUIKit/QMUIComponents/CAAnimation+QMUI.h"; sourceTree = "<group>"; };
  405 + 40DD84E4741483E717928ECD5BC7511A /* Pods_CNLiveEmptyView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CNLiveEmptyView_Tests.framework; path = "Pods-CNLiveEmptyView_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  406 + 418E55EF1A1D3B3789758B61DB0F07AE /* QMUIAssetsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAssetsManager.h; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h; sourceTree = "<group>"; };
  407 + 422D99FD1AC04F522A413CF7ADF124CF /* NSParagraphStyle+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h"; sourceTree = "<group>"; };
  408 + 42D89F1774203F4D0B5773774F363BA5 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  409 + 45D954BDEAEE83503A9F797387447C9F /* Pods-CNLiveEmptyView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveEmptyView_Tests.modulemap"; sourceTree = "<group>"; };
  410 + 461861850FA6A468417A888DF7E1165E /* UIInterface+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIInterface+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIInterface+QMUI.m"; sourceTree = "<group>"; };
  411 + 4636F28001CE67ED9789F72ACB72D4DB /* QMUIEmptyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIEmptyView.h; path = QMUIKit/QMUIComponents/QMUIEmptyView.h; sourceTree = "<group>"; };
  412 + 499EF5FE957D6D80D95323CB70730B6A /* CAAnimation+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAAnimation+QMUI.m"; path = "QMUIKit/QMUIComponents/CAAnimation+QMUI.m"; sourceTree = "<group>"; };
  413 + 4A048ACF092059565289CF4641A22005 /* QMUINavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationController.m; path = QMUIKit/QMUIMainFrame/QMUINavigationController.m; sourceTree = "<group>"; };
  414 + 4D850ABD913ABEBD0DDB6DF2CED64C70 /* QMUIToolbarButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToolbarButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m; sourceTree = "<group>"; };
  415 + 4EAB1C72CEACC749511F82D680CB3CF0 /* UITableView+QMUIStaticCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+QMUIStaticCell.h"; path = "QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.h"; sourceTree = "<group>"; };
  416 + 4EAD16142E5A442F1D766F3A5D49BB0D /* QMUIHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIHelper.m; path = QMUIKit/QMUICore/QMUIHelper.m; sourceTree = "<group>"; };
  417 + 4F1F717D2A0F5A721EB82C4F5487E962 /* QMUISearchBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISearchBar.h; path = QMUIKit/QMUIComponents/QMUISearchBar.h; sourceTree = "<group>"; };
  418 + 4F99588BE293DF0528770A7C21A81FDB /* QMUIGridView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIGridView.h; path = QMUIKit/QMUIComponents/QMUIGridView.h; sourceTree = "<group>"; };
  419 + 4FBA584E8D69023B04F3E9C0EE13AC4B /* NSObject+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSObject+QMUI.h"; sourceTree = "<group>"; };
  420 + 5079DDDCF8ED34E921770AEE593997D2 /* NSAttributedString+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h"; sourceTree = "<group>"; };
  421 + 5197D6245F70C0122146EB6DFD6F879B /* QMUIImagePickerHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerHelper.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m; sourceTree = "<group>"; };
  422 + 54573D1868828D0EEFD2C08FEC5D7E8F /* Pods-CNLiveEmptyView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveEmptyView_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
  423 + 54D7951DD02F645C9086235BB4A8D5AD /* NSURL+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSURL+QMUI.h"; sourceTree = "<group>"; };
  424 + 55D52D939C034CAF431D2B076FF05EF6 /* QMUICommonViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICommonViewController.m; path = QMUIKit/QMUIMainFrame/QMUICommonViewController.m; sourceTree = "<group>"; };
  425 + 58D17B68E99341DC48C2E81F03B96144 /* QMUIAlbumViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAlbumViewController.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h; sourceTree = "<group>"; };
  426 + 597F06210A5C4839F3A01FB6657CF5FE /* Pods-CNLiveEmptyView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveEmptyView_Example-umbrella.h"; sourceTree = "<group>"; };
  427 + 59D447ACD7C50558809EEB9011172DC5 /* QMUIGhostButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIGhostButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h; sourceTree = "<group>"; };
  428 + 5AEEFD6E48F6EC9A483894FD94DE6BB7 /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; };
  429 + 5B1725A6198F32713C08CBA45F6AC827 /* UIImage+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIImage+QMUI.m"; sourceTree = "<group>"; };
  430 + 5CE3BE5E75CEA2213D2096157B25FF8B /* QMUIHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIHelper.h; path = QMUIKit/QMUICore/QMUIHelper.h; sourceTree = "<group>"; };
  431 + 5F4F87282593B83C8B61D60308091E53 /* QMUIFloatLayoutView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIFloatLayoutView.m; path = QMUIKit/QMUIComponents/QMUIFloatLayoutView.m; sourceTree = "<group>"; };
  432 + 5FBCA193824C0876896D38178A616F51 /* QMUIEmotionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIEmotionView.m; path = QMUIKit/QMUIComponents/QMUIEmotionView.m; sourceTree = "<group>"; };
  433 + 5FD97020833AEF2873EC85EDE55FB578 /* QMUISegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISegmentedControl.m; path = QMUIKit/QMUIComponents/QMUISegmentedControl.m; sourceTree = "<group>"; };
  434 + 609C02E0FEB2DC79139993E456BA9A0D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  435 + 60D444F54109B58C71D511822CCC3D70 /* QMUIToastView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastView.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastView.h; sourceTree = "<group>"; };
  436 + 616D197C7043557D8CD03CAA163FF758 /* QMUIScrollAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIScrollAnimator.h; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.h; sourceTree = "<group>"; };
  437 + 6178F81A5DCE840951801F0B9BD0BBB9 /* QMUILogItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogItem.h; path = QMUIKit/QMUIComponents/Log/QMUILogItem.h; sourceTree = "<group>"; };
  438 + 619519D7A09BA5CEA4266A2640B4581E /* UITabBar+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBar+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITabBar+QMUI.m"; sourceTree = "<group>"; };
  439 + 62AB498BC41FC2118B18390DD86D8B85 /* QMUIVisualEffectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIVisualEffectView.h; path = QMUIKit/QMUIComponents/QMUIVisualEffectView.h; sourceTree = "<group>"; };
  440 + 639E0FFC9470B61321B1DA3C8531BE68 /* QMUINavigationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.h; sourceTree = "<group>"; };
  441 + 650AB04A0616F4EF66DB15CF4CBF2C52 /* UIGestureRecognizer+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIGestureRecognizer+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m"; sourceTree = "<group>"; };
  442 + 65D66AA6950E94C05B873771039500DB /* QMUISearchBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISearchBar.m; path = QMUIKit/QMUIComponents/QMUISearchBar.m; sourceTree = "<group>"; };
  443 + 66670377EF4A625B8565B62F5156A929 /* QMUIMarqueeLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIMarqueeLabel.h; path = QMUIKit/QMUIComponents/QMUIMarqueeLabel.h; sourceTree = "<group>"; };
  444 + 66FC77F74C6B4AF75D3E2EFBE3DD25A6 /* NSParagraphStyle+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSParagraphStyle+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m"; sourceTree = "<group>"; };
  445 + 683062B5F72F6AEA59EF18E1D5578B30 /* UIBarItem+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarItem+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIBarItem+QMUI.m"; sourceTree = "<group>"; };
  446 + 6A64DC20478808BBC302BC9F3C29BF90 /* QMUIPopupMenuButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupMenuButtonItem.h; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.h; sourceTree = "<group>"; };
  447 + 6B76C07B4297EEF730A63E8D1187E125 /* UICollectionView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UICollectionView+QMUI.m"; sourceTree = "<group>"; };
  448 + 6C0ACFDAD3DF53E0D2B5A46263182A5D /* NSArray+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSArray+QMUI.h"; sourceTree = "<group>"; };
  449 + 6D62F035D90C15C26B9622E7CEB8CA71 /* QMUICellHeightKeyCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICellHeightKeyCache.h; path = QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h; sourceTree = "<group>"; };
  450 + 6EC3F3AC95A6649895997EFE7DBB8A15 /* UINavigationBar+Transition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+Transition.h"; path = "QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.h"; sourceTree = "<group>"; };
  451 + 6FDF4F1F4B6CBE02E67053FD29C9E39C /* QMUILogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogger.m; path = QMUIKit/QMUIComponents/Log/QMUILogger.m; sourceTree = "<group>"; };
  452 + 71FA6DD888FEE0F4F39ADB0658BDE578 /* QMUINavigationBarScrollingSnapAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationBarScrollingSnapAnimator.h; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h; sourceTree = "<group>"; };
  453 + 726AF970C89C9A961AFFF8CADDEDA82D /* QMUIToastBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastBackgroundView.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m; sourceTree = "<group>"; };
  454 + 72B82B4BCFD16806FC20C290B3D2E699 /* QMUIAlbumViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAlbumViewController.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m; sourceTree = "<group>"; };
  455 + 75549842FFA8F83CDFD8C4645AE95611 /* CALayer+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+QMUI.m"; path = "QMUIKit/UIKitExtensions/CALayer+QMUI.m"; sourceTree = "<group>"; };
  456 + 75B55534A34D585299A7D9664A7C39CC /* QMUILabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILabel.h; path = QMUIKit/QMUIComponents/QMUILabel.h; sourceTree = "<group>"; };
  457 + 76039CB566391A6BA6AEBF7D9734C789 /* QMUIKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIKeyboardManager.h; path = QMUIKit/QMUIComponents/QMUIKeyboardManager.h; sourceTree = "<group>"; };
  458 + 7664E1AFB598843452C5EE0DFDA2F90F /* UIBarItem+QMUIBadge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarItem+QMUIBadge.m"; path = "QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m"; sourceTree = "<group>"; };
  459 + 76C5D0EE23FC21D542575412F69178A6 /* UIScrollView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIScrollView+QMUI.m"; sourceTree = "<group>"; };
  460 + 76D9CCBA6B30ACC6F406823B0A2F29D4 /* QMUICellSizeKeyCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICellSizeKeyCache.h; path = QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h; sourceTree = "<group>"; };
  461 + 77202FDF896E7023A466BBBE8D9EF99E /* NSObject+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSObject+QMUI.m"; sourceTree = "<group>"; };
  462 + 79FAF550F440725BEA0445DB99D69A52 /* UIImageView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIImageView+QMUI.m"; sourceTree = "<group>"; };
  463 + 7B46C337B4B39772F05CDABA373C58AD /* QMUIPopupContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupContainerView.m; path = QMUIKit/QMUIComponents/QMUIPopupContainerView.m; sourceTree = "<group>"; };
  464 + 7E99114CB3E2D765D08B090D9D995059 /* UINavigationBar+Transition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+Transition.m"; path = "QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m"; sourceTree = "<group>"; };
  465 + 7EC56849B1C6696F083821703676DA32 /* QMUIImagePickerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerViewController.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m; sourceTree = "<group>"; };
  466 + 824F70F3808B026C14632564A627F063 /* QMUITabBarViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITabBarViewController.h; path = QMUIKit/QMUIMainFrame/QMUITabBarViewController.h; sourceTree = "<group>"; };
  467 + 82CC725A02E5604CC03C146A8F0EC9F6 /* Pods-CNLiveEmptyView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveEmptyView_Tests-umbrella.h"; sourceTree = "<group>"; };
  468 + 83E719ADE006E41FD830DEBECEB80C27 /* UIGestureRecognizer+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIGestureRecognizer+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h"; sourceTree = "<group>"; };
  469 + 841D768E9E7FEF437D4846C1C31B5575 /* NSString+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSString+QMUI.m"; sourceTree = "<group>"; };
  470 + 857B8006B85CBCA575684957635B0A10 /* QMUIScrollAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIScrollAnimator.m; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m; sourceTree = "<group>"; };
  471 + 85932D487990FC072A12E9374F52C874 /* QMUIResources.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = QMUIResources.bundle; path = QMUIKit/QMUIResources/QMUIResources.bundle; sourceTree = "<group>"; };
  472 + 867709A2535E18508D6CD97A8EF8994E /* QMUIToastContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastContentView.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m; sourceTree = "<group>"; };
  473 + 869C42510C54A3ADB853E5BF49F8E6A5 /* UIColor+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIColor+QMUI.h"; sourceTree = "<group>"; };
  474 + 87DBF896A7B31025FE2C6DC39E67F190 /* QMUIFloatLayoutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIFloatLayoutView.h; path = QMUIKit/QMUIComponents/QMUIFloatLayoutView.h; sourceTree = "<group>"; };
  475 + 8943F79BF4D4A53FFFE3F0050916BCF6 /* QMUIKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QMUIKit-umbrella.h"; sourceTree = "<group>"; };
  476 + 8AD23780728557F602277DDEF5C2921B /* UIActivityIndicatorView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m"; sourceTree = "<group>"; };
  477 + 8B36D00AD94C22E70156A190BCF04B5E /* UINavigationController+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+QMUI.h"; path = "QMUIKit/UIKitExtensions/UINavigationController+QMUI.h"; sourceTree = "<group>"; };
  478 + 8CC15DED9DE9A76C0D786048F4BA06D9 /* Pods-CNLiveEmptyView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Tests-resources.sh"; sourceTree = "<group>"; };
  479 + 8E2981C23463A0E6905599C78C8B9A99 /* QMUIToastAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastAnimator.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h; sourceTree = "<group>"; };
  480 + 8E7AAFCD5D0A3D30E851278F8B487DE3 /* UISearchBar+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISearchBar+QMUI.m"; path = "QMUIKit/UIKitExtensions/UISearchBar+QMUI.m"; sourceTree = "<group>"; };
  481 + 8E952A4B8FB69C74700E00F99EDDEF51 /* QMUIModalPresentationViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIModalPresentationViewController.h; path = QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h; sourceTree = "<group>"; };
  482 + 8EAB1559AE486653A691314C4547EB1C /* QMUITableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableView.h; path = QMUIKit/QMUIComponents/QMUITableView.h; sourceTree = "<group>"; };
  483 + 9252BCC60CA50B365DDCC86BBD5BE970 /* QMUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITextField.m; path = QMUIKit/QMUIComponents/QMUITextField.m; sourceTree = "<group>"; };
  484 + 93253C7854DAE2514FAB20DD80CF745A /* QMUIEmotionInputManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIEmotionInputManager.m; path = QMUIKit/QMUIComponents/QMUIEmotionInputManager.m; sourceTree = "<group>"; };
  485 + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  486 + 945A54E818CAE0C47232E4C381A7687E /* NSURL+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSURL+QMUI.m"; sourceTree = "<group>"; };
  487 + 946F39A3036111880BAED7E5EF15FA33 /* QMUIRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIRuntime.m; path = QMUIKit/QMUICore/QMUIRuntime.m; sourceTree = "<group>"; };
  488 + 9508DF866BFC31906CF430A49E544810 /* QMUIKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = QMUIKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  489 + 95B8BA450A02AE3B1E5624D77632AB0F /* QMUIPopupMenuBaseItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupMenuBaseItem.m; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m; sourceTree = "<group>"; };
  490 + 967AB00EA7E3BA4F62B4C7085A4711CF /* QMUIGhostButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIGhostButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m; sourceTree = "<group>"; };
  491 + 99F2C0AE36FF8A6FBD0F4D3332F76206 /* Pods-CNLiveEmptyView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveEmptyView_Tests-dummy.m"; sourceTree = "<group>"; };
  492 + 9AC4C7536C6A522197B783CAE57FBED3 /* QMUIPopupMenuView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupMenuView.m; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m; sourceTree = "<group>"; };
  493 + 9B138AD96E6F55D5CEE18B43FFEB0E09 /* UIFont+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIFont+QMUI.m"; sourceTree = "<group>"; };
  494 + 9CF3F9562DD8C287DC6D2542A34FC724 /* QMUIZoomImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIZoomImageView.m; path = QMUIKit/QMUIComponents/QMUIZoomImageView.m; sourceTree = "<group>"; };
  495 + 9D3622F9AD5484F18ABFF1B11583736C /* CNLiveEmptyView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CNLiveEmptyView.framework; path = CNLiveEmptyView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  496 + 9DCAC689B16A852521E02B74F8B2BE32 /* QMUIModalPresentationViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIModalPresentationViewController.m; path = QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m; sourceTree = "<group>"; };
  497 + 9DCC6A4BF711108367C04F5DE98D67FA /* QMUITips.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITips.h; path = QMUIKit/QMUIComponents/QMUITips.h; sourceTree = "<group>"; };
  498 + 9DD3C3E68F130B422DF3DACF69421296 /* UITextView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITextView+QMUI.h"; sourceTree = "<group>"; };
  499 + 9E5F415A8486BD8FFF6D2BEDDD5AF0CD /* NSNumber+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNumber+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSNumber+QMUI.h"; sourceTree = "<group>"; };
  500 + 9E71CD44B6575C425DF7CD11FFA361D8 /* QMUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIKit.h; path = QMUIKit/QMUIKit.h; sourceTree = "<group>"; };
  501 + 9FFFF25B06592EA5C7EFA48A1258266B /* QMUIImagePreviewView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePreviewView.m; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m; sourceTree = "<group>"; };
  502 + A045DD906F8DDC43AA5B20073E0C4FB8 /* QMUISearchController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISearchController.m; path = QMUIKit/QMUIComponents/QMUISearchController.m; sourceTree = "<group>"; };
  503 + A108628037348306FAD8265EEE6A0EDF /* UITabBar+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBar+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITabBar+QMUI.h"; sourceTree = "<group>"; };
  504 + A1B02F3630DD5A74CFAFE7F1557DF971 /* QMUITestView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITestView.h; path = QMUIKit/QMUIComponents/QMUITestView.h; sourceTree = "<group>"; };
  505 + A1B53096C42905AB1C59777B0B3E8AF0 /* UITableView+QMUICellHeightKeyCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+QMUICellHeightKeyCache.m"; path = "QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m"; sourceTree = "<group>"; };
  506 + A1DD097D0D9BD2343FC6C1485A2D7C4B /* QMUIKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QMUIKit-prefix.pch"; sourceTree = "<group>"; };
  507 + A204DB48B7DC8BEF2C40984796A23B85 /* Pods_CNLiveEmptyView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CNLiveEmptyView_Example.framework; path = "Pods-CNLiveEmptyView_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  508 + A2AE6157F70474DE2C8A6C5972AE70DC /* UITextField+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITextField+QMUI.h"; sourceTree = "<group>"; };
  509 + A334B1B2B3B8CAA8E2FE0F3891203F57 /* CNLiveEmptyView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveEmptyView-dummy.m"; sourceTree = "<group>"; };
  510 + A396EC8BE89FD67361034654F7CFBB7F /* QMUISegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISegmentedControl.h; path = QMUIKit/QMUIComponents/QMUISegmentedControl.h; sourceTree = "<group>"; };
  511 + A41171C1FAABAFEB8B002334683DDC02 /* QMUILogger+QMUIConfigurationTemplate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "QMUILogger+QMUIConfigurationTemplate.m"; path = "QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m"; sourceTree = "<group>"; };
  512 + A44B5F9CD4EB82148EAD99B391AECEAE /* UICollectionView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UICollectionView+QMUI.h"; sourceTree = "<group>"; };
  513 + A4B2C5041D6D79465BB12E2C1E36E139 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  514 + A63D3844E87808AA9D24689B6B47B062 /* QMUIPopupContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupContainerView.h; path = QMUIKit/QMUIComponents/QMUIPopupContainerView.h; sourceTree = "<group>"; };
  515 + A9D49056A96BBFFB26BA7E5221EC613C /* NSCharacterSet+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCharacterSet+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m"; sourceTree = "<group>"; };
  516 + AAEB59D540E5BE7443437C918454DA10 /* UICollectionView+QMUICellSizeKeyCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+QMUICellSizeKeyCache.h"; path = "QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.h"; sourceTree = "<group>"; };
  517 + AB92BF234C24893E40E87322812BE854 /* QMUIVisualEffectView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIVisualEffectView.m; path = QMUIKit/QMUIComponents/QMUIVisualEffectView.m; sourceTree = "<group>"; };
  518 + ABE7588449095507CAD14C3EA9D706A3 /* CNLiveEmptyView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveEmptyView.modulemap; sourceTree = "<group>"; };
  519 + ACDE20E4892A38F41F0E4F9CF62A11DC /* QMUITableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITableViewCell.m; path = QMUIKit/QMUIComponents/QMUITableViewCell.m; sourceTree = "<group>"; };
  520 + AD0EEC5A4431089D9628CC12CE116626 /* QMUIImagePickerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerHelper.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h; sourceTree = "<group>"; };
  521 + AE749EADDDFC3C0BCB54B92B97DC9A3E /* NSString+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSString+QMUI.h"; sourceTree = "<group>"; };
  522 + B1A5A2C71F414E5AA8C1C2CD4D56985F /* QMUISlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISlider.m; path = QMUIKit/QMUIComponents/QMUISlider.m; sourceTree = "<group>"; };
  523 + B1E16978D401CA5628C96E21D0DA9BD7 /* QMUITableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITableView.m; path = QMUIKit/QMUIComponents/QMUITableView.m; sourceTree = "<group>"; };
  524 + B25FFA583216D9C9D2213A8B3C427C6A /* NSObject+QMUIMultipleDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+QMUIMultipleDelegates.h"; path = "QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.h"; sourceTree = "<group>"; };
  525 + B26FF42D767BB2E6A993A94EB30DBC29 /* UITextField+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITextField+QMUI.m"; sourceTree = "<group>"; };
  526 + B45881E7D71F67C96FF4FA44A801D3C9 /* Pods-CNLiveEmptyView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Example-resources.sh"; sourceTree = "<group>"; };
  527 + B486D035DFA15E971FCBB939A382D549 /* QMUIAsset.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAsset.m; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m; sourceTree = "<group>"; };
  528 + B4C89055ECCB57B3A56318F598C5CA28 /* QMUIImagePreviewViewTransitionAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePreviewViewTransitionAnimator.m; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m; sourceTree = "<group>"; };
  529 + B4D8750A5FCB1ED4F34F50B194B17B7F /* QMUIConfigurationMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIConfigurationMacros.h; path = QMUIKit/QMUICore/QMUIConfigurationMacros.h; sourceTree = "<group>"; };
  530 + B52735629D4235A0BDD95132E2999660 /* CNLiveEmptyView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = CNLiveEmptyView.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  531 + B5C56617AB75CCE01118C8128FDF1F64 /* QMUIImagePickerCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerCollectionViewCell.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m; sourceTree = "<group>"; };
  532 + B5D064B65D40155BD70B64BB388B1ACF /* QMUIStaticTableViewCellData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIStaticTableViewCellData.m; path = QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m; sourceTree = "<group>"; };
  533 + B65B0B8E776B08BD1DE850C481CABC96 /* UIButton+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIButton+QMUI.h"; sourceTree = "<group>"; };
  534 + B69590567331243D21345E880160327D /* UINavigationController+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+QMUI.m"; path = "QMUIKit/UIKitExtensions/UINavigationController+QMUI.m"; sourceTree = "<group>"; };
  535 + B868D5A4F5C7283565D2FCCFD4DA168E /* UITableViewCell+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableViewCell+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h"; sourceTree = "<group>"; };
  536 + B8BD968040F7A09D4EBEE2F20A9F39CC /* QMUILinkButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILinkButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h; sourceTree = "<group>"; };
  537 + BA241FE0BABD76043ED1E4E0AE066D41 /* UIScrollView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIScrollView+QMUI.h"; sourceTree = "<group>"; };
  538 + BA7F2D7D88AB86A72FDA6D76DB4B96F5 /* UIInterface+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIInterface+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIInterface+QMUI.h"; sourceTree = "<group>"; };
  539 + BCC6F084D6F34C249C680A3A0B1449A8 /* UIView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIView+QMUI.h"; sourceTree = "<group>"; };
  540 + BDF56C90A7B7E8EB1C2D376674309117 /* UITableView+QMUIStaticCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+QMUIStaticCell.m"; path = "QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m"; sourceTree = "<group>"; };
  541 + BE6092B2EA6FB8EA45923D89A94F3BFC /* Pods-CNLiveEmptyView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Example.debug.xcconfig"; sourceTree = "<group>"; };
  542 + BECC15D823DCF17DFB168444DD512D83 /* QMUIToastBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastBackgroundView.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h; sourceTree = "<group>"; };
  543 + C06D0BC222CE3E61E465D76A20EF7812 /* NSAttributedString+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m"; sourceTree = "<group>"; };
  544 + C0B8E9C8A57CB3B34447C7AFF7EE44F3 /* QMUINavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationController.h; path = QMUIKit/QMUIMainFrame/QMUINavigationController.h; sourceTree = "<group>"; };
  545 + C0E295F9CA326954427EB0E5B99C32C9 /* QMUITableViewProtocols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableViewProtocols.h; path = QMUIKit/QMUIComponents/QMUITableViewProtocols.h; sourceTree = "<group>"; };
  546 + C0FEFE801A14A45382A8A00A81443E19 /* QMUITabBarViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITabBarViewController.m; path = QMUIKit/QMUIMainFrame/QMUITabBarViewController.m; sourceTree = "<group>"; };
  547 + C136D7A96F6AEC6E04F9D7BB36CEF407 /* QMUITestView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITestView.m; path = QMUIKit/QMUIComponents/QMUITestView.m; sourceTree = "<group>"; };
  548 + C15442CE05336642565CB6E148B01488 /* QMUIImagePreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePreviewViewController.m; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m; sourceTree = "<group>"; };
  549 + C3FAD9906F57EC9243FEEBAF1CC94A85 /* UIBarItem+QMUIBadge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarItem+QMUIBadge.h"; path = "QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.h"; sourceTree = "<group>"; };
  550 + C43A7E5C626923A12C6FE74C0DF6B8F4 /* QMUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITextField.h; path = QMUIKit/QMUIComponents/QMUITextField.h; sourceTree = "<group>"; };
  551 + C4A122ADE1B28F4931A5D1F00EA44BBF /* QMUINavigationBarScrollingSnapAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationBarScrollingSnapAnimator.m; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m; sourceTree = "<group>"; };
  552 + C61875C1C7CCD3C12C13552D6085CDC0 /* QMUIKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QMUIKit-dummy.m"; sourceTree = "<group>"; };
  553 + C885FA9876A632DBC6894FA1F7DF3FF5 /* QMUIMultipleDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIMultipleDelegates.h; path = QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h; sourceTree = "<group>"; };
  554 + C9398ABF09E8B8746F6F313652317810 /* QMUILabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILabel.m; path = QMUIKit/QMUIComponents/QMUILabel.m; sourceTree = "<group>"; };
  555 + CA8313B026D354228B21153842B59A48 /* QMUIAssetsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAssetsManager.m; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m; sourceTree = "<group>"; };
  556 + CAED37508C776E749D8B1A0AC673D1CF /* QMUICommonDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICommonDefines.h; path = QMUIKit/QMUICore/QMUICommonDefines.h; sourceTree = "<group>"; };
  557 + CBEFBD1348A991F10A4FAD4AA664A253 /* QMUILogNameManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogNameManager.h; path = QMUIKit/QMUIComponents/Log/QMUILogNameManager.h; sourceTree = "<group>"; };
  558 + CBF70F64119EA11EBFE453FC82669886 /* QMUITableViewHeaderFooterView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITableViewHeaderFooterView.m; path = QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m; sourceTree = "<group>"; };
  559 + CCB6A17FB5E745A52EDC0FC41A4F8296 /* UICollectionView+QMUICellSizeKeyCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+QMUICellSizeKeyCache.m"; path = "QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m"; sourceTree = "<group>"; };
  560 + CEAB45CBC99EEAB4F5A994E6581CD23F /* UITabBarItem+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarItem+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h"; sourceTree = "<group>"; };
  561 + CF884EDC11B438C15DC32E6103372FA5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  562 + D2F4DCE773B8DDE5C085E6E4708CE3F9 /* QMUIImagePickerPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerPreviewViewController.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h; sourceTree = "<group>"; };
  563 + D2F7A119D066B4550FC5E42E400F8862 /* UIFont+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIFont+QMUI.h"; sourceTree = "<group>"; };
  564 + D40604BA60BF9272C0BCC519EA278645 /* CNLiveEmptyView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveEmptyView-prefix.pch"; sourceTree = "<group>"; };
  565 + D423AE613459A02EF5750754E241E992 /* QMUIToolbarButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToolbarButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.h; sourceTree = "<group>"; };
  566 + D4464095CFC47051FEFA4E0CF85B2497 /* QMUIOrderedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIOrderedDictionary.m; path = QMUIKit/QMUIComponents/QMUIOrderedDictionary.m; sourceTree = "<group>"; };
  567 + D4994D415610E59E9DE52417033006E4 /* QMUIEmotionInputManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIEmotionInputManager.h; path = QMUIKit/QMUIComponents/QMUIEmotionInputManager.h; sourceTree = "<group>"; };
  568 + D537E9E21A1BAAB1E80CF579CBC55004 /* QMUIMultipleDelegates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIMultipleDelegates.m; path = QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m; sourceTree = "<group>"; };
  569 + D61FE2FAFA01733274DAF6F5A11A6C00 /* QMUIKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = QMUIKit.modulemap; sourceTree = "<group>"; };
  570 + D6505AAF0659F39DEAB36634B19A798D /* QMUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITextView.h; path = QMUIKit/QMUIComponents/QMUITextView.h; sourceTree = "<group>"; };
  571 + D67F9BBE995013B23D4586B5AB5A2EE0 /* UIImageView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIImageView+QMUI.h"; sourceTree = "<group>"; };
  572 + D8AAD4B9E2A2C7842EA9551EBEAC6A7E /* UIControl+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIControl+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIControl+QMUI.m"; sourceTree = "<group>"; };
  573 + D8B383EFF233CC47CFE93E39E3A294B3 /* UIViewController+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIViewController+QMUI.m"; sourceTree = "<group>"; };
  574 + DA6C6510D9ED4D0CD2FC651A247198D6 /* Pods-CNLiveEmptyView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveEmptyView_Example-dummy.m"; sourceTree = "<group>"; };
  575 + DBB1DA87013A89A9A0AA87994468E7B7 /* QMUIAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAlertController.m; path = QMUIKit/QMUIComponents/QMUIAlertController.m; sourceTree = "<group>"; };
  576 + DD02F0ED9678FC6298B2F20AB2D76063 /* QMUIImagePickerPreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerPreviewViewController.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m; sourceTree = "<group>"; };
  577 + DD309F2F8CB5E37EA28A715D01C270FB /* QMUIImagePreviewViewTransitionAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePreviewViewTransitionAnimator.h; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.h; sourceTree = "<group>"; };
  578 + DD4C38DC5FEC103A724629222991EB0A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  579 + DDA4634DEC017D84E09F2CD4139567C6 /* UITableView+QMUICellHeightKeyCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+QMUICellHeightKeyCache.h"; path = "QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.h"; sourceTree = "<group>"; };
  580 + DDDA9F16724F7DF41E399F7936141A26 /* QMUIOrderedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIOrderedDictionary.h; path = QMUIKit/QMUIComponents/QMUIOrderedDictionary.h; sourceTree = "<group>"; };
  581 + DEC8BDE0C3092C803525B946DB8576CC /* QMUIMoreOperationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIMoreOperationController.m; path = QMUIKit/QMUIComponents/QMUIMoreOperationController.m; sourceTree = "<group>"; };
  582 + DF8698EC7AE5965D0103956446E512B6 /* UINavigationBar+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+QMUI.h"; path = "QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h"; sourceTree = "<group>"; };
  583 + E04880C0C33071DE92510CF3E4219816 /* QMUINavigationTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationTitleView.m; path = QMUIKit/QMUIComponents/QMUINavigationTitleView.m; sourceTree = "<group>"; };
  584 + E191ACCD195AF9FEB074F6CB45C1269D /* QMUIAssetsGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAssetsGroup.h; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h; sourceTree = "<group>"; };
  585 + E26E328980D74476C4F336AD59C8DEDF /* QMUIKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIKeyboardManager.m; path = QMUIKit/QMUIComponents/QMUIKeyboardManager.m; sourceTree = "<group>"; };
  586 + E2977DDFBEF55ED13F4AF294B294CC36 /* QMUICollectionViewPagingLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICollectionViewPagingLayout.h; path = QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h; sourceTree = "<group>"; };
  587 + E4AD4D24307FD758878B3C7FD3F26715 /* NSObject+QMUIMultipleDelegates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+QMUIMultipleDelegates.m"; path = "QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m"; sourceTree = "<group>"; };
  588 + E54E4F49EB2413C6A87A157A5CBC845B /* QMUIConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIConfiguration.m; path = QMUIKit/QMUICore/QMUIConfiguration.m; sourceTree = "<group>"; };
  589 + E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
  590 + E626E9E36A29D01E46FBF42A7AF154E5 /* QMUICellHeightCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICellHeightCache.h; path = QMUIKit/QMUIComponents/QMUICellHeightCache.h; sourceTree = "<group>"; };
  591 + E6A0790F8B91ED97495544F4282217E4 /* UITableView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITableView+QMUI.m"; sourceTree = "<group>"; };
  592 + E73F9A40421DD79E40C5B3BED5E061CF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  593 + E86385A72F3BE692AC4018DB65885A7B /* UIWindow+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIWindow+QMUI.m"; sourceTree = "<group>"; };
  594 + EABE85B0DD17D8D8919CE747722ED10C /* QMUIPopupMenuItemProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupMenuItemProtocol.h; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuItemProtocol.h; sourceTree = "<group>"; };
  595 + EB229A67630CCBB2F844070BFBEC9144 /* QMUIStaticTableViewCellDataSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIStaticTableViewCellDataSource.m; path = QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m; sourceTree = "<group>"; };
  596 + EC65E8D340A5A5B77C907E2793E67762 /* QMUICellHeightCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICellHeightCache.m; path = QMUIKit/QMUIComponents/QMUICellHeightCache.m; sourceTree = "<group>"; };
  597 + ED57E4A38F06537DC6966171C30BF157 /* QMUILogManagerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogManagerViewController.m; path = QMUIKit/QMUIComponents/QMUILogManagerViewController.m; sourceTree = "<group>"; };
  598 + EDC94B72CC75F40FA770C30E825655D5 /* QMUIEmotionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIEmotionView.h; path = QMUIKit/QMUIComponents/QMUIEmotionView.h; sourceTree = "<group>"; };
  599 + EE39525CA5175DB98D35B53C5F5EA1B6 /* QMUIImagePreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePreviewViewController.h; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.h; sourceTree = "<group>"; };
  600 + F19D6A92D9B1A0E9C28D5A8485EBE11D /* QMUITips.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITips.m; path = QMUIKit/QMUIComponents/QMUITips.m; sourceTree = "<group>"; };
  601 + F3B2BAD0624686F245F57504F8EFF273 /* QMUICellSizeKeyCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICellSizeKeyCache.m; path = QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m; sourceTree = "<group>"; };
  602 + F4F4B66BD0FAE2F4269835611D719976 /* QMUIGridView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIGridView.m; path = QMUIKit/QMUIComponents/QMUIGridView.m; sourceTree = "<group>"; };
  603 + F55C4429DF1417CDE5C08227ECFD97D2 /* UIActivityIndicatorView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h"; sourceTree = "<group>"; };
  604 + F6F657C9BD0220BD743C922AF5B222E9 /* NSPointerArray+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSPointerArray+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m"; sourceTree = "<group>"; };
  605 + FA3D603DFFA65ADC3AB2E5BABB74829F /* QMUILogNameManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogNameManager.m; path = QMUIKit/QMUIComponents/Log/QMUILogNameManager.m; sourceTree = "<group>"; };
  606 + FAA9729534672F275FC6765EC39073BF /* QMUIMoreOperationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIMoreOperationController.h; path = QMUIKit/QMUIComponents/QMUIMoreOperationController.h; sourceTree = "<group>"; };
  607 + FB68B2AFC6810F003EA15FB5FF704DE0 /* UIColor+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIColor+QMUI.m"; sourceTree = "<group>"; };
  608 + FCDBCAE4C1F9A3184DCC7BDEB562D1B0 /* CNLIveEmptyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CNLIveEmptyView.m; path = CNLiveEmptyView/Classes/CNLIveEmptyView.m; sourceTree = "<group>"; };
  609 + FD366EEA95B02272042009FD3216960C /* QMUICommonViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICommonViewController.h; path = QMUIKit/QMUIMainFrame/QMUICommonViewController.h; sourceTree = "<group>"; };
  610 + FE6C5B6806715C91E5F7F9EC9C69F532 /* QMUIWeakObjectContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIWeakObjectContainer.m; path = QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m; sourceTree = "<group>"; };
  611 + FF6C6D629E4E1A8B1398CEE675C71C62 /* QMUIPieProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPieProgressView.h; path = QMUIKit/QMUIComponents/QMUIPieProgressView.h; sourceTree = "<group>"; };
  612 + FF9FF34D4DFD43A9746700AFCFE9DFBD /* NSNumber+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNumber+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSNumber+QMUI.m"; sourceTree = "<group>"; };
  613 +/* End PBXFileReference section */
  614 +
  615 +/* Begin PBXFrameworksBuildPhase section */
  616 + 3FB64F9A0E890DA8CFA3FD2F765B67F7 /* Frameworks */ = {
  617 + isa = PBXFrameworksBuildPhase;
  618 + buildActionMask = 2147483647;
  619 + files = (
  620 + 8A225DDFA94C552C34A0D07AB54F4D0D /* Foundation.framework in Frameworks */,
  621 + );
  622 + runOnlyForDeploymentPostprocessing = 0;
  623 + };
  624 + 8F8B907D1852C4FD662DD0039E54438B /* Frameworks */ = {
  625 + isa = PBXFrameworksBuildPhase;
  626 + buildActionMask = 2147483647;
  627 + files = (
  628 + C6B1162684F87B969DAEB12207E8F280 /* CoreGraphics.framework in Frameworks */,
  629 + 0D657BB8801944CBC55602078E68992C /* Foundation.framework in Frameworks */,
  630 + 35D163D9D66833E34D252B2AE11E5D0C /* Photos.framework in Frameworks */,
  631 + 5D194303E589FDF7340D2DD56032F71F /* UIKit.framework in Frameworks */,
  632 + );
  633 + runOnlyForDeploymentPostprocessing = 0;
  634 + };
  635 + A2FC4013BF043B705DCF81D0B1C5A370 /* Frameworks */ = {
  636 + isa = PBXFrameworksBuildPhase;
  637 + buildActionMask = 2147483647;
  638 + files = (
  639 + 041D318B110F9AC41214BE407744F3DC /* Foundation.framework in Frameworks */,
  640 + );
  641 + runOnlyForDeploymentPostprocessing = 0;
  642 + };
  643 + FE6EF9BEA5A15B749A305804897D7649 /* Frameworks */ = {
  644 + isa = PBXFrameworksBuildPhase;
  645 + buildActionMask = 2147483647;
  646 + files = (
  647 + 5F0A41598DB8408CC2ABAD9A2E54BF50 /* Foundation.framework in Frameworks */,
  648 + FA744AB026C3D0F55BE525A87D0E17B3 /* QMUIKit.framework in Frameworks */,
  649 + 6341376F11CA2761AE89A6A655AC8E2F /* UIKit.framework in Frameworks */,
  650 + );
  651 + runOnlyForDeploymentPostprocessing = 0;
  652 + };
  653 +/* End PBXFrameworksBuildPhase section */
  654 +
  655 +/* Begin PBXGroup section */
  656 + 062A12DAF131145B95E270232D2E924B /* QMUITextView */ = {
  657 + isa = PBXGroup;
  658 + children = (
  659 + D6505AAF0659F39DEAB36634B19A798D /* QMUITextView.h */,
  660 + 2B054A6D940AF86C0A85D955EBEF8C9F /* QMUITextView.m */,
  661 + );
  662 + name = QMUITextView;
  663 + sourceTree = "<group>";
  664 + };
  665 + 0726A26A92EEA0856185D73EA14679B0 /* QMUIEmotionView */ = {
  666 + isa = PBXGroup;
  667 + children = (
  668 + EDC94B72CC75F40FA770C30E825655D5 /* QMUIEmotionView.h */,
  669 + 5FBCA193824C0876896D38178A616F51 /* QMUIEmotionView.m */,
  670 + );
  671 + name = QMUIEmotionView;
  672 + sourceTree = "<group>";
  673 + };
  674 + 09956B971C6F93FE2DADC2D539B93F70 /* QMUITableViewHeaderFooterView */ = {
  675 + isa = PBXGroup;
  676 + children = (
  677 + 3A3CFA4E9B72274853BD50AA1762BEA4 /* QMUITableViewHeaderFooterView.h */,
  678 + CBF70F64119EA11EBFE453FC82669886 /* QMUITableViewHeaderFooterView.m */,
  679 + );
  680 + name = QMUITableViewHeaderFooterView;
  681 + sourceTree = "<group>";
  682 + };
  683 + 12B802F5548307A619DDAE73E289ECEA /* QMUIStaticTableView */ = {
  684 + isa = PBXGroup;
  685 + children = (
  686 + 2D214161CD57C864F4C0C809DBA89B14 /* QMUIStaticTableViewCellData.h */,
  687 + B5D064B65D40155BD70B64BB388B1ACF /* QMUIStaticTableViewCellData.m */,
  688 + 01DE8BC108D919FB6CF683FF361AE29E /* QMUIStaticTableViewCellDataSource.h */,
  689 + EB229A67630CCBB2F844070BFBEC9144 /* QMUIStaticTableViewCellDataSource.m */,
  690 + 4EAB1C72CEACC749511F82D680CB3CF0 /* UITableView+QMUIStaticCell.h */,
  691 + BDF56C90A7B7E8EB1C2D376674309117 /* UITableView+QMUIStaticCell.m */,
  692 + );
  693 + name = QMUIStaticTableView;
  694 + sourceTree = "<group>";
  695 + };
  696 + 139C928306B42B115BB2C558C4434551 /* QMUIEmotionInputManager */ = {
  697 + isa = PBXGroup;
  698 + children = (
  699 + D4994D415610E59E9DE52417033006E4 /* QMUIEmotionInputManager.h */,
  700 + 93253C7854DAE2514FAB20DD80CF745A /* QMUIEmotionInputManager.m */,
  701 + );
  702 + name = QMUIEmotionInputManager;
  703 + sourceTree = "<group>";
  704 + };
  705 + 167962A02821A12F9DA0AAA78A7834FC /* CNLiveEmptyView */ = {
  706 + isa = PBXGroup;
  707 + children = (
  708 + 1D1F8088B05CE4F5E6DCE8B2B342BA43 /* CNLIveEmptyView.h */,
  709 + FCDBCAE4C1F9A3184DCC7BDEB562D1B0 /* CNLIveEmptyView.m */,
  710 + 4605358BB0CE26C8AB77C9BDB8F22F5D /* Pod */,
  711 + 76853139C6E413854C651715367BE0DA /* Support Files */,
  712 + );
  713 + name = CNLiveEmptyView;
  714 + path = ../..;
  715 + sourceTree = "<group>";
  716 + };
  717 + 1C4FEE40DEFC07DFD4AD2374BDFA5961 /* QMUIEmptyView */ = {
  718 + isa = PBXGroup;
  719 + children = (
  720 + 4636F28001CE67ED9789F72ACB72D4DB /* QMUIEmptyView.h */,
  721 + 3588B9E21B3E79011ABBE2A871A9D2AD /* QMUIEmptyView.m */,
  722 + );
  723 + name = QMUIEmptyView;
  724 + sourceTree = "<group>";
  725 + };
  726 + 1FEC0F572FD5AF79CFC1F7A3B09E6802 /* Products */ = {
  727 + isa = PBXGroup;
  728 + children = (
  729 + 9D3622F9AD5484F18ABFF1B11583736C /* CNLiveEmptyView.framework */,
  730 + A204DB48B7DC8BEF2C40984796A23B85 /* Pods_CNLiveEmptyView_Example.framework */,
  731 + 40DD84E4741483E717928ECD5BC7511A /* Pods_CNLiveEmptyView_Tests.framework */,
  732 + 3430509A8B18E41D42C8E93B541332EC /* QMUIKit.framework */,
  733 + );
  734 + name = Products;
  735 + sourceTree = "<group>";
  736 + };
  737 + 264AB5E8E0CDB7FA62084C1DDF346C57 /* Development Pods */ = {
  738 + isa = PBXGroup;
  739 + children = (
  740 + 167962A02821A12F9DA0AAA78A7834FC /* CNLiveEmptyView */,
  741 + );
  742 + name = "Development Pods";
  743 + sourceTree = "<group>";
  744 + };
  745 + 2DEF541115245127BC73928F440BD281 /* QMUICollectionViewPagingLayout */ = {
  746 + isa = PBXGroup;
  747 + children = (
  748 + E2977DDFBEF55ED13F4AF294B294CC36 /* QMUICollectionViewPagingLayout.h */,
  749 + 1952CEE8CACB06D5BB473881DA37508C /* QMUICollectionViewPagingLayout.m */,
  750 + );
  751 + name = QMUICollectionViewPagingLayout;
  752 + sourceTree = "<group>";
  753 + };
  754 + 2F49AC64DF9C8C897962F47DE5A10B3F /* QMUILabel */ = {
  755 + isa = PBXGroup;
  756 + children = (
  757 + 75B55534A34D585299A7D9664A7C39CC /* QMUILabel.h */,
  758 + C9398ABF09E8B8746F6F313652317810 /* QMUILabel.m */,
  759 + );
  760 + name = QMUILabel;
  761 + sourceTree = "<group>";
  762 + };
  763 + 305B5FF1BB831116E25BA7C8796EFD46 /* NavigationBarTransition */ = {
  764 + isa = PBXGroup;
  765 + children = (
  766 + 6EC3F3AC95A6649895997EFE7DBB8A15 /* UINavigationBar+Transition.h */,
  767 + 7E99114CB3E2D765D08B090D9D995059 /* UINavigationBar+Transition.m */,
  768 + 0795C145C01D191967884F859BD43A9D /* UINavigationController+NavigationBarTransition.h */,
  769 + 2DE6E1E6FCDCFB243945ADA92A0F6AB5 /* UINavigationController+NavigationBarTransition.m */,
  770 + );
  771 + name = NavigationBarTransition;
  772 + sourceTree = "<group>";
  773 + };
  774 + 30A2D91A73E10D8831CBB613F26C693E /* QMUISearchController */ = {
  775 + isa = PBXGroup;
  776 + children = (
  777 + 327C8E15776D10CC335EE39D482F0B93 /* QMUISearchController.h */,
  778 + A045DD906F8DDC43AA5B20073E0C4FB8 /* QMUISearchController.m */,
  779 + );
  780 + name = QMUISearchController;
  781 + sourceTree = "<group>";
  782 + };
  783 + 3172EB6D3148AE73EB93A416C3E2F02B /* QMUINavigationButton */ = {
  784 + isa = PBXGroup;
  785 + children = (
  786 + 639E0FFC9470B61321B1DA3C8531BE68 /* QMUINavigationButton.h */,
  787 + 283F50BE7F4B50C41EEA03E6BE9DE8B8 /* QMUINavigationButton.m */,
  788 + );
  789 + name = QMUINavigationButton;
  790 + sourceTree = "<group>";
  791 + };
  792 + 33C159FA30B7045D8C1178B524186BB3 /* QMUIPieProgressView */ = {
  793 + isa = PBXGroup;
  794 + children = (
  795 + FF6C6D629E4E1A8B1398CEE675C71C62 /* QMUIPieProgressView.h */,
  796 + 1932056E130DE52DD4D2C1FFEFF6488E /* QMUIPieProgressView.m */,
  797 + );
  798 + name = QMUIPieProgressView;
  799 + sourceTree = "<group>";
  800 + };
  801 + 37E650697568913C0DC6FEC45E92F519 /* QMUILinkButton */ = {
  802 + isa = PBXGroup;
  803 + children = (
  804 + B8BD968040F7A09D4EBEE2F20A9F39CC /* QMUILinkButton.h */,
  805 + 39CA4E6D9642C1EA36A3E91C9A6E0472 /* QMUILinkButton.m */,
  806 + );
  807 + name = QMUILinkButton;
  808 + sourceTree = "<group>";
  809 + };
  810 + 39A8C1C65B7860FA3C8DBF80ECC43931 /* QMUICellHeightCache */ = {
  811 + isa = PBXGroup;
  812 + children = (
  813 + E626E9E36A29D01E46FBF42A7AF154E5 /* QMUICellHeightCache.h */,
  814 + EC65E8D340A5A5B77C907E2793E67762 /* QMUICellHeightCache.m */,
  815 + );
  816 + name = QMUICellHeightCache;
  817 + sourceTree = "<group>";
  818 + };
  819 + 3AAFAC8300D4258CCD2D13FC97FB58A7 /* QMUIMainFrame */ = {
  820 + isa = PBXGroup;
  821 + children = (
  822 + 1F61563A08E28F519DB973AE802F57CB /* QMUICommonTableViewController.h */,
  823 + 00838B8220BC4A9F6921DEDEF7C87BB5 /* QMUICommonTableViewController.m */,
  824 + FD366EEA95B02272042009FD3216960C /* QMUICommonViewController.h */,
  825 + 55D52D939C034CAF431D2B076FF05EF6 /* QMUICommonViewController.m */,
  826 + C0B8E9C8A57CB3B34447C7AFF7EE44F3 /* QMUINavigationController.h */,
  827 + 4A048ACF092059565289CF4641A22005 /* QMUINavigationController.m */,
  828 + 824F70F3808B026C14632564A627F063 /* QMUITabBarViewController.h */,
  829 + C0FEFE801A14A45382A8A00A81443E19 /* QMUITabBarViewController.m */,
  830 + );
  831 + name = QMUIMainFrame;
  832 + sourceTree = "<group>";
  833 + };
  834 + 4557CA5CC2304E613A1AAC45FDC896C8 /* iOS */ = {
  835 + isa = PBXGroup;
  836 + children = (
  837 + 40260A64A188F91D6A6381DF6BFCA26D /* CoreGraphics.framework */,
  838 + E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */,
  839 + 5AEEFD6E48F6EC9A483894FD94DE6BB7 /* Photos.framework */,
  840 + 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */,
  841 + );
  842 + name = iOS;
  843 + sourceTree = "<group>";
  844 + };
  845 + 4605358BB0CE26C8AB77C9BDB8F22F5D /* Pod */ = {
  846 + isa = PBXGroup;
  847 + children = (
  848 + B52735629D4235A0BDD95132E2999660 /* CNLiveEmptyView.podspec */,
  849 + 2CAD66BB8CA2859628157161F89ECDDC /* LICENSE */,
  850 + 609C02E0FEB2DC79139993E456BA9A0D /* README.md */,
  851 + );
  852 + name = Pod;
  853 + sourceTree = "<group>";
  854 + };
  855 + 47F8F635478F0533B2C22914C69945F6 /* QMUIMoreOperationController */ = {
  856 + isa = PBXGroup;
  857 + children = (
  858 + FAA9729534672F275FC6765EC39073BF /* QMUIMoreOperationController.h */,
  859 + DEC8BDE0C3092C803525B946DB8576CC /* QMUIMoreOperationController.m */,
  860 + );
  861 + name = QMUIMoreOperationController;
  862 + sourceTree = "<group>";
  863 + };
  864 + 480610B2264E6D38820777EAA13C6D9A /* QMUIImagePickerLibrary */ = {
  865 + isa = PBXGroup;
  866 + children = (
  867 + 58D17B68E99341DC48C2E81F03B96144 /* QMUIAlbumViewController.h */,
  868 + 72B82B4BCFD16806FC20C290B3D2E699 /* QMUIAlbumViewController.m */,
  869 + 3E0BC95E8F4CCB85D92C0CCE6DDB679B /* QMUIImagePickerCollectionViewCell.h */,
  870 + B5C56617AB75CCE01118C8128FDF1F64 /* QMUIImagePickerCollectionViewCell.m */,
  871 + AD0EEC5A4431089D9628CC12CE116626 /* QMUIImagePickerHelper.h */,
  872 + 5197D6245F70C0122146EB6DFD6F879B /* QMUIImagePickerHelper.m */,
  873 + D2F4DCE773B8DDE5C085E6E4708CE3F9 /* QMUIImagePickerPreviewViewController.h */,
  874 + DD02F0ED9678FC6298B2F20AB2D76063 /* QMUIImagePickerPreviewViewController.m */,
  875 + 161B95BB46BE053A3A86B78C869B9837 /* QMUIImagePickerViewController.h */,
  876 + 7EC56849B1C6696F083821703676DA32 /* QMUIImagePickerViewController.m */,
  877 + );
  878 + name = QMUIImagePickerLibrary;
  879 + sourceTree = "<group>";
  880 + };
  881 + 481532306AED456E3C7C557E62D58BFA /* QMUITextField */ = {
  882 + isa = PBXGroup;
  883 + children = (
  884 + C43A7E5C626923A12C6FE74C0DF6B8F4 /* QMUITextField.h */,
  885 + 9252BCC60CA50B365DDCC86BBD5BE970 /* QMUITextField.m */,
  886 + );
  887 + name = QMUITextField;
  888 + sourceTree = "<group>";
  889 + };
  890 + 4A94C8296CE38CB53BAC12B0D8E1EA9A /* QMUIKeyboardManager */ = {
  891 + isa = PBXGroup;
  892 + children = (
  893 + 76039CB566391A6BA6AEBF7D9734C789 /* QMUIKeyboardManager.h */,
  894 + E26E328980D74476C4F336AD59C8DEDF /* QMUIKeyboardManager.m */,
  895 + );
  896 + name = QMUIKeyboardManager;
  897 + sourceTree = "<group>";
  898 + };
  899 + 4C8E490AF8CD5461A29E5BB4114F502F /* QMUIWeakObjectContainer */ = {
  900 + isa = PBXGroup;
  901 + children = (
  902 + 0ABC0D68AF99F730F1536B7F5A57C071 /* QMUIWeakObjectContainer.h */,
  903 + FE6C5B6806715C91E5F7F9EC9C69F532 /* QMUIWeakObjectContainer.m */,
  904 + );
  905 + name = QMUIWeakObjectContainer;
  906 + sourceTree = "<group>";
  907 + };
  908 + 52B3B98205CECBE3077659D635EFBA65 /* QMUIImagePreviewView */ = {
  909 + isa = PBXGroup;
  910 + children = (
  911 + 355CD548B59249FF7CE60F8D01F476DE /* QMUIImagePreviewView.h */,
  912 + 9FFFF25B06592EA5C7EFA48A1258266B /* QMUIImagePreviewView.m */,
  913 + EE39525CA5175DB98D35B53C5F5EA1B6 /* QMUIImagePreviewViewController.h */,
  914 + C15442CE05336642565CB6E148B01488 /* QMUIImagePreviewViewController.m */,
  915 + DD309F2F8CB5E37EA28A715D01C270FB /* QMUIImagePreviewViewTransitionAnimator.h */,
  916 + B4C89055ECCB57B3A56318F598C5CA28 /* QMUIImagePreviewViewTransitionAnimator.m */,
  917 + );
  918 + name = QMUIImagePreviewView;
  919 + sourceTree = "<group>";
  920 + };
  921 + 541CFB4F80421BAE0BC464F7659BDD17 /* QMUIToolbarButton */ = {
  922 + isa = PBXGroup;
  923 + children = (
  924 + D423AE613459A02EF5750754E241E992 /* QMUIToolbarButton.h */,
  925 + 4D850ABD913ABEBD0DDB6DF2CED64C70 /* QMUIToolbarButton.m */,
  926 + );
  927 + name = QMUIToolbarButton;
  928 + sourceTree = "<group>";
  929 + };
  930 + 55E8ACE827226ADD70D06AFC62A7B60F /* QMUITableViewCell */ = {
  931 + isa = PBXGroup;
  932 + children = (
  933 + 2DED7AACC5025619371184D791E6FEFC /* QMUITableViewCell.h */,
  934 + ACDE20E4892A38F41F0E4F9CF62A11DC /* QMUITableViewCell.m */,
  935 + );
  936 + name = QMUITableViewCell;
  937 + sourceTree = "<group>";
  938 + };
  939 + 581B249E9F39EADD6F7AF8576CF87785 /* QMUIComponents */ = {
  940 + isa = PBXGroup;
  941 + children = (
  942 + 305B5FF1BB831116E25BA7C8796EFD46 /* NavigationBarTransition */,
  943 + A100DDBBC659B2C381A8B059E7822364 /* QMUIAlertController */,
  944 + AF5278317C4E5A24F832ED4A2A9874C4 /* QMUIAssetLibrary */,
  945 + 803FC91935F8EF864290CA54D8E7217E /* QMUIBadge */,
  946 + 9C45CA691D5E54E7CE7B50B01A078733 /* QMUIButton */,
  947 + BB0569D6B89D7096CA8F6D6C28438D59 /* QMUICAAnimationExtension */,
  948 + 39A8C1C65B7860FA3C8DBF80ECC43931 /* QMUICellHeightCache */,
  949 + DEA2BFD290D1183AB940AB977EE3674D /* QMUICellHeightKeyCache */,
  950 + F592569885196FF748E852FD6BDDB4BA /* QMUICellSizeKeyCache */,
  951 + 2DEF541115245127BC73928F440BD281 /* QMUICollectionViewPagingLayout */,
  952 + CEAEEB6174DFF2140CB3F9141729F212 /* QMUIDialogViewController */,
  953 + 139C928306B42B115BB2C558C4434551 /* QMUIEmotionInputManager */,
  954 + 0726A26A92EEA0856185D73EA14679B0 /* QMUIEmotionView */,
  955 + 1C4FEE40DEFC07DFD4AD2374BDFA5961 /* QMUIEmptyView */,
  956 + E179A106D04944F2F0DE17BDF5C856ED /* QMUIFillButton */,
  957 + AD6462EB0869D3043C09A24EABB09C4C /* QMUIFloatLayoutView */,
  958 + 72DD45249045A0AA58BEB6335CF1243A /* QMUIGhostButton */,
  959 + 9D3566CC9DF48929C0E9CD269D65B04C /* QMUIGridView */,
  960 + 480610B2264E6D38820777EAA13C6D9A /* QMUIImagePickerLibrary */,
  961 + 52B3B98205CECBE3077659D635EFBA65 /* QMUIImagePreviewView */,
  962 + 4A94C8296CE38CB53BAC12B0D8E1EA9A /* QMUIKeyboardManager */,
  963 + 2F49AC64DF9C8C897962F47DE5A10B3F /* QMUILabel */,
  964 + 37E650697568913C0DC6FEC45E92F519 /* QMUILinkButton */,
  965 + 98D1AB27D4561B330399DB3DC931EAE4 /* QMUILogManagerViewController */,
  966 + 803E01AEAE02FF2CB369C6AA942B2BD4 /* QMUILogWithConfigurationSupported */,
  967 + 788A93EEA78518CF6C8D2D4412B36890 /* QMUIMarqueeLabel */,
  968 + E58A83D28E188B12F927C561FF451ED9 /* QMUIModalPresentationViewController */,
  969 + 47F8F635478F0533B2C22914C69945F6 /* QMUIMoreOperationController */,
  970 + 94D0632D9A5065B1A048FFF394F6B3B2 /* QMUIMultipleDelegates */,
  971 + 3172EB6D3148AE73EB93A416C3E2F02B /* QMUINavigationButton */,
  972 + A91B53AA523FB1B8A2E2D10AC96D6F9E /* QMUINavigationTitleView */,
  973 + 7EA30F6FB947E0E5FB176D0A45ACF18C /* QMUIOrderedDictionary */,
  974 + 33C159FA30B7045D8C1178B524186BB3 /* QMUIPieProgressView */,
  975 + FB726ECB895BD7AA3A82B6CA595502AD /* QMUIPopupContainerView */,
  976 + 8497D58A965A3E5F928447AE7B86545B /* QMUIPopupMenuView */,
  977 + D65CB176156B38BE46C3F652FE1322C6 /* QMUIScrollAnimator */,
  978 + E1B6D1FB656CCF62033CA4A49F68B47E /* QMUISearchBar */,
  979 + 30A2D91A73E10D8831CBB613F26C693E /* QMUISearchController */,
  980 + 8D52B9E650EB062F01BD67FECCDB2667 /* QMUISegmentedControl */,
  981 + 907890214060B4062542A167A65792EE /* QMUISlider */,
  982 + 12B802F5548307A619DDAE73E289ECEA /* QMUIStaticTableView */,
  983 + B6ADB803F92DEF7F83F53BB89811AF10 /* QMUITableView */,
  984 + 55E8ACE827226ADD70D06AFC62A7B60F /* QMUITableViewCell */,
  985 + 09956B971C6F93FE2DADC2D539B93F70 /* QMUITableViewHeaderFooterView */,
  986 + E87D398D4CD977C27D709E847B54FF15 /* QMUITableViewProtocols */,
  987 + 75F596C2B3B7FF91276D036E3ACFB627 /* QMUITestView */,
  988 + 481532306AED456E3C7C557E62D58BFA /* QMUITextField */,
  989 + 062A12DAF131145B95E270232D2E924B /* QMUITextView */,
  990 + C6ACB09B97FC32A9A4B9EDE6492769E1 /* QMUITips */,
  991 + AF3BBA4C13E10CF583EDE123A86CFA70 /* QMUIToastView */,
  992 + 541CFB4F80421BAE0BC464F7659BDD17 /* QMUIToolbarButton */,
  993 + D62452C86EF6C2676B47DC46D697BB4B /* QMUIVisualEffectView */,
  994 + 851113A323B57B8CD83605709F7EF267 /* QMUIZoomImageView */,
  995 + );
  996 + name = QMUIComponents;
  997 + sourceTree = "<group>";
  998 + };
  999 + 5F7097135637684CB9A438495F19A6EA /* Pods */ = {
  1000 + isa = PBXGroup;
  1001 + children = (
  1002 + 85E29D5FDE1A34D1CC34D46D41967320 /* QMUIKit */,
  1003 + );
  1004 + name = Pods;
  1005 + sourceTree = "<group>";
  1006 + };
  1007 + 61C604EA3B826F83242AD570542402D4 /* Frameworks */ = {
  1008 + isa = PBXGroup;
  1009 + children = (
  1010 + 9508DF866BFC31906CF430A49E544810 /* QMUIKit.framework */,
  1011 + 4557CA5CC2304E613A1AAC45FDC896C8 /* iOS */,
  1012 + );
  1013 + name = Frameworks;
  1014 + sourceTree = "<group>";
  1015 + };
  1016 + 6C063C8AC46A20999EEC2A88E6DC47F2 /* QMUILog */ = {
  1017 + isa = PBXGroup;
  1018 + children = (
  1019 + 233D456A0F45469D9CC3A7F13759705D /* QMUILog.h */,
  1020 + 2889BF54D43039E34ECE63FAC85D2E1D /* QMUILogger.h */,
  1021 + 6FDF4F1F4B6CBE02E67053FD29C9E39C /* QMUILogger.m */,
  1022 + 6178F81A5DCE840951801F0B9BD0BBB9 /* QMUILogItem.h */,
  1023 + 22AFA529D8BB06D207B0AFC4DB4C63B0 /* QMUILogItem.m */,
  1024 + CBEFBD1348A991F10A4FAD4AA664A253 /* QMUILogNameManager.h */,
  1025 + FA3D603DFFA65ADC3AB2E5BABB74829F /* QMUILogNameManager.m */,
  1026 + );
  1027 + name = QMUILog;
  1028 + sourceTree = "<group>";
  1029 + };
  1030 + 6FAF552236C756BA2F6070D84D8615CD /* Support Files */ = {
  1031 + isa = PBXGroup;
  1032 + children = (
  1033 + A4B2C5041D6D79465BB12E2C1E36E139 /* Info.plist */,
  1034 + D61FE2FAFA01733274DAF6F5A11A6C00 /* QMUIKit.modulemap */,
  1035 + 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */,
  1036 + C61875C1C7CCD3C12C13552D6085CDC0 /* QMUIKit-dummy.m */,
  1037 + A1DD097D0D9BD2343FC6C1485A2D7C4B /* QMUIKit-prefix.pch */,
  1038 + 8943F79BF4D4A53FFFE3F0050916BCF6 /* QMUIKit-umbrella.h */,
  1039 + );
  1040 + name = "Support Files";
  1041 + path = "../Target Support Files/QMUIKit";
  1042 + sourceTree = "<group>";
  1043 + };
  1044 + 72DD45249045A0AA58BEB6335CF1243A /* QMUIGhostButton */ = {
  1045 + isa = PBXGroup;
  1046 + children = (
  1047 + 59D447ACD7C50558809EEB9011172DC5 /* QMUIGhostButton.h */,
  1048 + 967AB00EA7E3BA4F62B4C7085A4711CF /* QMUIGhostButton.m */,
  1049 + );
  1050 + name = QMUIGhostButton;
  1051 + sourceTree = "<group>";
  1052 + };
  1053 + 75F596C2B3B7FF91276D036E3ACFB627 /* QMUITestView */ = {
  1054 + isa = PBXGroup;
  1055 + children = (
  1056 + A1B02F3630DD5A74CFAFE7F1557DF971 /* QMUITestView.h */,
  1057 + C136D7A96F6AEC6E04F9D7BB36CEF407 /* QMUITestView.m */,
  1058 + );
  1059 + name = QMUITestView;
  1060 + sourceTree = "<group>";
  1061 + };
  1062 + 7610F8FFA5E86A792710626D5C721002 /* QMUICore */ = {
  1063 + isa = PBXGroup;
  1064 + children = (
  1065 + 2ECAAEED7ED1AE6BB0C74A7E484DE701 /* CALayer+QMUI.h */,
  1066 + 75549842FFA8F83CDFD8C4645AE95611 /* CALayer+QMUI.m */,
  1067 + 6C0ACFDAD3DF53E0D2B5A46263182A5D /* NSArray+QMUI.h */,
  1068 + 2CBCC2CED44C83247713DE526F707C6A /* NSArray+QMUI.m */,
  1069 + 5079DDDCF8ED34E921770AEE593997D2 /* NSAttributedString+QMUI.h */,
  1070 + C06D0BC222CE3E61E465D76A20EF7812 /* NSAttributedString+QMUI.m */,
  1071 + 1342CAA536F1093670F70710BF2D0E8B /* NSCharacterSet+QMUI.h */,
  1072 + A9D49056A96BBFFB26BA7E5221EC613C /* NSCharacterSet+QMUI.m */,
  1073 + 9E5F415A8486BD8FFF6D2BEDDD5AF0CD /* NSNumber+QMUI.h */,
  1074 + FF9FF34D4DFD43A9746700AFCFE9DFBD /* NSNumber+QMUI.m */,
  1075 + 4FBA584E8D69023B04F3E9C0EE13AC4B /* NSObject+QMUI.h */,
  1076 + 77202FDF896E7023A466BBBE8D9EF99E /* NSObject+QMUI.m */,
  1077 + 422D99FD1AC04F522A413CF7ADF124CF /* NSParagraphStyle+QMUI.h */,
  1078 + 66FC77F74C6B4AF75D3E2EFBE3DD25A6 /* NSParagraphStyle+QMUI.m */,
  1079 + 30F176113F7996CD3D61EA30EB7BBCB8 /* NSPointerArray+QMUI.h */,
  1080 + F6F657C9BD0220BD743C922AF5B222E9 /* NSPointerArray+QMUI.m */,
  1081 + AE749EADDDFC3C0BCB54B92B97DC9A3E /* NSString+QMUI.h */,
  1082 + 841D768E9E7FEF437D4846C1C31B5575 /* NSString+QMUI.m */,
  1083 + 54D7951DD02F645C9086235BB4A8D5AD /* NSURL+QMUI.h */,
  1084 + 945A54E818CAE0C47232E4C381A7687E /* NSURL+QMUI.m */,
  1085 + CAED37508C776E749D8B1A0AC673D1CF /* QMUICommonDefines.h */,
  1086 + 2F698C6F858196B9297E6D63FB0E63E2 /* QMUIConfiguration.h */,
  1087 + E54E4F49EB2413C6A87A157A5CBC845B /* QMUIConfiguration.m */,
  1088 + B4D8750A5FCB1ED4F34F50B194B17B7F /* QMUIConfigurationMacros.h */,
  1089 + 077AFA915EC01CA9175704F67FBCAFD0 /* QMUICore.h */,
  1090 + 5CE3BE5E75CEA2213D2096157B25FF8B /* QMUIHelper.h */,
  1091 + 4EAD16142E5A442F1D766F3A5D49BB0D /* QMUIHelper.m */,
  1092 + 127E47F52696D3D8ED8F707C8C66EE50 /* QMUIRuntime.h */,
  1093 + 946F39A3036111880BAED7E5EF15FA33 /* QMUIRuntime.m */,
  1094 + F55C4429DF1417CDE5C08227ECFD97D2 /* UIActivityIndicatorView+QMUI.h */,
  1095 + 8AD23780728557F602277DDEF5C2921B /* UIActivityIndicatorView+QMUI.m */,
  1096 + 1777C15B5E4B64602B31CDE9D5B871DE /* UIBarItem+QMUI.h */,
  1097 + 683062B5F72F6AEA59EF18E1D5578B30 /* UIBarItem+QMUI.m */,
  1098 + 1996B9D42A07181EA5C80FE74AF1A167 /* UIBezierPath+QMUI.h */,
  1099 + 0E8DF67EC99D97064B5BB52A25FD748D /* UIBezierPath+QMUI.m */,
  1100 + B65B0B8E776B08BD1DE850C481CABC96 /* UIButton+QMUI.h */,
  1101 + 3B0AA544D03796CB11223A4816268340 /* UIButton+QMUI.m */,
  1102 + A44B5F9CD4EB82148EAD99B391AECEAE /* UICollectionView+QMUI.h */,
  1103 + 6B76C07B4297EEF730A63E8D1187E125 /* UICollectionView+QMUI.m */,
  1104 + 869C42510C54A3ADB853E5BF49F8E6A5 /* UIColor+QMUI.h */,
  1105 + FB68B2AFC6810F003EA15FB5FF704DE0 /* UIColor+QMUI.m */,
  1106 + 2CDD7D98B71F997EEBCAB5336337C4E4 /* UIControl+QMUI.h */,
  1107 + D8AAD4B9E2A2C7842EA9551EBEAC6A7E /* UIControl+QMUI.m */,
  1108 + D2F7A119D066B4550FC5E42E400F8862 /* UIFont+QMUI.h */,
  1109 + 9B138AD96E6F55D5CEE18B43FFEB0E09 /* UIFont+QMUI.m */,
  1110 + 83E719ADE006E41FD830DEBECEB80C27 /* UIGestureRecognizer+QMUI.h */,
  1111 + 650AB04A0616F4EF66DB15CF4CBF2C52 /* UIGestureRecognizer+QMUI.m */,
  1112 + 25895284DB54A412962C0FF635786791 /* UIImage+QMUI.h */,
  1113 + 5B1725A6198F32713C08CBA45F6AC827 /* UIImage+QMUI.m */,
  1114 + D67F9BBE995013B23D4586B5AB5A2EE0 /* UIImageView+QMUI.h */,
  1115 + 79FAF550F440725BEA0445DB99D69A52 /* UIImageView+QMUI.m */,
  1116 + BA7F2D7D88AB86A72FDA6D76DB4B96F5 /* UIInterface+QMUI.h */,
  1117 + 461861850FA6A468417A888DF7E1165E /* UIInterface+QMUI.m */,
  1118 + 3BFE6C0338FF14F776ED05B848791DEE /* UILabel+QMUI.h */,
  1119 + 1196980CB7705682DA4A1EE38C7EB1DF /* UILabel+QMUI.m */,
  1120 + DF8698EC7AE5965D0103956446E512B6 /* UINavigationBar+QMUI.h */,
  1121 + 1EC36AE2BBAAF6E062E1BB571A12DAC3 /* UINavigationBar+QMUI.m */,
  1122 + 8B36D00AD94C22E70156A190BCF04B5E /* UINavigationController+QMUI.h */,
  1123 + B69590567331243D21345E880160327D /* UINavigationController+QMUI.m */,
  1124 + BA241FE0BABD76043ED1E4E0AE066D41 /* UIScrollView+QMUI.h */,
  1125 + 76C5D0EE23FC21D542575412F69178A6 /* UIScrollView+QMUI.m */,
  1126 + 0E3F01F7981A029E86204CEEB4B0A82A /* UISearchBar+QMUI.h */,
  1127 + 8E7AAFCD5D0A3D30E851278F8B487DE3 /* UISearchBar+QMUI.m */,
  1128 + A108628037348306FAD8265EEE6A0EDF /* UITabBar+QMUI.h */,
  1129 + 619519D7A09BA5CEA4266A2640B4581E /* UITabBar+QMUI.m */,
  1130 + CEAB45CBC99EEAB4F5A994E6581CD23F /* UITabBarItem+QMUI.h */,
  1131 + 3808C54A498A6C7A8A5DC615CAE391B4 /* UITabBarItem+QMUI.m */,
  1132 + 2BF86EE16C919F56CC23E7AEB6EA4D08 /* UITableView+QMUI.h */,
  1133 + E6A0790F8B91ED97495544F4282217E4 /* UITableView+QMUI.m */,
  1134 + B868D5A4F5C7283565D2FCCFD4DA168E /* UITableViewCell+QMUI.h */,
  1135 + 1283089156FCF7A4E9AE931119BC44D8 /* UITableViewCell+QMUI.m */,
  1136 + A2AE6157F70474DE2C8A6C5972AE70DC /* UITextField+QMUI.h */,
  1137 + B26FF42D767BB2E6A993A94EB30DBC29 /* UITextField+QMUI.m */,
  1138 + 9DD3C3E68F130B422DF3DACF69421296 /* UITextView+QMUI.h */,
  1139 + 16B889D321AB2DCA20B101F81C77EB49 /* UITextView+QMUI.m */,
  1140 + BCC6F084D6F34C249C680A3A0B1449A8 /* UIView+QMUI.h */,
  1141 + 2CEEBE0056F48DF0574635BFF9B97D17 /* UIView+QMUI.m */,
  1142 + 165E0888868032EBFDE488DA7F0FD3C3 /* UIViewController+QMUI.h */,
  1143 + D8B383EFF233CC47CFE93E39E3A294B3 /* UIViewController+QMUI.m */,
  1144 + 18159ED77BAE29B4AC4ABAB295C1A6B4 /* UIWindow+QMUI.h */,
  1145 + E86385A72F3BE692AC4018DB65885A7B /* UIWindow+QMUI.m */,
  1146 + );
  1147 + name = QMUICore;
  1148 + sourceTree = "<group>";
  1149 + };
  1150 + 76853139C6E413854C651715367BE0DA /* Support Files */ = {
  1151 + isa = PBXGroup;
  1152 + children = (
  1153 + ABE7588449095507CAD14C3EA9D706A3 /* CNLiveEmptyView.modulemap */,
  1154 + 04C935A6EE0AF3EC233622E9DB4133E2 /* CNLiveEmptyView.xcconfig */,
  1155 + A334B1B2B3B8CAA8E2FE0F3891203F57 /* CNLiveEmptyView-dummy.m */,
  1156 + D40604BA60BF9272C0BCC519EA278645 /* CNLiveEmptyView-prefix.pch */,
  1157 + 09F7560AD693F83976234F0D45E9996E /* CNLiveEmptyView-umbrella.h */,
  1158 + DD4C38DC5FEC103A724629222991EB0A /* Info.plist */,
  1159 + );
  1160 + name = "Support Files";
  1161 + path = "Example/Pods/Target Support Files/CNLiveEmptyView";
  1162 + sourceTree = "<group>";
  1163 + };
  1164 + 788A93EEA78518CF6C8D2D4412B36890 /* QMUIMarqueeLabel */ = {
  1165 + isa = PBXGroup;
  1166 + children = (
  1167 + 66670377EF4A625B8565B62F5156A929 /* QMUIMarqueeLabel.h */,
  1168 + 02AE85186AFBED5626B4880AC416E72E /* QMUIMarqueeLabel.m */,
  1169 + );
  1170 + name = QMUIMarqueeLabel;
  1171 + sourceTree = "<group>";
  1172 + };
  1173 + 7DB346D0F39D3F0E887471402A8071AB = {
  1174 + isa = PBXGroup;
  1175 + children = (
  1176 + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
  1177 + 264AB5E8E0CDB7FA62084C1DDF346C57 /* Development Pods */,
  1178 + 61C604EA3B826F83242AD570542402D4 /* Frameworks */,
  1179 + 5F7097135637684CB9A438495F19A6EA /* Pods */,
  1180 + 1FEC0F572FD5AF79CFC1F7A3B09E6802 /* Products */,
  1181 + 8086A73D7F13E70FA7BF9D094FBE5DBC /* Targets Support Files */,
  1182 + );
  1183 + sourceTree = "<group>";
  1184 + };
  1185 + 7EA30F6FB947E0E5FB176D0A45ACF18C /* QMUIOrderedDictionary */ = {
  1186 + isa = PBXGroup;
  1187 + children = (
  1188 + DDDA9F16724F7DF41E399F7936141A26 /* QMUIOrderedDictionary.h */,
  1189 + D4464095CFC47051FEFA4E0CF85B2497 /* QMUIOrderedDictionary.m */,
  1190 + );
  1191 + name = QMUIOrderedDictionary;
  1192 + sourceTree = "<group>";
  1193 + };
  1194 + 803E01AEAE02FF2CB369C6AA942B2BD4 /* QMUILogWithConfigurationSupported */ = {
  1195 + isa = PBXGroup;
  1196 + children = (
  1197 + 3D0850B301BEB3719C4A7D17FB2F40CA /* QMUILogger+QMUIConfigurationTemplate.h */,
  1198 + A41171C1FAABAFEB8B002334683DDC02 /* QMUILogger+QMUIConfigurationTemplate.m */,
  1199 + );
  1200 + name = QMUILogWithConfigurationSupported;
  1201 + sourceTree = "<group>";
  1202 + };
  1203 + 803FC91935F8EF864290CA54D8E7217E /* QMUIBadge */ = {
  1204 + isa = PBXGroup;
  1205 + children = (
  1206 + C3FAD9906F57EC9243FEEBAF1CC94A85 /* UIBarItem+QMUIBadge.h */,
  1207 + 7664E1AFB598843452C5EE0DFDA2F90F /* UIBarItem+QMUIBadge.m */,
  1208 + );
  1209 + name = QMUIBadge;
  1210 + sourceTree = "<group>";
  1211 + };
  1212 + 8086A73D7F13E70FA7BF9D094FBE5DBC /* Targets Support Files */ = {
  1213 + isa = PBXGroup;
  1214 + children = (
  1215 + BCB843A7B4B8120EF466DA61E4DAC3CA /* Pods-CNLiveEmptyView_Example */,
  1216 + EDBD79B38AB278D5AF446519FA2639B7 /* Pods-CNLiveEmptyView_Tests */,
  1217 + );
  1218 + name = "Targets Support Files";
  1219 + sourceTree = "<group>";
  1220 + };
  1221 + 82F96844A5444319E9D5813D7DD8122E /* Resources */ = {
  1222 + isa = PBXGroup;
  1223 + children = (
  1224 + 85932D487990FC072A12E9374F52C874 /* QMUIResources.bundle */,
  1225 + );
  1226 + name = Resources;
  1227 + sourceTree = "<group>";
  1228 + };
  1229 + 8497D58A965A3E5F928447AE7B86545B /* QMUIPopupMenuView */ = {
  1230 + isa = PBXGroup;
  1231 + children = (
  1232 + 3ABB3CE4A38F351A8FBD21EDF8580222 /* QMUIPopupMenuBaseItem.h */,
  1233 + 95B8BA450A02AE3B1E5624D77632AB0F /* QMUIPopupMenuBaseItem.m */,
  1234 + 6A64DC20478808BBC302BC9F3C29BF90 /* QMUIPopupMenuButtonItem.h */,
  1235 + 15D373C51981B5FAC668514CA43CDF92 /* QMUIPopupMenuButtonItem.m */,
  1236 + EABE85B0DD17D8D8919CE747722ED10C /* QMUIPopupMenuItemProtocol.h */,
  1237 + 0738271D12A250FC4D6E98741E17AE42 /* QMUIPopupMenuView.h */,
  1238 + 9AC4C7536C6A522197B783CAE57FBED3 /* QMUIPopupMenuView.m */,
  1239 + );
  1240 + name = QMUIPopupMenuView;
  1241 + sourceTree = "<group>";
  1242 + };
  1243 + 851113A323B57B8CD83605709F7EF267 /* QMUIZoomImageView */ = {
  1244 + isa = PBXGroup;
  1245 + children = (
  1246 + 31CB781E583D78BD658298CF0F9EEB9D /* QMUIZoomImageView.h */,
  1247 + 9CF3F9562DD8C287DC6D2542A34FC724 /* QMUIZoomImageView.m */,
  1248 + );
  1249 + name = QMUIZoomImageView;
  1250 + sourceTree = "<group>";
  1251 + };
  1252 + 85E29D5FDE1A34D1CC34D46D41967320 /* QMUIKit */ = {
  1253 + isa = PBXGroup;
  1254 + children = (
  1255 + 9E71CD44B6575C425DF7CD11FFA361D8 /* QMUIKit.h */,
  1256 + 581B249E9F39EADD6F7AF8576CF87785 /* QMUIComponents */,
  1257 + 7610F8FFA5E86A792710626D5C721002 /* QMUICore */,
  1258 + 6C063C8AC46A20999EEC2A88E6DC47F2 /* QMUILog */,
  1259 + 3AAFAC8300D4258CCD2D13FC97FB58A7 /* QMUIMainFrame */,
  1260 + 8B60DE320AE1D714FDA0B3D609CDE1EF /* QMUIResources */,
  1261 + 4C8E490AF8CD5461A29E5BB4114F502F /* QMUIWeakObjectContainer */,
  1262 + 6FAF552236C756BA2F6070D84D8615CD /* Support Files */,
  1263 + );
  1264 + name = QMUIKit;
  1265 + path = QMUIKit;
  1266 + sourceTree = "<group>";
  1267 + };
  1268 + 8B60DE320AE1D714FDA0B3D609CDE1EF /* QMUIResources */ = {
  1269 + isa = PBXGroup;
  1270 + children = (
  1271 + 82F96844A5444319E9D5813D7DD8122E /* Resources */,
  1272 + );
  1273 + name = QMUIResources;
  1274 + sourceTree = "<group>";
  1275 + };
  1276 + 8D52B9E650EB062F01BD67FECCDB2667 /* QMUISegmentedControl */ = {
  1277 + isa = PBXGroup;
  1278 + children = (
  1279 + A396EC8BE89FD67361034654F7CFBB7F /* QMUISegmentedControl.h */,
  1280 + 5FD97020833AEF2873EC85EDE55FB578 /* QMUISegmentedControl.m */,
  1281 + );
  1282 + name = QMUISegmentedControl;
  1283 + sourceTree = "<group>";
  1284 + };
  1285 + 907890214060B4062542A167A65792EE /* QMUISlider */ = {
  1286 + isa = PBXGroup;
  1287 + children = (
  1288 + 1901C9CC0A5C3032FC01AAB002057BBC /* QMUISlider.h */,
  1289 + B1A5A2C71F414E5AA8C1C2CD4D56985F /* QMUISlider.m */,
  1290 + );
  1291 + name = QMUISlider;
  1292 + sourceTree = "<group>";
  1293 + };
  1294 + 94D0632D9A5065B1A048FFF394F6B3B2 /* QMUIMultipleDelegates */ = {
  1295 + isa = PBXGroup;
  1296 + children = (
  1297 + B25FFA583216D9C9D2213A8B3C427C6A /* NSObject+QMUIMultipleDelegates.h */,
  1298 + E4AD4D24307FD758878B3C7FD3F26715 /* NSObject+QMUIMultipleDelegates.m */,
  1299 + C885FA9876A632DBC6894FA1F7DF3FF5 /* QMUIMultipleDelegates.h */,
  1300 + D537E9E21A1BAAB1E80CF579CBC55004 /* QMUIMultipleDelegates.m */,
  1301 + );
  1302 + name = QMUIMultipleDelegates;
  1303 + sourceTree = "<group>";
  1304 + };
  1305 + 98D1AB27D4561B330399DB3DC931EAE4 /* QMUILogManagerViewController */ = {
  1306 + isa = PBXGroup;
  1307 + children = (
  1308 + 3541F828BAD3505DDC8F0704A9DC4EA6 /* QMUILogManagerViewController.h */,
  1309 + ED57E4A38F06537DC6966171C30BF157 /* QMUILogManagerViewController.m */,
  1310 + );
  1311 + name = QMUILogManagerViewController;
  1312 + sourceTree = "<group>";
  1313 + };
  1314 + 9C45CA691D5E54E7CE7B50B01A078733 /* QMUIButton */ = {
  1315 + isa = PBXGroup;
  1316 + children = (
  1317 + 287C336CDC48C5051F59D0FCF740229B /* QMUIButton.h */,
  1318 + 23EE0AF141F0E9AE7BF1C90592659BCB /* QMUIButton.m */,
  1319 + );
  1320 + name = QMUIButton;
  1321 + sourceTree = "<group>";
  1322 + };
  1323 + 9D3566CC9DF48929C0E9CD269D65B04C /* QMUIGridView */ = {
  1324 + isa = PBXGroup;
  1325 + children = (
  1326 + 4F99588BE293DF0528770A7C21A81FDB /* QMUIGridView.h */,
  1327 + F4F4B66BD0FAE2F4269835611D719976 /* QMUIGridView.m */,
  1328 + );
  1329 + name = QMUIGridView;
  1330 + sourceTree = "<group>";
  1331 + };
  1332 + A100DDBBC659B2C381A8B059E7822364 /* QMUIAlertController */ = {
  1333 + isa = PBXGroup;
  1334 + children = (
  1335 + 26B1BAEBCC134F0E55931EE8FD6285F9 /* QMUIAlertController.h */,
  1336 + DBB1DA87013A89A9A0AA87994468E7B7 /* QMUIAlertController.m */,
  1337 + );
  1338 + name = QMUIAlertController;
  1339 + sourceTree = "<group>";
  1340 + };
  1341 + A91B53AA523FB1B8A2E2D10AC96D6F9E /* QMUINavigationTitleView */ = {
  1342 + isa = PBXGroup;
  1343 + children = (
  1344 + 3CF0C172B9B16B8CADFB100C4ECC6B51 /* QMUINavigationTitleView.h */,
  1345 + E04880C0C33071DE92510CF3E4219816 /* QMUINavigationTitleView.m */,
  1346 + );
  1347 + name = QMUINavigationTitleView;
  1348 + sourceTree = "<group>";
  1349 + };
  1350 + AD6462EB0869D3043C09A24EABB09C4C /* QMUIFloatLayoutView */ = {
  1351 + isa = PBXGroup;
  1352 + children = (
  1353 + 87DBF896A7B31025FE2C6DC39E67F190 /* QMUIFloatLayoutView.h */,
  1354 + 5F4F87282593B83C8B61D60308091E53 /* QMUIFloatLayoutView.m */,
  1355 + );
  1356 + name = QMUIFloatLayoutView;
  1357 + sourceTree = "<group>";
  1358 + };
  1359 + AF3BBA4C13E10CF583EDE123A86CFA70 /* QMUIToastView */ = {
  1360 + isa = PBXGroup;
  1361 + children = (
  1362 + 8E2981C23463A0E6905599C78C8B9A99 /* QMUIToastAnimator.h */,
  1363 + 29F7830A031D621288EB25E7A6FD20C3 /* QMUIToastAnimator.m */,
  1364 + BECC15D823DCF17DFB168444DD512D83 /* QMUIToastBackgroundView.h */,
  1365 + 726AF970C89C9A961AFFF8CADDEDA82D /* QMUIToastBackgroundView.m */,
  1366 + 2FB0B08F81CB62FBC862DC4B8AD650F7 /* QMUIToastContentView.h */,
  1367 + 867709A2535E18508D6CD97A8EF8994E /* QMUIToastContentView.m */,
  1368 + 60D444F54109B58C71D511822CCC3D70 /* QMUIToastView.h */,
  1369 + 3D26D12E88A89080C31024959A3E22C0 /* QMUIToastView.m */,
  1370 + );
  1371 + name = QMUIToastView;
  1372 + sourceTree = "<group>";
  1373 + };
  1374 + AF5278317C4E5A24F832ED4A2A9874C4 /* QMUIAssetLibrary */ = {
  1375 + isa = PBXGroup;
  1376 + children = (
  1377 + 07B3FE982FEADC65BEC00A71A527CE0D /* QMUIAsset.h */,
  1378 + B486D035DFA15E971FCBB939A382D549 /* QMUIAsset.m */,
  1379 + E191ACCD195AF9FEB074F6CB45C1269D /* QMUIAssetsGroup.h */,
  1380 + 36699F793146618678F7DC35307003BB /* QMUIAssetsGroup.m */,
  1381 + 418E55EF1A1D3B3789758B61DB0F07AE /* QMUIAssetsManager.h */,
  1382 + CA8313B026D354228B21153842B59A48 /* QMUIAssetsManager.m */,
  1383 + );
  1384 + name = QMUIAssetLibrary;
  1385 + sourceTree = "<group>";
  1386 + };
  1387 + B6ADB803F92DEF7F83F53BB89811AF10 /* QMUITableView */ = {
  1388 + isa = PBXGroup;
  1389 + children = (
  1390 + 8EAB1559AE486653A691314C4547EB1C /* QMUITableView.h */,
  1391 + B1E16978D401CA5628C96E21D0DA9BD7 /* QMUITableView.m */,
  1392 + );
  1393 + name = QMUITableView;
  1394 + sourceTree = "<group>";
  1395 + };
  1396 + BB0569D6B89D7096CA8F6D6C28438D59 /* QMUICAAnimationExtension */ = {
  1397 + isa = PBXGroup;
  1398 + children = (
  1399 + 40D421279B582750E58EC942F4A0FCE7 /* CAAnimation+QMUI.h */,
  1400 + 499EF5FE957D6D80D95323CB70730B6A /* CAAnimation+QMUI.m */,
  1401 + );
  1402 + name = QMUICAAnimationExtension;
  1403 + sourceTree = "<group>";
  1404 + };
  1405 + BCB843A7B4B8120EF466DA61E4DAC3CA /* Pods-CNLiveEmptyView_Example */ = {
  1406 + isa = PBXGroup;
  1407 + children = (
  1408 + E73F9A40421DD79E40C5B3BED5E061CF /* Info.plist */,
  1409 + 0BB4AB09F4015EF7ACEABBCAA03203C2 /* Pods-CNLiveEmptyView_Example.modulemap */,
  1410 + 32C203828549F79489D9137720F0773C /* Pods-CNLiveEmptyView_Example-acknowledgements.markdown */,
  1411 + 4071783299036F262D37B316D0BA85C2 /* Pods-CNLiveEmptyView_Example-acknowledgements.plist */,
  1412 + DA6C6510D9ED4D0CD2FC651A247198D6 /* Pods-CNLiveEmptyView_Example-dummy.m */,
  1413 + 0A1EF718D9476C4CDC4A342936A337F8 /* Pods-CNLiveEmptyView_Example-frameworks.sh */,
  1414 + B45881E7D71F67C96FF4FA44A801D3C9 /* Pods-CNLiveEmptyView_Example-resources.sh */,
  1415 + 597F06210A5C4839F3A01FB6657CF5FE /* Pods-CNLiveEmptyView_Example-umbrella.h */,
  1416 + BE6092B2EA6FB8EA45923D89A94F3BFC /* Pods-CNLiveEmptyView_Example.debug.xcconfig */,
  1417 + 00778AE6A4C57D8DB6DF4F714336FCC3 /* Pods-CNLiveEmptyView_Example.release.xcconfig */,
  1418 + );
  1419 + name = "Pods-CNLiveEmptyView_Example";
  1420 + path = "Target Support Files/Pods-CNLiveEmptyView_Example";
  1421 + sourceTree = "<group>";
  1422 + };
  1423 + C6ACB09B97FC32A9A4B9EDE6492769E1 /* QMUITips */ = {
  1424 + isa = PBXGroup;
  1425 + children = (
  1426 + 9DCC6A4BF711108367C04F5DE98D67FA /* QMUITips.h */,
  1427 + F19D6A92D9B1A0E9C28D5A8485EBE11D /* QMUITips.m */,
  1428 + );
  1429 + name = QMUITips;
  1430 + sourceTree = "<group>";
  1431 + };
  1432 + CEAEEB6174DFF2140CB3F9141729F212 /* QMUIDialogViewController */ = {
  1433 + isa = PBXGroup;
  1434 + children = (
  1435 + 015BB595DBD6949EBEAA8738FE12223C /* QMUIDialogViewController.h */,
  1436 + 11F1CE3B7EF800365F868727333DF157 /* QMUIDialogViewController.m */,
  1437 + );
  1438 + name = QMUIDialogViewController;
  1439 + sourceTree = "<group>";
  1440 + };
  1441 + D62452C86EF6C2676B47DC46D697BB4B /* QMUIVisualEffectView */ = {
  1442 + isa = PBXGroup;
  1443 + children = (
  1444 + 62AB498BC41FC2118B18390DD86D8B85 /* QMUIVisualEffectView.h */,
  1445 + AB92BF234C24893E40E87322812BE854 /* QMUIVisualEffectView.m */,
  1446 + );
  1447 + name = QMUIVisualEffectView;
  1448 + sourceTree = "<group>";
  1449 + };
  1450 + D65CB176156B38BE46C3F652FE1322C6 /* QMUIScrollAnimator */ = {
  1451 + isa = PBXGroup;
  1452 + children = (
  1453 + 3F32A69897C7122B7ABED37FD7C7F782 /* QMUINavigationBarScrollingAnimator.h */,
  1454 + 3ECEEF9B11989B420403CD531291E663 /* QMUINavigationBarScrollingAnimator.m */,
  1455 + 71FA6DD888FEE0F4F39ADB0658BDE578 /* QMUINavigationBarScrollingSnapAnimator.h */,
  1456 + C4A122ADE1B28F4931A5D1F00EA44BBF /* QMUINavigationBarScrollingSnapAnimator.m */,
  1457 + 616D197C7043557D8CD03CAA163FF758 /* QMUIScrollAnimator.h */,
  1458 + 857B8006B85CBCA575684957635B0A10 /* QMUIScrollAnimator.m */,
  1459 + );
  1460 + name = QMUIScrollAnimator;
  1461 + sourceTree = "<group>";
  1462 + };
  1463 + DEA2BFD290D1183AB940AB977EE3674D /* QMUICellHeightKeyCache */ = {
  1464 + isa = PBXGroup;
  1465 + children = (
  1466 + 6D62F035D90C15C26B9622E7CEB8CA71 /* QMUICellHeightKeyCache.h */,
  1467 + 00662AEF1699E1D4902BAD916450E34B /* QMUICellHeightKeyCache.m */,
  1468 + DDA4634DEC017D84E09F2CD4139567C6 /* UITableView+QMUICellHeightKeyCache.h */,
  1469 + A1B53096C42905AB1C59777B0B3E8AF0 /* UITableView+QMUICellHeightKeyCache.m */,
  1470 + );
  1471 + name = QMUICellHeightKeyCache;
  1472 + sourceTree = "<group>";
  1473 + };
  1474 + E179A106D04944F2F0DE17BDF5C856ED /* QMUIFillButton */ = {
  1475 + isa = PBXGroup;
  1476 + children = (
  1477 + 1CDE2D459E31DE8A69617CECA6250125 /* QMUIFillButton.h */,
  1478 + 1984A77A339279E570FDBFBBC4C3E7D3 /* QMUIFillButton.m */,
  1479 + );
  1480 + name = QMUIFillButton;
  1481 + sourceTree = "<group>";
  1482 + };
  1483 + E1B6D1FB656CCF62033CA4A49F68B47E /* QMUISearchBar */ = {
  1484 + isa = PBXGroup;
  1485 + children = (
  1486 + 4F1F717D2A0F5A721EB82C4F5487E962 /* QMUISearchBar.h */,
  1487 + 65D66AA6950E94C05B873771039500DB /* QMUISearchBar.m */,
  1488 + );
  1489 + name = QMUISearchBar;
  1490 + sourceTree = "<group>";
  1491 + };
  1492 + E58A83D28E188B12F927C561FF451ED9 /* QMUIModalPresentationViewController */ = {
  1493 + isa = PBXGroup;
  1494 + children = (
  1495 + 8E952A4B8FB69C74700E00F99EDDEF51 /* QMUIModalPresentationViewController.h */,
  1496 + 9DCAC689B16A852521E02B74F8B2BE32 /* QMUIModalPresentationViewController.m */,
  1497 + );
  1498 + name = QMUIModalPresentationViewController;
  1499 + sourceTree = "<group>";
  1500 + };
  1501 + E87D398D4CD977C27D709E847B54FF15 /* QMUITableViewProtocols */ = {
  1502 + isa = PBXGroup;
  1503 + children = (
  1504 + C0E295F9CA326954427EB0E5B99C32C9 /* QMUITableViewProtocols.h */,
  1505 + );
  1506 + name = QMUITableViewProtocols;
  1507 + sourceTree = "<group>";
  1508 + };
  1509 + EDBD79B38AB278D5AF446519FA2639B7 /* Pods-CNLiveEmptyView_Tests */ = {
  1510 + isa = PBXGroup;
  1511 + children = (
  1512 + CF884EDC11B438C15DC32E6103372FA5 /* Info.plist */,
  1513 + 45D954BDEAEE83503A9F797387447C9F /* Pods-CNLiveEmptyView_Tests.modulemap */,
  1514 + 39728F299AB5E6F9A72B37E7DBE49536 /* Pods-CNLiveEmptyView_Tests-acknowledgements.markdown */,
  1515 + 54573D1868828D0EEFD2C08FEC5D7E8F /* Pods-CNLiveEmptyView_Tests-acknowledgements.plist */,
  1516 + 99F2C0AE36FF8A6FBD0F4D3332F76206 /* Pods-CNLiveEmptyView_Tests-dummy.m */,
  1517 + 1810A443D3C0AE0E22F655BF37DA8297 /* Pods-CNLiveEmptyView_Tests-frameworks.sh */,
  1518 + 8CC15DED9DE9A76C0D786048F4BA06D9 /* Pods-CNLiveEmptyView_Tests-resources.sh */,
  1519 + 82CC725A02E5604CC03C146A8F0EC9F6 /* Pods-CNLiveEmptyView_Tests-umbrella.h */,
  1520 + 42D89F1774203F4D0B5773774F363BA5 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */,
  1521 + 214FBE177F855DB8735D07488C0A2762 /* Pods-CNLiveEmptyView_Tests.release.xcconfig */,
  1522 + );
  1523 + name = "Pods-CNLiveEmptyView_Tests";
  1524 + path = "Target Support Files/Pods-CNLiveEmptyView_Tests";
  1525 + sourceTree = "<group>";
  1526 + };
  1527 + F592569885196FF748E852FD6BDDB4BA /* QMUICellSizeKeyCache */ = {
  1528 + isa = PBXGroup;
  1529 + children = (
  1530 + 76D9CCBA6B30ACC6F406823B0A2F29D4 /* QMUICellSizeKeyCache.h */,
  1531 + F3B2BAD0624686F245F57504F8EFF273 /* QMUICellSizeKeyCache.m */,
  1532 + AAEB59D540E5BE7443437C918454DA10 /* UICollectionView+QMUICellSizeKeyCache.h */,
  1533 + CCB6A17FB5E745A52EDC0FC41A4F8296 /* UICollectionView+QMUICellSizeKeyCache.m */,
  1534 + );
  1535 + name = QMUICellSizeKeyCache;
  1536 + sourceTree = "<group>";
  1537 + };
  1538 + FB726ECB895BD7AA3A82B6CA595502AD /* QMUIPopupContainerView */ = {
  1539 + isa = PBXGroup;
  1540 + children = (
  1541 + A63D3844E87808AA9D24689B6B47B062 /* QMUIPopupContainerView.h */,
  1542 + 7B46C337B4B39772F05CDABA373C58AD /* QMUIPopupContainerView.m */,
  1543 + );
  1544 + name = QMUIPopupContainerView;
  1545 + sourceTree = "<group>";
  1546 + };
  1547 +/* End PBXGroup section */
  1548 +
  1549 +/* Begin PBXHeadersBuildPhase section */
  1550 + 7F4DB3161B7BF0DF5F5F6C0A03F32127 /* Headers */ = {
  1551 + isa = PBXHeadersBuildPhase;
  1552 + buildActionMask = 2147483647;
  1553 + files = (
  1554 + EC0E9554EBA33B171AE6D48E2BCDF319 /* CAAnimation+QMUI.h in Headers */,
  1555 + D01120F76A901FFF13DA6348840CDCD4 /* CALayer+QMUI.h in Headers */,
  1556 + FBBB5B0C0F6BD7FB5721628CDC7FE714 /* NSArray+QMUI.h in Headers */,
  1557 + B1C4323317D95638CB8ADA78AEAC4ED2 /* NSAttributedString+QMUI.h in Headers */,
  1558 + 3FDD8BC5A3F641B0DBCE67D3D873E46A /* NSCharacterSet+QMUI.h in Headers */,
  1559 + BEECD3F633AA8D604C1C0554420AE162 /* NSNumber+QMUI.h in Headers */,
  1560 + 01E7B512A066BD221732CEDBE99EFBA5 /* NSObject+QMUI.h in Headers */,
  1561 + 63D07228A545BFB46A569500F9A72A2B /* NSObject+QMUIMultipleDelegates.h in Headers */,
  1562 + 2BF5C2154EDC596664EF2824F4A5409A /* NSParagraphStyle+QMUI.h in Headers */,
  1563 + DFCC8F026F767F6334497C86E20D7D1E /* NSPointerArray+QMUI.h in Headers */,
  1564 + 432CB84EB98638540AB1386A5F389FFF /* NSString+QMUI.h in Headers */,
  1565 + 21721B2A906821C1F1CE56FDC6897E59 /* NSURL+QMUI.h in Headers */,
  1566 + F00F43773B15AF7EAAB57AC7DBEA68ED /* QMUIAlbumViewController.h in Headers */,
  1567 + 11556552E4D0C4A5864AB7CAFFEAC631 /* QMUIAlertController.h in Headers */,
  1568 + 31FD00A6D113A5314D116306D3A2E164 /* QMUIAsset.h in Headers */,
  1569 + E4F9876EE5627A172148005160D512B8 /* QMUIAssetsGroup.h in Headers */,
  1570 + 9B2D2DA035B9F83CF10B951F84EFF836 /* QMUIAssetsManager.h in Headers */,
  1571 + 33DAB95F3359E906663B168B053BFF12 /* QMUIButton.h in Headers */,
  1572 + F0574E26BB4D8A39D8022D3C81A79BEB /* QMUICellHeightCache.h in Headers */,
  1573 + 495EA62F59A87AE8980C4AB4BC4184A0 /* QMUICellHeightKeyCache.h in Headers */,
  1574 + CBE81D3BA8C043995DCFB068E0C635E6 /* QMUICellSizeKeyCache.h in Headers */,
  1575 + 19BA5FA86CEE218555B8658826319397 /* QMUICollectionViewPagingLayout.h in Headers */,
  1576 + C753087D0ACA836DCEADD5BABAC55FA5 /* QMUICommonDefines.h in Headers */,
  1577 + CE09780F8CA8CD4EE6A1B123D31D4E14 /* QMUICommonTableViewController.h in Headers */,
  1578 + 4397882D314ED50EC6E7622DB73310C9 /* QMUICommonViewController.h in Headers */,
  1579 + B29A9514F1739F6D6C71FA4CF1FD2517 /* QMUIConfiguration.h in Headers */,
  1580 + FA4F64F894ADD0256F704A9A83C9456F /* QMUIConfigurationMacros.h in Headers */,
  1581 + 193A4BAA332C9C89D95B5526B19F0AD8 /* QMUICore.h in Headers */,
  1582 + CD8040430E2E1FE28CB03093DEBDDEA0 /* QMUIDialogViewController.h in Headers */,
  1583 + 30D8BA4304B6D30F67E20B0F5ED2CE97 /* QMUIEmotionInputManager.h in Headers */,
  1584 + C1EF40859E564CEC53AE875496836BB9 /* QMUIEmotionView.h in Headers */,
  1585 + 438A076ABC060A4244856AADF3C0BA10 /* QMUIEmptyView.h in Headers */,
  1586 + 98DCABC2F84FF075DC7F32D9C30D6851 /* QMUIFillButton.h in Headers */,
  1587 + 3B80CAB1B7208530125377CEACE4BA1E /* QMUIFloatLayoutView.h in Headers */,
  1588 + 8DF8D514C5BB282DD21F0F90E3E46DB5 /* QMUIGhostButton.h in Headers */,
  1589 + E6D823A37F1002C706321BCF1C7ED082 /* QMUIGridView.h in Headers */,
  1590 + 602C1CEDDE9F3E1836DA451AACF32303 /* QMUIHelper.h in Headers */,
  1591 + C2BFA3F671732B71A5B777C8B613D952 /* QMUIImagePickerCollectionViewCell.h in Headers */,
  1592 + 14633DF331FE9018A02E7342724B044B /* QMUIImagePickerHelper.h in Headers */,
  1593 + AED3BF0B8867843FD48B436BD0309DF7 /* QMUIImagePickerPreviewViewController.h in Headers */,
  1594 + 244CAA2D1C32860C73621E6041BDDF66 /* QMUIImagePickerViewController.h in Headers */,
  1595 + B085CBE3ACFFCEE42B76ECF136920711 /* QMUIImagePreviewView.h in Headers */,
  1596 + E1FDC706953F6D15A889774245122AAA /* QMUIImagePreviewViewController.h in Headers */,
  1597 + 12E2B7743DF3E1A70D60E4C3853F2972 /* QMUIImagePreviewViewTransitionAnimator.h in Headers */,
  1598 + 5925A30354348C5382F12A9D84EC3E6D /* QMUIKeyboardManager.h in Headers */,
  1599 + D1EC16E972188659E50EF542ECCF3CFC /* QMUIKit-umbrella.h in Headers */,
  1600 + 4456F51D7692C1759B9476DFB38D5D4B /* QMUIKit.h in Headers */,
  1601 + C63BB4BD549C97593FEEA94555F83DA5 /* QMUILabel.h in Headers */,
  1602 + A74FE89F7BCAF1CD83E92FD8D9DABE56 /* QMUILinkButton.h in Headers */,
  1603 + A4D1C788C312BC29EEE17B0495DE70BE /* QMUILog.h in Headers */,
  1604 + 2DDDA60EAC8675DFC534A62251C03143 /* QMUILogger+QMUIConfigurationTemplate.h in Headers */,
  1605 + 0F49C2178A6E6B172F5CA07334553CC9 /* QMUILogger.h in Headers */,
  1606 + DDDF04873B95100A55B32A8021A5A044 /* QMUILogItem.h in Headers */,
  1607 + D8BF594D74C4C933CF8A3839EDDA240A /* QMUILogManagerViewController.h in Headers */,
  1608 + A04322DDD8311884BB4A787963B0C4EA /* QMUILogNameManager.h in Headers */,
  1609 + B346710B2B2B824BDF12054E49E5C1E4 /* QMUIMarqueeLabel.h in Headers */,
  1610 + 7757DA73A69BFB706DA1C1884866DE43 /* QMUIModalPresentationViewController.h in Headers */,
  1611 + DB84517AF23B1C1F6C3F035A1D384079 /* QMUIMoreOperationController.h in Headers */,
  1612 + 9B4BF3B366314DFA0B0AD7D69A40270D /* QMUIMultipleDelegates.h in Headers */,
  1613 + 8E68002FE0D9AB7DAAEEA6D8FFB005A3 /* QMUINavigationBarScrollingAnimator.h in Headers */,
  1614 + 4D0F752F57706308001C77830B33DB3D /* QMUINavigationBarScrollingSnapAnimator.h in Headers */,
  1615 + ABA134811761320CF5D61526FA400492 /* QMUINavigationButton.h in Headers */,
  1616 + E7E70F5315F90041D4E85F846F3AB198 /* QMUINavigationController.h in Headers */,
  1617 + 042E8EB554366AB197C7D13EB14C3D62 /* QMUINavigationTitleView.h in Headers */,
  1618 + 8B74F47C1A6C2A01D50783AC6354633E /* QMUIOrderedDictionary.h in Headers */,
  1619 + 324C92F377B8D5EB6E14A299DCA00DF2 /* QMUIPieProgressView.h in Headers */,
  1620 + D6BAF554CE2E6014CF4A78B989A3CB61 /* QMUIPopupContainerView.h in Headers */,
  1621 + F9124D828382C0A0CB0811EFA4A304A7 /* QMUIPopupMenuBaseItem.h in Headers */,
  1622 + A74BD2309D4B42DDACE1A5271E12C291 /* QMUIPopupMenuButtonItem.h in Headers */,
  1623 + 6087D3022F8163F4C6C48CF33756F2DD /* QMUIPopupMenuItemProtocol.h in Headers */,
  1624 + 30C23DF60924606DB435433359656B9B /* QMUIPopupMenuView.h in Headers */,
  1625 + 99AF47353B42C6EF3AF6FAB64879148A /* QMUIRuntime.h in Headers */,
  1626 + 737C47C102183E136966364AA36C7878 /* QMUIScrollAnimator.h in Headers */,
  1627 + D0326EA81EBDDBF14C1182569BA0277F /* QMUISearchBar.h in Headers */,
  1628 + 5C224EA7E589017AD93EEB9AEA283477 /* QMUISearchController.h in Headers */,
  1629 + 5618D4899FF529F0EE988E1097E2FEFA /* QMUISegmentedControl.h in Headers */,
  1630 + 7CF44DAA17716138552A66DB1CB450F3 /* QMUISlider.h in Headers */,
  1631 + F1D151223008D02ECB38FC93A6EA065C /* QMUIStaticTableViewCellData.h in Headers */,
  1632 + 600893FC4B6F8D5A98A6DEDBAC8CCC51 /* QMUIStaticTableViewCellDataSource.h in Headers */,
  1633 + B3672FC7B472B9311303510382304F0C /* QMUITabBarViewController.h in Headers */,
  1634 + 12963E4837FEE98129F4ABEFF16AE8FE /* QMUITableView.h in Headers */,
  1635 + 9B7F22B51BF4DA9B71762775039A49AF /* QMUITableViewCell.h in Headers */,
  1636 + EB470C377DB0C81A19BE5A3B2E6906E3 /* QMUITableViewHeaderFooterView.h in Headers */,
  1637 + EB7CA1BD99BE3107CBB5503CA5734C38 /* QMUITableViewProtocols.h in Headers */,
  1638 + E801FFC9B6DA2418463A055B35963F8A /* QMUITestView.h in Headers */,
  1639 + 3A6582E5A5C7910944BE9B9C73F42A51 /* QMUITextField.h in Headers */,
  1640 + FD233A23DBE3C8B658A38B954D32BE6C /* QMUITextView.h in Headers */,
  1641 + 6F02A29C52AF5E9EC87A45B716AE1571 /* QMUITips.h in Headers */,
  1642 + 83D79FB2E3B2F967FE62E3A97179433A /* QMUIToastAnimator.h in Headers */,
  1643 + 34A7BC5221A8BD0118EC55244026C7C7 /* QMUIToastBackgroundView.h in Headers */,
  1644 + 1581075A2A5E9ADB633E6DAAD3EAA3B5 /* QMUIToastContentView.h in Headers */,
  1645 + 602C8F2F532E98E9E59ED8C88E21C2A9 /* QMUIToastView.h in Headers */,
  1646 + 22845717D7948B9126192ACD8BADACE1 /* QMUIToolbarButton.h in Headers */,
  1647 + 5594B6F17DCFC58E28CA9C48B92314F4 /* QMUIVisualEffectView.h in Headers */,
  1648 + C1E119D07E6884C0A3A4CA3B08FCE6CE /* QMUIWeakObjectContainer.h in Headers */,
  1649 + 957671AD514FCCFC22C85798DD71737E /* QMUIZoomImageView.h in Headers */,
  1650 + 53E0B2D677EC9C5083C7E7C22AC0A907 /* UIActivityIndicatorView+QMUI.h in Headers */,
  1651 + 49DA2BCEABFFBB57BB9F87F1B3D3F93C /* UIBarItem+QMUI.h in Headers */,
  1652 + D20730D9F69FF9C4186ABA54C7F6FC88 /* UIBarItem+QMUIBadge.h in Headers */,
  1653 + 98A05A86F57EA3036C25E157277A6837 /* UIBezierPath+QMUI.h in Headers */,
  1654 + 49289143795B4EA0FAEB6348CE1D239F /* UIButton+QMUI.h in Headers */,
  1655 + CA979554B5BBE6CB6141E5085787B5E1 /* UICollectionView+QMUI.h in Headers */,
  1656 + AE5B22F539C14C894D987A4B00A8DFFD /* UICollectionView+QMUICellSizeKeyCache.h in Headers */,
  1657 + F8D296A00D8B3DBA1B0CEE39D96B5FDE /* UIColor+QMUI.h in Headers */,
  1658 + 6020B0863DFB5A724E092DADCCC5A0B0 /* UIControl+QMUI.h in Headers */,
  1659 + D2FD45CB6581A2973AEFEC6F9A38B3A7 /* UIFont+QMUI.h in Headers */,
  1660 + DEE9D620BC5EEAAAB21A6EA3D5C47C15 /* UIGestureRecognizer+QMUI.h in Headers */,
  1661 + 2E2459B9AC5937C194C14448F138FA2C /* UIImage+QMUI.h in Headers */,
  1662 + BA208BBBA6C082778538AB8C47BB55E9 /* UIImageView+QMUI.h in Headers */,
  1663 + DE633CC2F952A79C6E9005163C1229A3 /* UIInterface+QMUI.h in Headers */,
  1664 + 03AD3B056545F6F314B2AD2D8B18F38F /* UILabel+QMUI.h in Headers */,
  1665 + 2BD65595552832A9C01155149BD8B08F /* UINavigationBar+QMUI.h in Headers */,
  1666 + CE96E7BB1D4AAACCBA2464C8259E6BE8 /* UINavigationBar+Transition.h in Headers */,
  1667 + EC29086E4DB8A7793F503D4D8EDCD958 /* UINavigationController+NavigationBarTransition.h in Headers */,
  1668 + DA37053814C784016A68F38EFC8438E7 /* UINavigationController+QMUI.h in Headers */,
  1669 + C6B9D194FAFA53958D9ACBB37C08B18A /* UIScrollView+QMUI.h in Headers */,
  1670 + F42714ADACB03385C14750F09BC740A2 /* UISearchBar+QMUI.h in Headers */,
  1671 + 9731F3127D8F2AF3BEB26066C677C014 /* UITabBar+QMUI.h in Headers */,
  1672 + EA0EABBE83A7EFAFA3BFB3B29E636F47 /* UITabBarItem+QMUI.h in Headers */,
  1673 + E34AD536D2746AEB15162196C263ABBF /* UITableView+QMUI.h in Headers */,
  1674 + E80F2756601C718374107460DCB32748 /* UITableView+QMUICellHeightKeyCache.h in Headers */,
  1675 + CBB58198D544F0EC2C858FD000249E49 /* UITableView+QMUIStaticCell.h in Headers */,
  1676 + C3DFD5E9FF52CA7195E32D8B8C6C2773 /* UITableViewCell+QMUI.h in Headers */,
  1677 + A32F2D82FE57098B62301EC411CAF259 /* UITextField+QMUI.h in Headers */,
  1678 + 1A36D47A6ED84D942B1976CE2ABED963 /* UITextView+QMUI.h in Headers */,
  1679 + A9B309EAF7D8D6035A24F4C95B9E4EE4 /* UIView+QMUI.h in Headers */,
  1680 + 0946FD563EA05D9F8F93A2A7F543D3AB /* UIViewController+QMUI.h in Headers */,
  1681 + FE36AEC7BB5555927E0278CCA0572E04 /* UIWindow+QMUI.h in Headers */,
  1682 + );
  1683 + runOnlyForDeploymentPostprocessing = 0;
  1684 + };
  1685 + 83895507D48FD28CA214D3DEFB6990E3 /* Headers */ = {
  1686 + isa = PBXHeadersBuildPhase;
  1687 + buildActionMask = 2147483647;
  1688 + files = (
  1689 + 55A949806B22C97EAE000B1FE4475693 /* Pods-CNLiveEmptyView_Example-umbrella.h in Headers */,
  1690 + );
  1691 + runOnlyForDeploymentPostprocessing = 0;
  1692 + };
  1693 + AF251415B5D66D38FD92D6E6C9E4E280 /* Headers */ = {
  1694 + isa = PBXHeadersBuildPhase;
  1695 + buildActionMask = 2147483647;
  1696 + files = (
  1697 + 5B835A34D69F25B06E2D88CFC3B922C1 /* Pods-CNLiveEmptyView_Tests-umbrella.h in Headers */,
  1698 + );
  1699 + runOnlyForDeploymentPostprocessing = 0;
  1700 + };
  1701 + DE952F654B764CAFD5883E396CBB5BC1 /* Headers */ = {
  1702 + isa = PBXHeadersBuildPhase;
  1703 + buildActionMask = 2147483647;
  1704 + files = (
  1705 + 0968F6192A3DA5129212FF03FE8FEB2A /* CNLiveEmptyView-umbrella.h in Headers */,
  1706 + D82C9C4E0361EF7845BD794AD9192094 /* CNLIveEmptyView.h in Headers */,
  1707 + );
  1708 + runOnlyForDeploymentPostprocessing = 0;
  1709 + };
  1710 +/* End PBXHeadersBuildPhase section */
  1711 +
  1712 +/* Begin PBXNativeTarget section */
  1713 + 2885551A239E95E9A67302B20F0E798A /* QMUIKit */ = {
  1714 + isa = PBXNativeTarget;
  1715 + buildConfigurationList = 344B2A5D359C11BE7B5808D3EE929121 /* Build configuration list for PBXNativeTarget "QMUIKit" */;
  1716 + buildPhases = (
  1717 + 7F4DB3161B7BF0DF5F5F6C0A03F32127 /* Headers */,
  1718 + C72B9069ECEB739B8FAD9E4DECB4FB82 /* Sources */,
  1719 + 8F8B907D1852C4FD662DD0039E54438B /* Frameworks */,
  1720 + FB26DA8DA2D7094F886223EB49E8EBEE /* Resources */,
  1721 + );
  1722 + buildRules = (
  1723 + );
  1724 + dependencies = (
  1725 + );
  1726 + name = QMUIKit;
  1727 + productName = QMUIKit;
  1728 + productReference = 3430509A8B18E41D42C8E93B541332EC /* QMUIKit.framework */;
  1729 + productType = "com.apple.product-type.framework";
  1730 + };
  1731 + 43B0DA3AA48198ACED5A3CF5259C774F /* Pods-CNLiveEmptyView_Example */ = {
  1732 + isa = PBXNativeTarget;
  1733 + buildConfigurationList = C29DF5FC00803D294A3F0B4EDF5FD285 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Example" */;
  1734 + buildPhases = (
  1735 + 83895507D48FD28CA214D3DEFB6990E3 /* Headers */,
  1736 + 104983F9E8204C76786271A428A1AAE1 /* Sources */,
  1737 + A2FC4013BF043B705DCF81D0B1C5A370 /* Frameworks */,
  1738 + B7A4E1380A55FCBF008C60207F6CEC85 /* Resources */,
  1739 + );
  1740 + buildRules = (
  1741 + );
  1742 + dependencies = (
  1743 + 69B82AE6BA01B1C61C255B0F8B613324 /* PBXTargetDependency */,
  1744 + 5C232F0F15EE5482FFFCB5A679BC2AB2 /* PBXTargetDependency */,
  1745 + );
  1746 + name = "Pods-CNLiveEmptyView_Example";
  1747 + productName = "Pods-CNLiveEmptyView_Example";
  1748 + productReference = A204DB48B7DC8BEF2C40984796A23B85 /* Pods_CNLiveEmptyView_Example.framework */;
  1749 + productType = "com.apple.product-type.framework";
  1750 + };
  1751 + 5FD6C1B5E41B57AC8FE465907571182B /* CNLiveEmptyView */ = {
  1752 + isa = PBXNativeTarget;
  1753 + buildConfigurationList = 93753E25CF88EF336E0B5C204CE53F16 /* Build configuration list for PBXNativeTarget "CNLiveEmptyView" */;
  1754 + buildPhases = (
  1755 + DE952F654B764CAFD5883E396CBB5BC1 /* Headers */,
  1756 + B115C15CCB0DFF5714274B00F7205D2D /* Sources */,
  1757 + FE6EF9BEA5A15B749A305804897D7649 /* Frameworks */,
  1758 + 4EF2444A9A3D055BAD6ABFA94BB368C0 /* Resources */,
  1759 + );
  1760 + buildRules = (
  1761 + );
  1762 + dependencies = (
  1763 + B9FB518E6BD99D537FC62B5EB4CADC77 /* PBXTargetDependency */,
  1764 + );
  1765 + name = CNLiveEmptyView;
  1766 + productName = CNLiveEmptyView;
  1767 + productReference = 9D3622F9AD5484F18ABFF1B11583736C /* CNLiveEmptyView.framework */;
  1768 + productType = "com.apple.product-type.framework";
  1769 + };
  1770 + EE9172C60A1F7C178B32B8B671772F4C /* Pods-CNLiveEmptyView_Tests */ = {
  1771 + isa = PBXNativeTarget;
  1772 + buildConfigurationList = 8AF892FF193E85F2DF5EB6A8F5E1FAF4 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Tests" */;
  1773 + buildPhases = (
  1774 + AF251415B5D66D38FD92D6E6C9E4E280 /* Headers */,
  1775 + 0A80FD32D44D870C7A539CCE7CF3802D /* Sources */,
  1776 + 3FB64F9A0E890DA8CFA3FD2F765B67F7 /* Frameworks */,
  1777 + B5AAD4E6C69197AB53CE7520418428D4 /* Resources */,
  1778 + );
  1779 + buildRules = (
  1780 + );
  1781 + dependencies = (
  1782 + F3614C45BD17552B3CE190C34511063A /* PBXTargetDependency */,
  1783 + 3F5D74826E7C4F27F6DA44987F8900A3 /* PBXTargetDependency */,
  1784 + );
  1785 + name = "Pods-CNLiveEmptyView_Tests";
  1786 + productName = "Pods-CNLiveEmptyView_Tests";
  1787 + productReference = 40DD84E4741483E717928ECD5BC7511A /* Pods_CNLiveEmptyView_Tests.framework */;
  1788 + productType = "com.apple.product-type.framework";
  1789 + };
  1790 +/* End PBXNativeTarget section */
  1791 +
  1792 +/* Begin PBXProject section */
  1793 + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
  1794 + isa = PBXProject;
  1795 + attributes = {
  1796 + LastSwiftUpdateCheck = 0930;
  1797 + LastUpgradeCheck = 0930;
  1798 + };
  1799 + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
  1800 + compatibilityVersion = "Xcode 3.2";
  1801 + developmentRegion = English;
  1802 + hasScannedForEncodings = 0;
  1803 + knownRegions = (
  1804 + en,
  1805 + );
  1806 + mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
  1807 + productRefGroup = 1FEC0F572FD5AF79CFC1F7A3B09E6802 /* Products */;
  1808 + projectDirPath = "";
  1809 + projectRoot = "";
  1810 + targets = (
  1811 + 5FD6C1B5E41B57AC8FE465907571182B /* CNLiveEmptyView */,
  1812 + 43B0DA3AA48198ACED5A3CF5259C774F /* Pods-CNLiveEmptyView_Example */,
  1813 + EE9172C60A1F7C178B32B8B671772F4C /* Pods-CNLiveEmptyView_Tests */,
  1814 + 2885551A239E95E9A67302B20F0E798A /* QMUIKit */,
  1815 + );
  1816 + };
  1817 +/* End PBXProject section */
  1818 +
  1819 +/* Begin PBXResourcesBuildPhase section */
  1820 + 4EF2444A9A3D055BAD6ABFA94BB368C0 /* Resources */ = {
  1821 + isa = PBXResourcesBuildPhase;
  1822 + buildActionMask = 2147483647;
  1823 + files = (
  1824 + );
  1825 + runOnlyForDeploymentPostprocessing = 0;
  1826 + };
  1827 + B5AAD4E6C69197AB53CE7520418428D4 /* Resources */ = {
  1828 + isa = PBXResourcesBuildPhase;
  1829 + buildActionMask = 2147483647;
  1830 + files = (
  1831 + );
  1832 + runOnlyForDeploymentPostprocessing = 0;
  1833 + };
  1834 + B7A4E1380A55FCBF008C60207F6CEC85 /* Resources */ = {
  1835 + isa = PBXResourcesBuildPhase;
  1836 + buildActionMask = 2147483647;
  1837 + files = (
  1838 + );
  1839 + runOnlyForDeploymentPostprocessing = 0;
  1840 + };
  1841 + FB26DA8DA2D7094F886223EB49E8EBEE /* Resources */ = {
  1842 + isa = PBXResourcesBuildPhase;
  1843 + buildActionMask = 2147483647;
  1844 + files = (
  1845 + 293CE73AABE88640487AD29E26636B63 /* QMUIResources.bundle in Resources */,
  1846 + );
  1847 + runOnlyForDeploymentPostprocessing = 0;
  1848 + };
  1849 +/* End PBXResourcesBuildPhase section */
  1850 +
  1851 +/* Begin PBXSourcesBuildPhase section */
  1852 + 0A80FD32D44D870C7A539CCE7CF3802D /* Sources */ = {
  1853 + isa = PBXSourcesBuildPhase;
  1854 + buildActionMask = 2147483647;
  1855 + files = (
  1856 + 8252B8D53EB29E381C87E3205F960BD5 /* Pods-CNLiveEmptyView_Tests-dummy.m in Sources */,
  1857 + );
  1858 + runOnlyForDeploymentPostprocessing = 0;
  1859 + };
  1860 + 104983F9E8204C76786271A428A1AAE1 /* Sources */ = {
  1861 + isa = PBXSourcesBuildPhase;
  1862 + buildActionMask = 2147483647;
  1863 + files = (
  1864 + F234F3607CA45F890D06C59FE40D990B /* Pods-CNLiveEmptyView_Example-dummy.m in Sources */,
  1865 + );
  1866 + runOnlyForDeploymentPostprocessing = 0;
  1867 + };
  1868 + B115C15CCB0DFF5714274B00F7205D2D /* Sources */ = {
  1869 + isa = PBXSourcesBuildPhase;
  1870 + buildActionMask = 2147483647;
  1871 + files = (
  1872 + 75D89F60DE950EFE2FC33BB75035A049 /* CNLiveEmptyView-dummy.m in Sources */,
  1873 + F9E4DC75F56D2AD012E4CCA0CF237212 /* CNLIveEmptyView.m in Sources */,
  1874 + );
  1875 + runOnlyForDeploymentPostprocessing = 0;
  1876 + };
  1877 + C72B9069ECEB739B8FAD9E4DECB4FB82 /* Sources */ = {
  1878 + isa = PBXSourcesBuildPhase;
  1879 + buildActionMask = 2147483647;
  1880 + files = (
  1881 + 216810392D04AC06C8813FF35C2CF72C /* CAAnimation+QMUI.m in Sources */,
  1882 + CA7B8E6414F941B4210D4678CBE07D7E /* CALayer+QMUI.m in Sources */,
  1883 + 68377240D1B6065E5ECE7B07FD1F7B34 /* NSArray+QMUI.m in Sources */,
  1884 + C6E8891835E0F2E3405CC9AEFE51E838 /* NSAttributedString+QMUI.m in Sources */,
  1885 + 16F91D845B2418F1D33C63AA046A87E6 /* NSCharacterSet+QMUI.m in Sources */,
  1886 + 4E33FFA73C8016DE464E94021E5AEF22 /* NSNumber+QMUI.m in Sources */,
  1887 + ACB80C9490234516E5AC67EFE2CA8A07 /* NSObject+QMUI.m in Sources */,
  1888 + 56B9648570F5CD30F8227A75CCFC7198 /* NSObject+QMUIMultipleDelegates.m in Sources */,
  1889 + A5966578513EA11742658B760DE3824B /* NSParagraphStyle+QMUI.m in Sources */,
  1890 + 1C521EF625B41357F0CB413827B7CD86 /* NSPointerArray+QMUI.m in Sources */,
  1891 + D25F32DA7FED3363AA6B4B9E2FB5A510 /* NSString+QMUI.m in Sources */,
  1892 + E483666641A4474AF423CD46ABD5B34A /* NSURL+QMUI.m in Sources */,
  1893 + EC70CE17CA3023A1A77FF3A187CCE5DD /* QMUIAlbumViewController.m in Sources */,
  1894 + F7DF29F59BB17BF81DC52D0E86E72CEE /* QMUIAlertController.m in Sources */,
  1895 + 9197668099C0B08C451A5626B583432E /* QMUIAsset.m in Sources */,
  1896 + 4840535FFCA64938EF9867E66CCB1244 /* QMUIAssetsGroup.m in Sources */,
  1897 + 750DE3C97B3A6464199B953549510A5E /* QMUIAssetsManager.m in Sources */,
  1898 + 2FD137EDACEFD17AE2234F7144E7ED31 /* QMUIButton.m in Sources */,
  1899 + D4001C048D42BBB24DBB932DD2A152D4 /* QMUICellHeightCache.m in Sources */,
  1900 + 0C4EDDD500E4DD28BB95823F4FF2BE0E /* QMUICellHeightKeyCache.m in Sources */,
  1901 + 674FB071292ACC09A9B9A27FC62D8E87 /* QMUICellSizeKeyCache.m in Sources */,
  1902 + C1DF19B62F4921780A3E3FF3611A1173 /* QMUICollectionViewPagingLayout.m in Sources */,
  1903 + 69DB19F67214F6D2CDCD4F0BE623DE4E /* QMUICommonTableViewController.m in Sources */,
  1904 + FFDCF030E3CC9ED7A0ADA456BA085705 /* QMUICommonViewController.m in Sources */,
  1905 + 90D810F588B817BA5B7C9FC4A500FD8F /* QMUIConfiguration.m in Sources */,
  1906 + 1D01F53D1E98E75C1955E1A78E8C859E /* QMUIDialogViewController.m in Sources */,
  1907 + BABA2856001A48624ED8636E77E8370C /* QMUIEmotionInputManager.m in Sources */,
  1908 + 06C41B356F787F43EB7296C3DD0AF1D1 /* QMUIEmotionView.m in Sources */,
  1909 + 9A594F57FE68DF76BBACAFBBF0EC2E76 /* QMUIEmptyView.m in Sources */,
  1910 + 2B3307D5B5DB4765F3E7101CBA0A5A66 /* QMUIFillButton.m in Sources */,
  1911 + 57B5FB62EF642851329D9EA18B51ADC7 /* QMUIFloatLayoutView.m in Sources */,
  1912 + F2B7F0C9CE5FDD1E8D50C09858ED832F /* QMUIGhostButton.m in Sources */,
  1913 + 840A1B2DDF024C929FE654B990D9999E /* QMUIGridView.m in Sources */,
  1914 + 2C6F5C7EC31236A5061337E9FBB087B5 /* QMUIHelper.m in Sources */,
  1915 + 830B493C6EDF2CB9E0775AB0C41335D7 /* QMUIImagePickerCollectionViewCell.m in Sources */,
  1916 + 5363D625C0EBE1EB3A81DF4CC1C97636 /* QMUIImagePickerHelper.m in Sources */,
  1917 + 9252416654B3DC5DCEE157697C818069 /* QMUIImagePickerPreviewViewController.m in Sources */,
  1918 + F2AE5301B2774FE7CEDC3C5CDA45DB96 /* QMUIImagePickerViewController.m in Sources */,
  1919 + 3957DBE30574212BE7F8A9788ED06175 /* QMUIImagePreviewView.m in Sources */,
  1920 + F08C30D9EB1B3BB4223E0F1B398142F9 /* QMUIImagePreviewViewController.m in Sources */,
  1921 + 7942A4267F55B45E41424307CD48841C /* QMUIImagePreviewViewTransitionAnimator.m in Sources */,
  1922 + 9F255BD5D3303E755C39543AD44AFA67 /* QMUIKeyboardManager.m in Sources */,
  1923 + 5386B82B5D1F952034726981F704157E /* QMUIKit-dummy.m in Sources */,
  1924 + EEBC2EF893EB702CA83E71BB3E66B1BB /* QMUILabel.m in Sources */,
  1925 + EBA00B4E183291F16BD3E70F5545A19E /* QMUILinkButton.m in Sources */,
  1926 + CED8C0E109AE5C07457E6554AD5B71DD /* QMUILogger+QMUIConfigurationTemplate.m in Sources */,
  1927 + 23C419A7BBF7D9ABF92E19C9B79DEC37 /* QMUILogger.m in Sources */,
  1928 + 127020520F5A7FE2A3784679CDEB8A2C /* QMUILogItem.m in Sources */,
  1929 + 8351B663263F5E287EC8E897E42E2997 /* QMUILogManagerViewController.m in Sources */,
  1930 + 9E1B5962F63B6B46CC3B5ECF103EDA8B /* QMUILogNameManager.m in Sources */,
  1931 + 6D98C492932E992464313867827C6E48 /* QMUIMarqueeLabel.m in Sources */,
  1932 + B2CF36AAA556682AC90E4AB3D1C12850 /* QMUIModalPresentationViewController.m in Sources */,
  1933 + A6FF789663B4B7D19A6154645F4D4457 /* QMUIMoreOperationController.m in Sources */,
  1934 + 742418CFB9338DA932419261BA325BCF /* QMUIMultipleDelegates.m in Sources */,
  1935 + AB1B9F2119D2A09248DC0387BB323808 /* QMUINavigationBarScrollingAnimator.m in Sources */,
  1936 + DBF87BEC484D1A7BFB002AD37112A011 /* QMUINavigationBarScrollingSnapAnimator.m in Sources */,
  1937 + 7D9F0860712824EEF5951BA2DD855ED1 /* QMUINavigationButton.m in Sources */,
  1938 + 4127608B57F00089045F8AD7B1463D4D /* QMUINavigationController.m in Sources */,
  1939 + 3AD4E7946321C37CD401B684441A4799 /* QMUINavigationTitleView.m in Sources */,
  1940 + F379C6E0E8E0DFFD770095A09B05F54A /* QMUIOrderedDictionary.m in Sources */,
  1941 + 10F5B85145D8B1289BAE97EAE0C74426 /* QMUIPieProgressView.m in Sources */,
  1942 + FB04C1F111D42D3C00E986C35B1232A9 /* QMUIPopupContainerView.m in Sources */,
  1943 + 3F810AF22DAAB176E7556ED91633BCC6 /* QMUIPopupMenuBaseItem.m in Sources */,
  1944 + CFA005CE48ABAC391B329AD54F85956E /* QMUIPopupMenuButtonItem.m in Sources */,
  1945 + E086D684681607E1B2A0F468376F4F51 /* QMUIPopupMenuView.m in Sources */,
  1946 + C21C8A69C5E4CC58CB796365762D8ED9 /* QMUIRuntime.m in Sources */,
  1947 + 8ACB31850007B39C3AFDEECAEF54CBAC /* QMUIScrollAnimator.m in Sources */,
  1948 + E6354FA899B04183C15367F677D128C3 /* QMUISearchBar.m in Sources */,
  1949 + 484A97E777B74C8CE4A788F0C22FD4AC /* QMUISearchController.m in Sources */,
  1950 + C425BF7A9B47A20A84467BB3B10DA3D9 /* QMUISegmentedControl.m in Sources */,
  1951 + 82D066A40242C1DDA193CF943DCC82C5 /* QMUISlider.m in Sources */,
  1952 + EBDF30D89BBC44E122533D30BF408B5C /* QMUIStaticTableViewCellData.m in Sources */,
  1953 + E60ED6E94246A236B06916B76F78E442 /* QMUIStaticTableViewCellDataSource.m in Sources */,
  1954 + 413E377BAD7E6FDE4359149C2CE2867B /* QMUITabBarViewController.m in Sources */,
  1955 + BA0F5C38FA0610B28133D444CDCDDD77 /* QMUITableView.m in Sources */,
  1956 + FF84E0E96B8B3B34EEBC2178CD2D3465 /* QMUITableViewCell.m in Sources */,
  1957 + AC232A54F6D3B32F8F50919D6E9A906A /* QMUITableViewHeaderFooterView.m in Sources */,
  1958 + 0FC73C99FEE6A81E5009D4F2C3B66DFD /* QMUITestView.m in Sources */,
  1959 + BD104CD02B2C29C4B53323AE5302E98B /* QMUITextField.m in Sources */,
  1960 + 567E58C50172F4C34536D689A38AEAC6 /* QMUITextView.m in Sources */,
  1961 + B3AC824656DBDE0CF80B4BD75A3F3223 /* QMUITips.m in Sources */,
  1962 + 180FB456CF687FF6AEBFA75A5EDF6EEE /* QMUIToastAnimator.m in Sources */,
  1963 + 80A131003441D725597314C96032DEBB /* QMUIToastBackgroundView.m in Sources */,
  1964 + A931154D63A9799A8B71BA5510699B04 /* QMUIToastContentView.m in Sources */,
  1965 + 966C92271150560E0BF7943DB48151BF /* QMUIToastView.m in Sources */,
  1966 + 5F168C2431A1B549B591925585DE8AA5 /* QMUIToolbarButton.m in Sources */,
  1967 + 48B7E00B4F13EF83A0BF1C44E7142A5A /* QMUIVisualEffectView.m in Sources */,
  1968 + E75DDE590BCEC7556D4EE6B9DD014153 /* QMUIWeakObjectContainer.m in Sources */,
  1969 + 6DBF01A94C9EC969FBAE9E1ABAC630E3 /* QMUIZoomImageView.m in Sources */,
  1970 + C5E3B079DF68C75C3258AC3DB725D128 /* UIActivityIndicatorView+QMUI.m in Sources */,
  1971 + 6F4638A576D8B3C7445A474F348F301A /* UIBarItem+QMUI.m in Sources */,
  1972 + 59E7E25D8A135EDACB7759F2C49F73C1 /* UIBarItem+QMUIBadge.m in Sources */,
  1973 + 2FBC225F35A70C8AFBFC5DA8587078DC /* UIBezierPath+QMUI.m in Sources */,
  1974 + 5836CBE9D3EB3AD1F6BE58731BB5F740 /* UIButton+QMUI.m in Sources */,
  1975 + 37CC805CBC9818AC65B875A3207C4906 /* UICollectionView+QMUI.m in Sources */,
  1976 + 1DD173A80C0378E21D465DBA7861A99D /* UICollectionView+QMUICellSizeKeyCache.m in Sources */,
  1977 + AD5FC16345EC189A5D6A828CD8B72EBA /* UIColor+QMUI.m in Sources */,
  1978 + A56C764E5EE137BFDDA241172DC2662B /* UIControl+QMUI.m in Sources */,
  1979 + 06183E502B4C592FE7A3B5EBD100D7D8 /* UIFont+QMUI.m in Sources */,
  1980 + 8E91D1B51CE94B9B76209EE668DCB0B4 /* UIGestureRecognizer+QMUI.m in Sources */,
  1981 + 15A3FE9F87BB0A861007EB50FD22EB07 /* UIImage+QMUI.m in Sources */,
  1982 + 9E5E984428B1C5FE7AA4C35236C0B4A3 /* UIImageView+QMUI.m in Sources */,
  1983 + A2944278F3892353760FF412AAC0378B /* UIInterface+QMUI.m in Sources */,
  1984 + DCB7A9361EEA6DA8CA48E693A40A1F1A /* UILabel+QMUI.m in Sources */,
  1985 + 62FBEBCB65A3CBCB14C356B3241EB295 /* UINavigationBar+QMUI.m in Sources */,
  1986 + B9BAFCAA207285C670189F321F00FDA3 /* UINavigationBar+Transition.m in Sources */,
  1987 + 11A6AF711CA2813D33E793E86D1E012A /* UINavigationController+NavigationBarTransition.m in Sources */,
  1988 + 2D4FD6A500B3AE311CFA3EEBA628C8CB /* UINavigationController+QMUI.m in Sources */,
  1989 + B2A1F201BDF14608967CFC2F3883BB17 /* UIScrollView+QMUI.m in Sources */,
  1990 + E4DDCDC1A3C8101648191FBEB73CAEA5 /* UISearchBar+QMUI.m in Sources */,
  1991 + 4C64B60D53B34F56E639392C9827A7E8 /* UITabBar+QMUI.m in Sources */,
  1992 + 91FCDCC474D6595ADB754593D7B106E0 /* UITabBarItem+QMUI.m in Sources */,
  1993 + 18B51AE8AF73D0DD2A724A092F5093F5 /* UITableView+QMUI.m in Sources */,
  1994 + 8AD1DBF67A9F618E32E19A9088D6038C /* UITableView+QMUICellHeightKeyCache.m in Sources */,
  1995 + B98197DDE77CDC4A1EB29C663F25426C /* UITableView+QMUIStaticCell.m in Sources */,
  1996 + E4FB601C1C80420E9F42DD00C8227C52 /* UITableViewCell+QMUI.m in Sources */,
  1997 + 07BEB44AA7ADF48B9670C5BF5A7D346B /* UITextField+QMUI.m in Sources */,
  1998 + 4C1A02885473223F6DDABAFE8FCC2CCD /* UITextView+QMUI.m in Sources */,
  1999 + EB4E57488CADC70956C924F743915F3B /* UIView+QMUI.m in Sources */,
  2000 + 72BF013DC2B8EE4144E227AE82CD4B61 /* UIViewController+QMUI.m in Sources */,
  2001 + 2B20ED99B49E02EFF0C3C08B98FA9609 /* UIWindow+QMUI.m in Sources */,
  2002 + );
  2003 + runOnlyForDeploymentPostprocessing = 0;
  2004 + };
  2005 +/* End PBXSourcesBuildPhase section */
  2006 +
  2007 +/* Begin PBXTargetDependency section */
  2008 + 3F5D74826E7C4F27F6DA44987F8900A3 /* PBXTargetDependency */ = {
  2009 + isa = PBXTargetDependency;
  2010 + name = QMUIKit;
  2011 + target = 2885551A239E95E9A67302B20F0E798A /* QMUIKit */;
  2012 + targetProxy = C0CB3782696DB06EEAFB377165598512 /* PBXContainerItemProxy */;
  2013 + };
  2014 + 5C232F0F15EE5482FFFCB5A679BC2AB2 /* PBXTargetDependency */ = {
  2015 + isa = PBXTargetDependency;
  2016 + name = QMUIKit;
  2017 + target = 2885551A239E95E9A67302B20F0E798A /* QMUIKit */;
  2018 + targetProxy = C57D8FAD6992FF1ACADBC51FF31BC6F2 /* PBXContainerItemProxy */;
  2019 + };
  2020 + 69B82AE6BA01B1C61C255B0F8B613324 /* PBXTargetDependency */ = {
  2021 + isa = PBXTargetDependency;
  2022 + name = CNLiveEmptyView;
  2023 + target = 5FD6C1B5E41B57AC8FE465907571182B /* CNLiveEmptyView */;
  2024 + targetProxy = 46F058EAB977557ABCB3DE72D010CA6F /* PBXContainerItemProxy */;
  2025 + };
  2026 + B9FB518E6BD99D537FC62B5EB4CADC77 /* PBXTargetDependency */ = {
  2027 + isa = PBXTargetDependency;
  2028 + name = QMUIKit;
  2029 + target = 2885551A239E95E9A67302B20F0E798A /* QMUIKit */;
  2030 + targetProxy = F0385B6036263C82238ABF8DF7AA6712 /* PBXContainerItemProxy */;
  2031 + };
  2032 + F3614C45BD17552B3CE190C34511063A /* PBXTargetDependency */ = {
  2033 + isa = PBXTargetDependency;
  2034 + name = "Pods-CNLiveEmptyView_Example";
  2035 + target = 43B0DA3AA48198ACED5A3CF5259C774F /* Pods-CNLiveEmptyView_Example */;
  2036 + targetProxy = 7C343FB263765A3A80A624CFDF99735D /* PBXContainerItemProxy */;
  2037 + };
  2038 +/* End PBXTargetDependency section */
  2039 +
  2040 +/* Begin XCBuildConfiguration section */
  2041 + 4AEC880577F1CA7A2CAD3B3D854366C4 /* Release */ = {
  2042 + isa = XCBuildConfiguration;
  2043 + baseConfigurationReference = 214FBE177F855DB8735D07488C0A2762 /* Pods-CNLiveEmptyView_Tests.release.xcconfig */;
  2044 + buildSettings = {
  2045 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2046 + CODE_SIGN_IDENTITY = "";
  2047 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2048 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2049 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2050 + CURRENT_PROJECT_VERSION = 1;
  2051 + DEFINES_MODULE = YES;
  2052 + DYLIB_COMPATIBILITY_VERSION = 1;
  2053 + DYLIB_CURRENT_VERSION = 1;
  2054 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2055 + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Info.plist";
  2056 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2057 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2058 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2059 + MACH_O_TYPE = staticlib;
  2060 + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests.modulemap";
  2061 + OTHER_LDFLAGS = "";
  2062 + OTHER_LIBTOOLFLAGS = "";
  2063 + PODS_ROOT = "$(SRCROOT)";
  2064 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2065 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  2066 + SDKROOT = iphoneos;
  2067 + SKIP_INSTALL = YES;
  2068 + TARGETED_DEVICE_FAMILY = "1,2";
  2069 + VALIDATE_PRODUCT = YES;
  2070 + VERSIONING_SYSTEM = "apple-generic";
  2071 + VERSION_INFO_PREFIX = "";
  2072 + };
  2073 + name = Release;
  2074 + };
  2075 + 5B4CB420FB2900C558CE805FEE33DD84 /* Debug */ = {
  2076 + isa = XCBuildConfiguration;
  2077 + baseConfigurationReference = 42D89F1774203F4D0B5773774F363BA5 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */;
  2078 + buildSettings = {
  2079 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2080 + CODE_SIGN_IDENTITY = "";
  2081 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2082 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2083 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2084 + CURRENT_PROJECT_VERSION = 1;
  2085 + DEFINES_MODULE = YES;
  2086 + DYLIB_COMPATIBILITY_VERSION = 1;
  2087 + DYLIB_CURRENT_VERSION = 1;
  2088 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2089 + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Info.plist";
  2090 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2091 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2092 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2093 + MACH_O_TYPE = staticlib;
  2094 + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests.modulemap";
  2095 + OTHER_LDFLAGS = "";
  2096 + OTHER_LIBTOOLFLAGS = "";
  2097 + PODS_ROOT = "$(SRCROOT)";
  2098 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2099 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  2100 + SDKROOT = iphoneos;
  2101 + SKIP_INSTALL = YES;
  2102 + TARGETED_DEVICE_FAMILY = "1,2";
  2103 + VERSIONING_SYSTEM = "apple-generic";
  2104 + VERSION_INFO_PREFIX = "";
  2105 + };
  2106 + name = Debug;
  2107 + };
  2108 + 5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */ = {
  2109 + isa = XCBuildConfiguration;
  2110 + buildSettings = {
  2111 + ALWAYS_SEARCH_USER_PATHS = NO;
  2112 + CLANG_ANALYZER_NONNULL = YES;
  2113 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2114 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2115 + CLANG_CXX_LIBRARY = "libc++";
  2116 + CLANG_ENABLE_MODULES = YES;
  2117 + CLANG_ENABLE_OBJC_ARC = YES;
  2118 + CLANG_ENABLE_OBJC_WEAK = YES;
  2119 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2120 + CLANG_WARN_BOOL_CONVERSION = YES;
  2121 + CLANG_WARN_COMMA = YES;
  2122 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  2123 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2124 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2125 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2126 + CLANG_WARN_EMPTY_BODY = YES;
  2127 + CLANG_WARN_ENUM_CONVERSION = YES;
  2128 + CLANG_WARN_INFINITE_RECURSION = YES;
  2129 + CLANG_WARN_INT_CONVERSION = YES;
  2130 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2131 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2132 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2133 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2134 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2135 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  2136 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2137 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2138 + CLANG_WARN_UNREACHABLE_CODE = YES;
  2139 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2140 + CODE_SIGNING_ALLOWED = NO;
  2141 + CODE_SIGNING_REQUIRED = NO;
  2142 + COPY_PHASE_STRIP = NO;
  2143 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2144 + ENABLE_NS_ASSERTIONS = NO;
  2145 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  2146 + GCC_C_LANGUAGE_STANDARD = gnu11;
  2147 + GCC_NO_COMMON_BLOCKS = YES;
  2148 + GCC_PREPROCESSOR_DEFINITIONS = (
  2149 + "POD_CONFIGURATION_RELEASE=1",
  2150 + "$(inherited)",
  2151 + );
  2152 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2153 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2154 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  2155 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2156 + GCC_WARN_UNUSED_FUNCTION = YES;
  2157 + GCC_WARN_UNUSED_VARIABLE = YES;
  2158 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2159 + MTL_ENABLE_DEBUG_INFO = NO;
  2160 + MTL_FAST_MATH = YES;
  2161 + PRODUCT_NAME = "$(TARGET_NAME)";
  2162 + STRIP_INSTALLED_PRODUCT = NO;
  2163 + SWIFT_COMPILATION_MODE = wholemodule;
  2164 + SWIFT_OPTIMIZATION_LEVEL = "-O";
  2165 + SWIFT_VERSION = 4.2;
  2166 + SYMROOT = "${SRCROOT}/../build";
  2167 + };
  2168 + name = Release;
  2169 + };
  2170 + 858D01EEFE984249A9581D18DBEA53F1 /* Debug */ = {
  2171 + isa = XCBuildConfiguration;
  2172 + buildSettings = {
  2173 + ALWAYS_SEARCH_USER_PATHS = NO;
  2174 + CLANG_ANALYZER_NONNULL = YES;
  2175 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2176 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2177 + CLANG_CXX_LIBRARY = "libc++";
  2178 + CLANG_ENABLE_MODULES = YES;
  2179 + CLANG_ENABLE_OBJC_ARC = YES;
  2180 + CLANG_ENABLE_OBJC_WEAK = YES;
  2181 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2182 + CLANG_WARN_BOOL_CONVERSION = YES;
  2183 + CLANG_WARN_COMMA = YES;
  2184 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  2185 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2186 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2187 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2188 + CLANG_WARN_EMPTY_BODY = YES;
  2189 + CLANG_WARN_ENUM_CONVERSION = YES;
  2190 + CLANG_WARN_INFINITE_RECURSION = YES;
  2191 + CLANG_WARN_INT_CONVERSION = YES;
  2192 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2193 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2194 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2195 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2196 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2197 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  2198 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2199 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2200 + CLANG_WARN_UNREACHABLE_CODE = YES;
  2201 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2202 + CODE_SIGNING_ALLOWED = NO;
  2203 + CODE_SIGNING_REQUIRED = NO;
  2204 + COPY_PHASE_STRIP = NO;
  2205 + DEBUG_INFORMATION_FORMAT = dwarf;
  2206 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  2207 + ENABLE_TESTABILITY = YES;
  2208 + GCC_C_LANGUAGE_STANDARD = gnu11;
  2209 + GCC_DYNAMIC_NO_PIC = NO;
  2210 + GCC_NO_COMMON_BLOCKS = YES;
  2211 + GCC_OPTIMIZATION_LEVEL = 0;
  2212 + GCC_PREPROCESSOR_DEFINITIONS = (
  2213 + "POD_CONFIGURATION_DEBUG=1",
  2214 + "DEBUG=1",
  2215 + "$(inherited)",
  2216 + );
  2217 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2218 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2219 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  2220 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2221 + GCC_WARN_UNUSED_FUNCTION = YES;
  2222 + GCC_WARN_UNUSED_VARIABLE = YES;
  2223 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2224 + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2225 + MTL_FAST_MATH = YES;
  2226 + ONLY_ACTIVE_ARCH = YES;
  2227 + PRODUCT_NAME = "$(TARGET_NAME)";
  2228 + STRIP_INSTALLED_PRODUCT = NO;
  2229 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2230 + SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2231 + SWIFT_VERSION = 4.2;
  2232 + SYMROOT = "${SRCROOT}/../build";
  2233 + };
  2234 + name = Debug;
  2235 + };
  2236 + 8A11E07EA56DC2D99F550CAD519ECC86 /* Debug */ = {
  2237 + isa = XCBuildConfiguration;
  2238 + baseConfigurationReference = BE6092B2EA6FB8EA45923D89A94F3BFC /* Pods-CNLiveEmptyView_Example.debug.xcconfig */;
  2239 + buildSettings = {
  2240 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2241 + CODE_SIGN_IDENTITY = "";
  2242 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2243 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2244 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2245 + CURRENT_PROJECT_VERSION = 1;
  2246 + DEFINES_MODULE = YES;
  2247 + DYLIB_COMPATIBILITY_VERSION = 1;
  2248 + DYLIB_CURRENT_VERSION = 1;
  2249 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2250 + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Info.plist";
  2251 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2252 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2253 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2254 + MACH_O_TYPE = staticlib;
  2255 + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example.modulemap";
  2256 + OTHER_LDFLAGS = "";
  2257 + OTHER_LIBTOOLFLAGS = "";
  2258 + PODS_ROOT = "$(SRCROOT)";
  2259 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2260 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  2261 + SDKROOT = iphoneos;
  2262 + SKIP_INSTALL = YES;
  2263 + TARGETED_DEVICE_FAMILY = "1,2";
  2264 + VERSIONING_SYSTEM = "apple-generic";
  2265 + VERSION_INFO_PREFIX = "";
  2266 + };
  2267 + name = Debug;
  2268 + };
  2269 + 8EB8482FF9F59D3C2CA083CCDB38C8EC /* Release */ = {
  2270 + isa = XCBuildConfiguration;
  2271 + baseConfigurationReference = 04C935A6EE0AF3EC233622E9DB4133E2 /* CNLiveEmptyView.xcconfig */;
  2272 + buildSettings = {
  2273 + CODE_SIGN_IDENTITY = "";
  2274 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2275 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2276 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2277 + CURRENT_PROJECT_VERSION = 1;
  2278 + DEFINES_MODULE = YES;
  2279 + DYLIB_COMPATIBILITY_VERSION = 1;
  2280 + DYLIB_CURRENT_VERSION = 1;
  2281 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2282 + GCC_PREFIX_HEADER = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView-prefix.pch";
  2283 + INFOPLIST_FILE = "Target Support Files/CNLiveEmptyView/Info.plist";
  2284 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2285 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2286 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2287 + MODULEMAP_FILE = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView.modulemap";
  2288 + PRODUCT_MODULE_NAME = CNLiveEmptyView;
  2289 + PRODUCT_NAME = CNLiveEmptyView;
  2290 + SDKROOT = iphoneos;
  2291 + SKIP_INSTALL = YES;
  2292 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2293 + TARGETED_DEVICE_FAMILY = "1,2";
  2294 + VALIDATE_PRODUCT = YES;
  2295 + VERSIONING_SYSTEM = "apple-generic";
  2296 + VERSION_INFO_PREFIX = "";
  2297 + };
  2298 + name = Release;
  2299 + };
  2300 + AD18F172FFBAF5D938FF3C7CC1E61692 /* Release */ = {
  2301 + isa = XCBuildConfiguration;
  2302 + baseConfigurationReference = 00778AE6A4C57D8DB6DF4F714336FCC3 /* Pods-CNLiveEmptyView_Example.release.xcconfig */;
  2303 + buildSettings = {
  2304 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2305 + CODE_SIGN_IDENTITY = "";
  2306 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2307 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2308 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2309 + CURRENT_PROJECT_VERSION = 1;
  2310 + DEFINES_MODULE = YES;
  2311 + DYLIB_COMPATIBILITY_VERSION = 1;
  2312 + DYLIB_CURRENT_VERSION = 1;
  2313 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2314 + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Info.plist";
  2315 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2316 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2317 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2318 + MACH_O_TYPE = staticlib;
  2319 + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example.modulemap";
  2320 + OTHER_LDFLAGS = "";
  2321 + OTHER_LIBTOOLFLAGS = "";
  2322 + PODS_ROOT = "$(SRCROOT)";
  2323 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2324 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  2325 + SDKROOT = iphoneos;
  2326 + SKIP_INSTALL = YES;
  2327 + TARGETED_DEVICE_FAMILY = "1,2";
  2328 + VALIDATE_PRODUCT = YES;
  2329 + VERSIONING_SYSTEM = "apple-generic";
  2330 + VERSION_INFO_PREFIX = "";
  2331 + };
  2332 + name = Release;
  2333 + };
  2334 + C5FFE7F651F297A0ACCE835671600551 /* Release */ = {
  2335 + isa = XCBuildConfiguration;
  2336 + baseConfigurationReference = 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */;
  2337 + buildSettings = {
  2338 + CODE_SIGN_IDENTITY = "";
  2339 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2340 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2341 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2342 + CURRENT_PROJECT_VERSION = 1;
  2343 + DEFINES_MODULE = YES;
  2344 + DYLIB_COMPATIBILITY_VERSION = 1;
  2345 + DYLIB_CURRENT_VERSION = 1;
  2346 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2347 + GCC_PREFIX_HEADER = "Target Support Files/QMUIKit/QMUIKit-prefix.pch";
  2348 + INFOPLIST_FILE = "Target Support Files/QMUIKit/Info.plist";
  2349 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2350 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2351 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2352 + MODULEMAP_FILE = "Target Support Files/QMUIKit/QMUIKit.modulemap";
  2353 + PRODUCT_MODULE_NAME = QMUIKit;
  2354 + PRODUCT_NAME = QMUIKit;
  2355 + SDKROOT = iphoneos;
  2356 + SKIP_INSTALL = YES;
  2357 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2358 + TARGETED_DEVICE_FAMILY = "1,2";
  2359 + VALIDATE_PRODUCT = YES;
  2360 + VERSIONING_SYSTEM = "apple-generic";
  2361 + VERSION_INFO_PREFIX = "";
  2362 + };
  2363 + name = Release;
  2364 + };
  2365 + E88DC25B2B655FE3DBFD3B619669073A /* Debug */ = {
  2366 + isa = XCBuildConfiguration;
  2367 + baseConfigurationReference = 04C935A6EE0AF3EC233622E9DB4133E2 /* CNLiveEmptyView.xcconfig */;
  2368 + buildSettings = {
  2369 + CODE_SIGN_IDENTITY = "";
  2370 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2371 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2372 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2373 + CURRENT_PROJECT_VERSION = 1;
  2374 + DEFINES_MODULE = YES;
  2375 + DYLIB_COMPATIBILITY_VERSION = 1;
  2376 + DYLIB_CURRENT_VERSION = 1;
  2377 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2378 + GCC_PREFIX_HEADER = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView-prefix.pch";
  2379 + INFOPLIST_FILE = "Target Support Files/CNLiveEmptyView/Info.plist";
  2380 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2381 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2382 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2383 + MODULEMAP_FILE = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView.modulemap";
  2384 + PRODUCT_MODULE_NAME = CNLiveEmptyView;
  2385 + PRODUCT_NAME = CNLiveEmptyView;
  2386 + SDKROOT = iphoneos;
  2387 + SKIP_INSTALL = YES;
  2388 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2389 + TARGETED_DEVICE_FAMILY = "1,2";
  2390 + VERSIONING_SYSTEM = "apple-generic";
  2391 + VERSION_INFO_PREFIX = "";
  2392 + };
  2393 + name = Debug;
  2394 + };
  2395 + ED924C7B0596B5A03A8558A0312BB041 /* Debug */ = {
  2396 + isa = XCBuildConfiguration;
  2397 + baseConfigurationReference = 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */;
  2398 + buildSettings = {
  2399 + CODE_SIGN_IDENTITY = "";
  2400 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2401 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2402 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2403 + CURRENT_PROJECT_VERSION = 1;
  2404 + DEFINES_MODULE = YES;
  2405 + DYLIB_COMPATIBILITY_VERSION = 1;
  2406 + DYLIB_CURRENT_VERSION = 1;
  2407 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  2408 + GCC_PREFIX_HEADER = "Target Support Files/QMUIKit/QMUIKit-prefix.pch";
  2409 + INFOPLIST_FILE = "Target Support Files/QMUIKit/Info.plist";
  2410 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2411 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2412 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2413 + MODULEMAP_FILE = "Target Support Files/QMUIKit/QMUIKit.modulemap";
  2414 + PRODUCT_MODULE_NAME = QMUIKit;
  2415 + PRODUCT_NAME = QMUIKit;
  2416 + SDKROOT = iphoneos;
  2417 + SKIP_INSTALL = YES;
  2418 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2419 + TARGETED_DEVICE_FAMILY = "1,2";
  2420 + VERSIONING_SYSTEM = "apple-generic";
  2421 + VERSION_INFO_PREFIX = "";
  2422 + };
  2423 + name = Debug;
  2424 + };
  2425 +/* End XCBuildConfiguration section */
  2426 +
  2427 +/* Begin XCConfigurationList section */
  2428 + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
  2429 + isa = XCConfigurationList;
  2430 + buildConfigurations = (
  2431 + 858D01EEFE984249A9581D18DBEA53F1 /* Debug */,
  2432 + 5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */,
  2433 + );
  2434 + defaultConfigurationIsVisible = 0;
  2435 + defaultConfigurationName = Release;
  2436 + };
  2437 + 344B2A5D359C11BE7B5808D3EE929121 /* Build configuration list for PBXNativeTarget "QMUIKit" */ = {
  2438 + isa = XCConfigurationList;
  2439 + buildConfigurations = (
  2440 + ED924C7B0596B5A03A8558A0312BB041 /* Debug */,
  2441 + C5FFE7F651F297A0ACCE835671600551 /* Release */,
  2442 + );
  2443 + defaultConfigurationIsVisible = 0;
  2444 + defaultConfigurationName = Release;
  2445 + };
  2446 + 8AF892FF193E85F2DF5EB6A8F5E1FAF4 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Tests" */ = {
  2447 + isa = XCConfigurationList;
  2448 + buildConfigurations = (
  2449 + 5B4CB420FB2900C558CE805FEE33DD84 /* Debug */,
  2450 + 4AEC880577F1CA7A2CAD3B3D854366C4 /* Release */,
  2451 + );
  2452 + defaultConfigurationIsVisible = 0;
  2453 + defaultConfigurationName = Release;
  2454 + };
  2455 + 93753E25CF88EF336E0B5C204CE53F16 /* Build configuration list for PBXNativeTarget "CNLiveEmptyView" */ = {
  2456 + isa = XCConfigurationList;
  2457 + buildConfigurations = (
  2458 + E88DC25B2B655FE3DBFD3B619669073A /* Debug */,
  2459 + 8EB8482FF9F59D3C2CA083CCDB38C8EC /* Release */,
  2460 + );
  2461 + defaultConfigurationIsVisible = 0;
  2462 + defaultConfigurationName = Release;
  2463 + };
  2464 + C29DF5FC00803D294A3F0B4EDF5FD285 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Example" */ = {
  2465 + isa = XCConfigurationList;
  2466 + buildConfigurations = (
  2467 + 8A11E07EA56DC2D99F550CAD519ECC86 /* Debug */,
  2468 + AD18F172FFBAF5D938FF3C7CC1E61692 /* Release */,
  2469 + );
  2470 + defaultConfigurationIsVisible = 0;
  2471 + defaultConfigurationName = Release;
  2472 + };
  2473 +/* End XCConfigurationList section */
  2474 + };
  2475 + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  2476 +}
... ...
Example/Pods/QMUIKit/LICENSE.TXT 0 → 100644
  1 +++ a/Example/Pods/QMUIKit/LICENSE.TXT
  1 +Tencent is pleased to support the open source community by making QMUI_iOS available.
  2 +Copyright (C) 2016-2018 THL A29 Limited, a Tencent company. All rights reserved.
  3 +If you have downloaded a copy of the QMUI_iOS binary from Tencent, please note that the QMUI_iOS binary is licensed under the MIT License.
  4 +If you have downloaded a copy of the QMUI_iOS source code from Tencent, please note that QMUI_iOS source code is licensed under the MIT License. Your integration of QMUI_iOS into your own projects may require compliance with the MIT License.
  5 +A copy of the MIT License is included in this file.
  6 +
  7 +
  8 +Terms of the MIT License:
  9 +---------------------------------------------------
  10 +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  11 +
  12 +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  13 +
  14 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
... ...
Example/Pods/QMUIKit/QMUIConfigurationTemplate/QMUIConfigurationTemplate.h 0 → 100644
  1 +++ a/Example/Pods/QMUIKit/QMUIConfigurationTemplate/QMUIConfigurationTemplate.h
  1 +/*****
  2 + * Tencent is pleased to support the open source community by making QMUI_iOS available.
  3 + * Copyright (C) 2016-2018 THL A29 Limited, a Tencent company. All rights reserved.
  4 + * Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
  5 + * http://opensource.org/licenses/MIT
  6 + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  7 + *****/
  8 +
  9 +//
  10 +// QMUIConfigurationTemplate.h
  11 +//
  12 +// Created by QMUI Team on 15/3/29.
  13 +//
  14 +
  15 +#import <Foundation/Foundation.h>
  16 +#import <QMUIKit/QMUIKit.h>
  17 +
  18 +/**
  19 + * QMUIConfigurationTemplate 是一份配置表,用于配合 QMUIConfiguration 来管理整个 App 的全局样式,使用方式:
  20 + * 在 QMUI 项目代码的文件夹里找到 QMUIConfigurationTemplate 目录,把里面所有文件复制到自己项目里,保证能被编译到即可,不需要在某些地方 import,也不需要手动运行。
  21 + *
  22 + * @warning 更新 QMUIKit 的版本时,请留意 Release Log 里是否有提醒更新配置表,请尽量保持自己项目里的配置表与 QMUIKit 里的配置表一致,避免遗漏新的属性。
  23 + * @warning 配置表的 class 名必须以 QMUIConfigurationTemplate 开头,并且实现 <QMUIConfigurationTemplateProtocol>,因为这两者是 QMUI 识别该 NSObject 是否为一份配置表的条件。
  24 + * @warning QMUI 2.3.0 之后,配置表改为自动运行,不需要再在某个地方手动运行了。
  25 + */
  26 +@interface QMUIConfigurationTemplate : NSObject <QMUIConfigurationTemplateProtocol>
  27 +
  28 +@end
... ...