Commit 8d4e3ee776e13de77f15002137acd3be2a85d4e4
1 parent
27576b00
0.0.2
Showing
28 changed files
with
4729 additions
and
0 deletions
Too many changes to show.
To preserve performance only 28 of 341 files are displayed.
.gitignore
0 → 100644
| 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 | +# 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 | + | |
| 2 | + | |
| 3 | +Pod::Spec.new do |s| | |
| 4 | + s.name = 'CNLiveEmptyView' | |
| 5 | + s.version = '0.0.2' | |
| 6 | + s.summary = 'QMUIEmptyView封装' | |
| 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 | +// | |
| 2 | +// CNLiveEmptyView.h | |
| 3 | +// CNLiveEmptyView | |
| 4 | +// | |
| 5 | +// Created by 殷巧娟 on 2018/12/28. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <UIKit/UIKit.h> | |
| 9 | +@class QMUIButton; | |
| 10 | + | |
| 11 | +NS_ASSUME_NONNULL_BEGIN | |
| 12 | + | |
| 13 | +@protocol QMUIEmptyViewLoadingViewProtocol <NSObject> | |
| 14 | + | |
| 15 | +@optional | |
| 16 | + | |
| 17 | +- (void)startAnimating; // 当调用 setLoadingViewHidden:NO 时,系统将自动调用此处的 startAnimating | |
| 18 | + | |
| 19 | +@end | |
| 20 | + | |
| 21 | +/** | |
| 22 | + * 通用的空界面控件,支持显示 loading、标题和副标题提示语、占位图片,QMUICommonViewController 内已集成一个 emptyView,无需额外添加。 | |
| 23 | + */ | |
| 24 | +@interface CNLiveEmptyView : UIView | |
| 25 | +// 布局顺序从上到下依次为:imageView, loadingView, textLabel, detailTextLabel, actionButton | |
| 26 | +@property(nonatomic, strong) UIView<QMUIEmptyViewLoadingViewProtocol>*loadingView; // 此控件通过设置 loadingView.hidden 来控制 loadinView 的显示和隐藏,因此请确保你的loadingView 没有类似于 hidesWhenStopped = YES 之类会使 view.hidden 失效的属性 | |
| 27 | +@property(nonatomic, strong, readonly) UIImageView *imageView; | |
| 28 | +@property(nonatomic, strong, readonly) UILabel *textLabel; | |
| 29 | +@property(nonatomic, strong, readonly) UILabel *detailTextLabel; | |
| 30 | +@property(nonatomic, strong, readonly) QMUIButton *actionButton; | |
| 31 | + | |
| 32 | +// 可通过调整这些insets来控制间距 | |
| 33 | +@property(nonatomic, assign) UIEdgeInsets imageViewInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 36, 0) | |
| 34 | +@property(nonatomic, assign) UIEdgeInsets loadingViewInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 36, 0) | |
| 35 | +@property(nonatomic, assign) UIEdgeInsets textLabelInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 10, 0) | |
| 36 | +@property(nonatomic, assign) UIEdgeInsets detailTextLabelInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 10, 0) | |
| 37 | +@property(nonatomic, assign) UIEdgeInsets actionButtonInsets UI_APPEARANCE_SELECTOR; // 默认为(0, 0, 0, 0) | |
| 38 | +@property(nonatomic, assign) CGFloat verticalOffset UI_APPEARANCE_SELECTOR; // 如果不想要内容整体垂直居中,则可通过调整此属性来进行垂直偏移。默认为-30,即内容比中间略微偏上 | |
| 39 | + | |
| 40 | +// 字体 | |
| 41 | +@property(nonatomic, strong) UIFont *textLabelFont UI_APPEARANCE_SELECTOR; // 默认为15pt系统字体 | |
| 42 | +@property(nonatomic, strong) UIFont *detailTextLabelFont UI_APPEARANCE_SELECTOR; // 默认为14pt系统字体 | |
| 43 | +@property(nonatomic, strong) UIFont *actionButtonFont UI_APPEARANCE_SELECTOR; // 默认为15pt系统字体 | |
| 44 | + | |
| 45 | +// 颜色 | |
| 46 | +@property(nonatomic, strong) UIColor *textLabelTextColor UI_APPEARANCE_SELECTOR; // 默认为(93, 100, 110) | |
| 47 | +@property(nonatomic, strong) UIColor *detailTextLabelTextColor UI_APPEARANCE_SELECTOR; // 默认为(133, 140, 150) | |
| 48 | +@property(nonatomic, strong) UIColor *actionButtonTitleColor UI_APPEARANCE_SELECTOR; // 默认为 ButtonTintColor | |
| 49 | + | |
| 50 | +// 显示或隐藏loading图标 | |
| 51 | +- (void)setLoadingViewHidden:(BOOL)hidden; | |
| 52 | + | |
| 53 | +/** | |
| 54 | + * 设置要显示的图片 | |
| 55 | + * @param image 要显示的图片,为nil则不显示 | |
| 56 | + */ | |
| 57 | +- (void)setImage:(UIImage *)image; | |
| 58 | + | |
| 59 | +/** | |
| 60 | + * 设置提示语 | |
| 61 | + * @param text 提示语文本,若为nil则隐藏textLabel | |
| 62 | + */ | |
| 63 | +- (void)setTextLabelText:(NSString *)text; | |
| 64 | + | |
| 65 | +/** | |
| 66 | + * 设置详细提示语的文本 | |
| 67 | + * @param text 详细提示语文本,若为nil则隐藏detailTextLabel | |
| 68 | + */ | |
| 69 | +- (void)setDetailTextLabelText:(NSString *)text; | |
| 70 | + | |
| 71 | +/** | |
| 72 | + * 设置操作按钮的文本 | |
| 73 | + * @param title 操作按钮的文本,若为nil则隐藏actionButton | |
| 74 | + */ | |
| 75 | +- (void)setActionButtonTitle:(NSString *)title; | |
| 76 | + | |
| 77 | +/** | |
| 78 | + * 如果要继承QMUIEmptyView并添加新的子 view,则必须: | |
| 79 | + * 1. 像其它自带 view 一样添加到 contentView 上 | |
| 80 | + * 2. 重写sizeThatContentViewFits | |
| 81 | + */ | |
| 82 | +@property(nonatomic, strong, readonly) UIView *contentView; | |
| 83 | +- (CGSize)sizeThatContentViewFits; // 返回一个恰好容纳所有子 view 的大小 | |
| 84 | + | |
| 85 | +@end | |
| 86 | + | |
| 87 | +NS_ASSUME_NONNULL_END | ... | ... |
CNLiveEmptyView/Classes/CNLiveEmptyView.m
0 → 100644
| 1 | +// | |
| 2 | +// CNLiveEmptyView.m | |
| 3 | +// CNLiveEmptyView | |
| 4 | +// | |
| 5 | +// Created by 殷巧娟 on 2018/12/28. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import "CNLiveEmptyView.h" | |
| 9 | +#import "QMUICore.h" | |
| 10 | +#import "UIControl+QMUI.h" | |
| 11 | +#import "NSParagraphStyle+QMUI.h" | |
| 12 | +#import "UIView+QMUI.h" | |
| 13 | +#import "QMUIButton.h" | |
| 14 | + | |
| 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 | + | |
| 36 | +- (void)didInitialize { | |
| 37 | + // 系统默认会在view即将被add到window上时才设置这些值,这个时机有点晚了,因为我们可能在add到window之前就进行sizeThatFits计算或对view进行截图等操作,因此这里提前到init时就去做 | |
| 38 | + CNLiveEmptyView *appearance = [CNLiveEmptyView appearance]; | |
| 39 | + _imageViewInsets = appearance.imageViewInsets; | |
| 40 | + _loadingViewInsets = appearance.loadingViewInsets; | |
| 41 | + _textLabelInsets = appearance.textLabelInsets; | |
| 42 | + _detailTextLabelInsets = appearance.detailTextLabelInsets; | |
| 43 | + _actionButtonInsets = appearance.actionButtonInsets; | |
| 44 | + _verticalOffset = appearance.verticalOffset; | |
| 45 | + _textLabelFont = appearance.textLabelFont; | |
| 46 | + _detailTextLabelFont = appearance.detailTextLabelFont; | |
| 47 | + _actionButtonFont = appearance.actionButtonFont; | |
| 48 | + _textLabelTextColor = appearance.textLabelTextColor; | |
| 49 | + _detailTextLabelTextColor = appearance.detailTextLabelTextColor; | |
| 50 | + _actionButtonTitleColor = appearance.actionButtonTitleColor; | |
| 51 | + | |
| 52 | + self.scrollView = [[UIScrollView alloc] init]; | |
| 53 | + if (@available(iOS 11, *)) { | |
| 54 | + self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; | |
| 55 | + } | |
| 56 | + self.scrollView.showsVerticalScrollIndicator = NO; | |
| 57 | + self.scrollView.showsHorizontalScrollIndicator = NO; | |
| 58 | + self.scrollView.scrollsToTop = NO; | |
| 59 | + self.scrollView.contentInset = UIEdgeInsetsMake(0, 16, 0, 16); | |
| 60 | + [self addSubview:self.scrollView]; | |
| 61 | + | |
| 62 | + _contentView = [[UIView alloc] init]; | |
| 63 | + [self.scrollView addSubview:self.contentView]; | |
| 64 | + | |
| 65 | + _loadingView = (UIView<QMUIEmptyViewLoadingViewProtocol> *)[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray]; | |
| 66 | + ((UIActivityIndicatorView *)self.loadingView).hidesWhenStopped = NO; // 此控件是通过loadingView.hidden属性来控制显隐的,如果UIActivityIndicatorView的hidesWhenStopped属性设置为YES的话,则手动设置它的hidden属性就会失效,因此这里要置为NO | |
| 67 | + [self.contentView addSubview:self.loadingView]; | |
| 68 | + | |
| 69 | + _imageView = [[UIImageView alloc] init]; | |
| 70 | + self.imageView.contentMode = UIViewContentModeCenter; | |
| 71 | + [self.contentView addSubview:self.imageView]; | |
| 72 | + | |
| 73 | + _textLabel = [[UILabel alloc] init]; | |
| 74 | + self.textLabel.textAlignment = NSTextAlignmentCenter; | |
| 75 | + self.textLabel.numberOfLines = 0; | |
| 76 | + [self.contentView addSubview:self.textLabel]; | |
| 77 | + | |
| 78 | + _detailTextLabel = [[UILabel alloc] init]; | |
| 79 | + self.detailTextLabel.textAlignment = NSTextAlignmentCenter; | |
| 80 | + self.detailTextLabel.numberOfLines = 0; | |
| 81 | + [self.contentView addSubview:self.detailTextLabel]; | |
| 82 | + | |
| 83 | + _actionButton = [[QMUIButton alloc] init]; | |
| 84 | + self.actionButton.qmui_outsideEdge = UIEdgeInsetsMake(-20, -20, -20, -20); | |
| 85 | + self.actionButton.qmui_automaticallyAdjustTouchHighlightedInScrollView = YES; | |
| 86 | + [self.contentView addSubview:self.actionButton]; | |
| 87 | +} | |
| 88 | + | |
| 89 | +- (void)layoutSubviews { | |
| 90 | + [super layoutSubviews]; | |
| 91 | + | |
| 92 | + self.scrollView.frame = self.bounds; | |
| 93 | + | |
| 94 | + CGSize contentViewSize = CGSizeFlatted([self sizeThatContentViewFits]); | |
| 95 | + // contentView 默认垂直居中于 scrollView | |
| 96 | + self.contentView.frame = CGRectFlatMake(0, CGRectGetMidY(self.scrollView.bounds) - contentViewSize.height / 2 + self.verticalOffset, contentViewSize.width, contentViewSize.height); | |
| 97 | + | |
| 98 | + // 如果 contentView 要比 scrollView 高,则置顶展示 | |
| 99 | + if (CGRectGetHeight(self.contentView.bounds) > CGRectGetHeight(self.scrollView.bounds)) { | |
| 100 | + self.contentView.frame = CGRectSetY(self.contentView.frame, 0); | |
| 101 | + } | |
| 102 | + | |
| 103 | + 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))); | |
| 104 | + | |
| 105 | + CGFloat originY = 0; | |
| 106 | + | |
| 107 | + if (!self.imageView.hidden) { | |
| 108 | + [self.imageView sizeToFit]; | |
| 109 | + self.imageView.frame = CGRectSetXY(self.imageView.frame, CGRectGetMinXHorizontallyCenterInParentRect(self.contentView.bounds, self.imageView.frame) + self.imageViewInsets.left - self.imageViewInsets.right, originY + self.imageViewInsets.top); | |
| 110 | + originY = CGRectGetMaxY(self.imageView.frame) + self.imageViewInsets.bottom; | |
| 111 | + } | |
| 112 | + | |
| 113 | + if (!self.loadingView.hidden) { | |
| 114 | + self.loadingView.frame = CGRectSetXY(self.loadingView.frame, CGRectGetMinXHorizontallyCenterInParentRect(self.contentView.bounds, self.loadingView.frame) + self.loadingViewInsets.left - self.loadingViewInsets.right, originY + self.loadingViewInsets.top); | |
| 115 | + originY = CGRectGetMaxY(self.loadingView.frame) + self.loadingViewInsets.bottom; | |
| 116 | + } | |
| 117 | + | |
| 118 | + if (!self.textLabel.hidden) { | |
| 119 | + self.textLabel.frame = CGRectFlatMake(self.textLabelInsets.left, originY + self.textLabelInsets.top, CGRectGetWidth(self.contentView.bounds) - UIEdgeInsetsGetHorizontalValue(self.textLabelInsets), QMUIViewSelfSizingHeight); | |
| 120 | + originY = CGRectGetMaxY(self.textLabel.frame) + self.textLabelInsets.bottom; | |
| 121 | + } | |
| 122 | + | |
| 123 | + if (!self.detailTextLabel.hidden) { | |
| 124 | + self.detailTextLabel.frame = CGRectFlatMake(self.detailTextLabelInsets.left, originY + self.detailTextLabelInsets.top, CGRectGetWidth(self.contentView.bounds) - UIEdgeInsetsGetHorizontalValue(self.detailTextLabelInsets), QMUIViewSelfSizingHeight); | |
| 125 | + originY = CGRectGetMaxY(self.detailTextLabel.frame) + self.detailTextLabelInsets.bottom; | |
| 126 | + } | |
| 127 | + | |
| 128 | + if (!self.actionButton.hidden) { | |
| 129 | + [self.actionButton sizeToFit]; | |
| 130 | + self.actionButton.frame = CGRectSetXY(self.actionButton.frame, CGRectGetMinXHorizontallyCenterInParentRect(self.contentView.bounds, self.actionButton.frame) + self.actionButtonInsets.left - self.actionButtonInsets.right, originY + self.actionButtonInsets.top); | |
| 131 | + originY = CGRectGetMaxY(self.actionButton.frame) + self.actionButtonInsets.bottom; | |
| 132 | + } | |
| 133 | +} | |
| 134 | + | |
| 135 | +- (CGSize)sizeThatContentViewFits { | |
| 136 | + CGFloat resultWidth = CGRectGetWidth(self.scrollView.bounds) - UIEdgeInsetsGetHorizontalValue(self.scrollView.contentInset); | |
| 137 | + | |
| 138 | + CGFloat imageViewHeight = [self.imageView sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.imageViewInsets); | |
| 139 | + CGFloat loadingViewHeight = CGRectGetHeight(self.loadingView.bounds) + UIEdgeInsetsGetVerticalValue(self.loadingViewInsets); | |
| 140 | + CGFloat textLabelHeight = [self.textLabel sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.textLabelInsets); | |
| 141 | + CGFloat detailTextLabelHeight = [self.detailTextLabel sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.detailTextLabelInsets); | |
| 142 | + CGFloat actionButtonHeight = [self.actionButton sizeThatFits:CGSizeMake(resultWidth, CGFLOAT_MAX)].height + UIEdgeInsetsGetVerticalValue(self.actionButtonInsets); | |
| 143 | + | |
| 144 | + CGFloat resultHeight = 0; | |
| 145 | + if (!self.imageView.hidden) { | |
| 146 | + resultHeight += imageViewHeight; | |
| 147 | + } | |
| 148 | + if (!self.loadingView.hidden) { | |
| 149 | + resultHeight += loadingViewHeight; | |
| 150 | + } | |
| 151 | + if (!self.textLabel.hidden) { | |
| 152 | + resultHeight += textLabelHeight; | |
| 153 | + } | |
| 154 | + if (!self.detailTextLabel.hidden) { | |
| 155 | + resultHeight += detailTextLabelHeight; | |
| 156 | + } | |
| 157 | + if (!self.actionButton.hidden) { | |
| 158 | + resultHeight += actionButtonHeight; | |
| 159 | + } | |
| 160 | + | |
| 161 | + return CGSizeMake(resultWidth, resultHeight); | |
| 162 | +} | |
| 163 | + | |
| 164 | +- (void)updateDetailTextLabelWithText:(NSString *)text { | |
| 165 | + if (self.detailTextLabelFont && self.detailTextLabelTextColor && text) { | |
| 166 | + NSAttributedString *string = [[NSAttributedString alloc] initWithString:text attributes:@{ | |
| 167 | + NSFontAttributeName: self.detailTextLabelFont, | |
| 168 | + NSForegroundColorAttributeName: self.detailTextLabelTextColor, | |
| 169 | + NSParagraphStyleAttributeName: [NSMutableParagraphStyle qmui_paragraphStyleWithLineHeight:self.detailTextLabelFont.pointSize + 10 lineBreakMode:NSLineBreakByWordWrapping textAlignment:NSTextAlignmentCenter] | |
| 170 | + }]; | |
| 171 | + self.detailTextLabel.attributedText = string; | |
| 172 | + } | |
| 173 | + self.detailTextLabel.hidden = !text; | |
| 174 | + [self setNeedsLayout]; | |
| 175 | +} | |
| 176 | + | |
| 177 | +- (void)setLoadingView:(UIView<QMUIEmptyViewLoadingViewProtocol> *)loadingView { | |
| 178 | + if (self.loadingView != loadingView) { | |
| 179 | + [self.loadingView removeFromSuperview]; | |
| 180 | + _loadingView = loadingView; | |
| 181 | + [self.contentView addSubview:loadingView]; | |
| 182 | + } | |
| 183 | + [self setNeedsLayout]; | |
| 184 | +} | |
| 185 | + | |
| 186 | +- (void)setLoadingViewHidden:(BOOL)hidden { | |
| 187 | + self.loadingView.hidden = hidden; | |
| 188 | + if (!hidden && [self.loadingView respondsToSelector:@selector(startAnimating)]) { | |
| 189 | + [self.loadingView startAnimating]; | |
| 190 | + } | |
| 191 | + [self setNeedsLayout]; | |
| 192 | +} | |
| 193 | + | |
| 194 | +- (void)setImage:(UIImage *)image { | |
| 195 | + self.imageView.image = image; | |
| 196 | + self.imageView.hidden = !image; | |
| 197 | + [self setNeedsLayout]; | |
| 198 | +} | |
| 199 | + | |
| 200 | +- (void)setTextLabelText:(NSString *)text { | |
| 201 | + self.textLabel.text = text; | |
| 202 | + self.textLabel.hidden = !text; | |
| 203 | + [self setNeedsLayout]; | |
| 204 | +} | |
| 205 | + | |
| 206 | +- (void)setDetailTextLabelText:(NSString *)text { | |
| 207 | + [self updateDetailTextLabelWithText:text]; | |
| 208 | +} | |
| 209 | + | |
| 210 | +- (void)setActionButtonTitle:(NSString *)title { | |
| 211 | + [self.actionButton setTitle:title forState:UIControlStateNormal]; | |
| 212 | + self.actionButton.hidden = !title; | |
| 213 | + [self setNeedsLayout]; | |
| 214 | +} | |
| 215 | + | |
| 216 | +- (void)setImageViewInsets:(UIEdgeInsets)imageViewInsets { | |
| 217 | + _imageViewInsets = imageViewInsets; | |
| 218 | + [self setNeedsLayout]; | |
| 219 | +} | |
| 220 | + | |
| 221 | +- (void)setTextLabelInsets:(UIEdgeInsets)textLabelInsets { | |
| 222 | + _textLabelInsets = textLabelInsets; | |
| 223 | + [self setNeedsLayout]; | |
| 224 | +} | |
| 225 | + | |
| 226 | +- (void)setDetailTextLabelInsets:(UIEdgeInsets)detailTextLabelInsets { | |
| 227 | + _detailTextLabelInsets = detailTextLabelInsets; | |
| 228 | + [self setNeedsLayout]; | |
| 229 | +} | |
| 230 | + | |
| 231 | +- (void)setActionButtonInsets:(UIEdgeInsets)actionButtonInsets { | |
| 232 | + _actionButtonInsets = actionButtonInsets; | |
| 233 | + [self setNeedsLayout]; | |
| 234 | +} | |
| 235 | + | |
| 236 | +- (void)setVerticalOffset:(CGFloat)verticalOffset { | |
| 237 | + _verticalOffset = verticalOffset; | |
| 238 | + [self setNeedsLayout]; | |
| 239 | +} | |
| 240 | + | |
| 241 | +- (void)setTextLabelFont:(UIFont *)textLabelFont { | |
| 242 | + _textLabelFont = textLabelFont; | |
| 243 | + self.textLabel.font = textLabelFont; | |
| 244 | + [self setNeedsLayout]; | |
| 245 | +} | |
| 246 | + | |
| 247 | +- (void)setDetailTextLabelFont:(UIFont *)detailTextLabelFont { | |
| 248 | + _detailTextLabelFont = detailTextLabelFont; | |
| 249 | + [self updateDetailTextLabelWithText:self.detailTextLabel.text]; | |
| 250 | +} | |
| 251 | + | |
| 252 | +- (void)setActionButtonFont:(UIFont *)actionButtonFont { | |
| 253 | + _actionButtonFont = actionButtonFont; | |
| 254 | + self.actionButton.titleLabel.font = actionButtonFont; | |
| 255 | + [self setNeedsLayout]; | |
| 256 | +} | |
| 257 | + | |
| 258 | +- (void)setTextLabelTextColor:(UIColor *)textLabelTextColor { | |
| 259 | + _textLabelTextColor = textLabelTextColor; | |
| 260 | + self.textLabel.textColor = textLabelTextColor; | |
| 261 | +} | |
| 262 | + | |
| 263 | +- (void)setDetailTextLabelTextColor:(UIColor *)detailTextLabelTextColor { | |
| 264 | + _detailTextLabelTextColor = detailTextLabelTextColor; | |
| 265 | + [self updateDetailTextLabelWithText:self.detailTextLabel.text]; | |
| 266 | +} | |
| 267 | + | |
| 268 | +- (void)setActionButtonTitleColor:(UIColor *)actionButtonTitleColor { | |
| 269 | + _actionButtonTitleColor = actionButtonTitleColor; | |
| 270 | + [self.actionButton setTitleColor:actionButtonTitleColor forState:UIControlStateNormal]; | |
| 271 | + [self.actionButton setTitleColor:[actionButtonTitleColor colorWithAlphaComponent:ButtonHighlightedAlpha] forState:UIControlStateHighlighted]; | |
| 272 | + [self.actionButton setTitleColor:[actionButtonTitleColor colorWithAlphaComponent:ButtonDisabledAlpha] forState:UIControlStateDisabled]; | |
| 273 | +} | |
| 274 | + | |
| 275 | +@end | |
| 276 | + | |
| 277 | +@interface CNLiveEmptyView (UIAppearance) | |
| 278 | + | |
| 279 | +@end | |
| 280 | + | |
| 281 | +@implementation CNLiveEmptyView (UIAppearance) | |
| 282 | + | |
| 283 | ++ (void)initialize { | |
| 284 | + static dispatch_once_t onceToken; | |
| 285 | + dispatch_once(&onceToken, ^{ | |
| 286 | + [self setDefaultAppearance]; | |
| 287 | + }); | |
| 288 | +} | |
| 289 | + | |
| 290 | ++ (void)setDefaultAppearance { | |
| 291 | + CNLiveEmptyView *appearance = [CNLiveEmptyView appearance]; | |
| 292 | + appearance.imageViewInsets = UIEdgeInsetsMake(0, 0, 36, 0); | |
| 293 | + appearance.loadingViewInsets = UIEdgeInsetsMake(0, 0, 36, 0); | |
| 294 | + appearance.textLabelInsets = UIEdgeInsetsMake(0, 0, 10, 0); | |
| 295 | + appearance.detailTextLabelInsets = UIEdgeInsetsMake(0, 0, 14, 0); | |
| 296 | + appearance.actionButtonInsets = UIEdgeInsetsZero; | |
| 297 | + appearance.verticalOffset = -30; | |
| 298 | + | |
| 299 | + appearance.textLabelFont = UIFontMake(15); | |
| 300 | + appearance.detailTextLabelFont = UIFontMake(14); | |
| 301 | + appearance.actionButtonFont = UIFontMake(15); | |
| 302 | + | |
| 303 | + appearance.textLabelTextColor = UIColorMake(93, 100, 110); | |
| 304 | + appearance.detailTextLabelTextColor = UIColorMake(133, 140, 150); | |
| 305 | + appearance.actionButtonTitleColor = ButtonTintColor; | |
| 306 | +} | |
| 307 | + | |
| 308 | +@end | ... | ... |
Example/CNLiveEmptyView.xcodeproj/project.pbxproj
0 → 100644
| 1 | +// !$*UTF8*$! | |
| 2 | +{ | |
| 3 | + archiveVersion = 1; | |
| 4 | + classes = { | |
| 5 | + }; | |
| 6 | + objectVersion = 46; | |
| 7 | + objects = { | |
| 8 | + | |
| 9 | +/* Begin PBXBuildFile section */ | |
| 10 | + 5CEC9A2A20F0CB404976EB3F /* Pods_CNLiveEmptyView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F94127B80CFC87D7E9DFAAC9 /* 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 | + FB1B06AFE670955AC8DA2806 /* Pods_CNLiveEmptyView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4181CD1C2D9D2B1D8760FD0D /* 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 | + 19CC7D2B752BEE8F64F9B8AD /* CNLiveEmptyView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CNLiveEmptyView.podspec; path = ../CNLiveEmptyView.podspec; sourceTree = "<group>"; }; | |
| 41 | + 4181CD1C2D9D2B1D8760FD0D /* Pods_CNLiveEmptyView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveEmptyView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 42 | + 6003F58A195388D20070C39A /* CNLiveEmptyView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CNLiveEmptyView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 43 | + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; | |
| 44 | + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; | |
| 45 | + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; | |
| 46 | + 6003F595195388D20070C39A /* CNLiveEmptyView-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CNLiveEmptyView-Info.plist"; sourceTree = "<group>"; }; | |
| 47 | + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | |
| 48 | + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; | |
| 49 | + 6003F59B195388D20070C39A /* CNLiveEmptyView-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CNLiveEmptyView-Prefix.pch"; sourceTree = "<group>"; }; | |
| 50 | + 6003F59C195388D20070C39A /* CNLiveAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNLiveAppDelegate.h; sourceTree = "<group>"; }; | |
| 51 | + 6003F59D195388D20070C39A /* CNLiveAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CNLiveAppDelegate.m; sourceTree = "<group>"; }; | |
| 52 | + 6003F5A5195388D20070C39A /* CNLiveViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNLiveViewController.h; sourceTree = "<group>"; }; | |
| 53 | + 6003F5A6195388D20070C39A /* CNLiveViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CNLiveViewController.m; sourceTree = "<group>"; }; | |
| 54 | + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; }; | |
| 55 | + 6003F5AE195388D20070C39A /* CNLiveEmptyView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CNLiveEmptyView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 56 | + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; | |
| 57 | + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; }; | |
| 58 | + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | |
| 59 | + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; }; | |
| 60 | + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; }; | |
| 61 | + 60FDDE32D0749AFBA4F716AE /* 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>"; }; | |
| 62 | + 65DA1512802FF75F8FD7717B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; }; | |
| 63 | + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | |
| 64 | + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; | |
| 65 | + A7BB95EB1A26055EF8A6FA24 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; }; | |
| 66 | + DC5E0268947CD55A4561A1FE /* 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>"; }; | |
| 67 | + F94127B80CFC87D7E9DFAAC9 /* Pods_CNLiveEmptyView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveEmptyView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 68 | + FD9486FAA58490684C7475E2 /* 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>"; }; | |
| 69 | + FFCA777659330E949F249545 /* 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>"; }; | |
| 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 | + 5CEC9A2A20F0CB404976EB3F /* 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 | + FB1B06AFE670955AC8DA2806 /* Pods_CNLiveEmptyView_Tests.framework in Frameworks */, | |
| 92 | + ); | |
| 93 | + runOnlyForDeploymentPostprocessing = 0; | |
| 94 | + }; | |
| 95 | +/* End PBXFrameworksBuildPhase section */ | |
| 96 | + | |
| 97 | +/* Begin PBXGroup section */ | |
| 98 | + 47A604C63B671E114837A409 /* Pods */ = { | |
| 99 | + isa = PBXGroup; | |
| 100 | + children = ( | |
| 101 | + FD9486FAA58490684C7475E2 /* Pods-CNLiveEmptyView_Example.debug.xcconfig */, | |
| 102 | + FFCA777659330E949F249545 /* Pods-CNLiveEmptyView_Example.release.xcconfig */, | |
| 103 | + 60FDDE32D0749AFBA4F716AE /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */, | |
| 104 | + DC5E0268947CD55A4561A1FE /* Pods-CNLiveEmptyView_Tests.release.xcconfig */, | |
| 105 | + ); | |
| 106 | + name = Pods; | |
| 107 | + sourceTree = "<group>"; | |
| 108 | + }; | |
| 109 | + 6003F581195388D10070C39A = { | |
| 110 | + isa = PBXGroup; | |
| 111 | + children = ( | |
| 112 | + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, | |
| 113 | + 6003F593195388D20070C39A /* Example for CNLiveEmptyView */, | |
| 114 | + 6003F5B5195388D20070C39A /* Tests */, | |
| 115 | + 6003F58C195388D20070C39A /* Frameworks */, | |
| 116 | + 6003F58B195388D20070C39A /* Products */, | |
| 117 | + 47A604C63B671E114837A409 /* Pods */, | |
| 118 | + ); | |
| 119 | + sourceTree = "<group>"; | |
| 120 | + }; | |
| 121 | + 6003F58B195388D20070C39A /* Products */ = { | |
| 122 | + isa = PBXGroup; | |
| 123 | + children = ( | |
| 124 | + 6003F58A195388D20070C39A /* CNLiveEmptyView_Example.app */, | |
| 125 | + 6003F5AE195388D20070C39A /* CNLiveEmptyView_Tests.xctest */, | |
| 126 | + ); | |
| 127 | + name = Products; | |
| 128 | + sourceTree = "<group>"; | |
| 129 | + }; | |
| 130 | + 6003F58C195388D20070C39A /* Frameworks */ = { | |
| 131 | + isa = PBXGroup; | |
| 132 | + children = ( | |
| 133 | + 6003F58D195388D20070C39A /* Foundation.framework */, | |
| 134 | + 6003F58F195388D20070C39A /* CoreGraphics.framework */, | |
| 135 | + 6003F591195388D20070C39A /* UIKit.framework */, | |
| 136 | + 6003F5AF195388D20070C39A /* XCTest.framework */, | |
| 137 | + F94127B80CFC87D7E9DFAAC9 /* Pods_CNLiveEmptyView_Example.framework */, | |
| 138 | + 4181CD1C2D9D2B1D8760FD0D /* Pods_CNLiveEmptyView_Tests.framework */, | |
| 139 | + ); | |
| 140 | + name = Frameworks; | |
| 141 | + sourceTree = "<group>"; | |
| 142 | + }; | |
| 143 | + 6003F593195388D20070C39A /* Example for CNLiveEmptyView */ = { | |
| 144 | + isa = PBXGroup; | |
| 145 | + children = ( | |
| 146 | + 6003F59C195388D20070C39A /* CNLiveAppDelegate.h */, | |
| 147 | + 6003F59D195388D20070C39A /* CNLiveAppDelegate.m */, | |
| 148 | + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, | |
| 149 | + 6003F5A5195388D20070C39A /* CNLiveViewController.h */, | |
| 150 | + 6003F5A6195388D20070C39A /* CNLiveViewController.m */, | |
| 151 | + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */, | |
| 152 | + 6003F5A8195388D20070C39A /* Images.xcassets */, | |
| 153 | + 6003F594195388D20070C39A /* Supporting Files */, | |
| 154 | + ); | |
| 155 | + name = "Example for CNLiveEmptyView"; | |
| 156 | + path = CNLiveEmptyView; | |
| 157 | + sourceTree = "<group>"; | |
| 158 | + }; | |
| 159 | + 6003F594195388D20070C39A /* Supporting Files */ = { | |
| 160 | + isa = PBXGroup; | |
| 161 | + children = ( | |
| 162 | + 6003F595195388D20070C39A /* CNLiveEmptyView-Info.plist */, | |
| 163 | + 6003F596195388D20070C39A /* InfoPlist.strings */, | |
| 164 | + 6003F599195388D20070C39A /* main.m */, | |
| 165 | + 6003F59B195388D20070C39A /* CNLiveEmptyView-Prefix.pch */, | |
| 166 | + ); | |
| 167 | + name = "Supporting Files"; | |
| 168 | + sourceTree = "<group>"; | |
| 169 | + }; | |
| 170 | + 6003F5B5195388D20070C39A /* Tests */ = { | |
| 171 | + isa = PBXGroup; | |
| 172 | + children = ( | |
| 173 | + 6003F5BB195388D20070C39A /* Tests.m */, | |
| 174 | + 6003F5B6195388D20070C39A /* Supporting Files */, | |
| 175 | + ); | |
| 176 | + path = Tests; | |
| 177 | + sourceTree = "<group>"; | |
| 178 | + }; | |
| 179 | + 6003F5B6195388D20070C39A /* Supporting Files */ = { | |
| 180 | + isa = PBXGroup; | |
| 181 | + children = ( | |
| 182 | + 6003F5B7195388D20070C39A /* Tests-Info.plist */, | |
| 183 | + 6003F5B8195388D20070C39A /* InfoPlist.strings */, | |
| 184 | + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, | |
| 185 | + ); | |
| 186 | + name = "Supporting Files"; | |
| 187 | + sourceTree = "<group>"; | |
| 188 | + }; | |
| 189 | + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { | |
| 190 | + isa = PBXGroup; | |
| 191 | + children = ( | |
| 192 | + 19CC7D2B752BEE8F64F9B8AD /* CNLiveEmptyView.podspec */, | |
| 193 | + 65DA1512802FF75F8FD7717B /* README.md */, | |
| 194 | + A7BB95EB1A26055EF8A6FA24 /* LICENSE */, | |
| 195 | + ); | |
| 196 | + name = "Podspec Metadata"; | |
| 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 | + 847C80715373381199D92A8A /* [CP] Check Pods Manifest.lock */, | |
| 207 | + 6003F586195388D20070C39A /* Sources */, | |
| 208 | + 6003F587195388D20070C39A /* Frameworks */, | |
| 209 | + 6003F588195388D20070C39A /* Resources */, | |
| 210 | + C612069F101CC03AED63FD2B /* [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 | + 5D0851161903A427A85A7521 /* [CP] Check Pods Manifest.lock */, | |
| 226 | + 6003F5AA195388D20070C39A /* Sources */, | |
| 227 | + 6003F5AB195388D20070C39A /* Frameworks */, | |
| 228 | + 6003F5AC195388D20070C39A /* Resources */, | |
| 229 | + E5AA5E06534A08D630F3B0BD /* [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 | + 5D0851161903A427A85A7521 /* [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 | + 847C80715373381199D92A8A /* [CP] Check Pods Manifest.lock */ = { | |
| 324 | + isa = PBXShellScriptBuildPhase; | |
| 325 | + buildActionMask = 2147483647; | |
| 326 | + files = ( | |
| 327 | + ); | |
| 328 | + inputFileListPaths = ( | |
| 329 | + ); | |
| 330 | + inputPaths = ( | |
| 331 | + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | |
| 332 | + "${PODS_ROOT}/Manifest.lock", | |
| 333 | + ); | |
| 334 | + name = "[CP] Check Pods Manifest.lock"; | |
| 335 | + outputFileListPaths = ( | |
| 336 | + ); | |
| 337 | + outputPaths = ( | |
| 338 | + "$(DERIVED_FILE_DIR)/Pods-CNLiveEmptyView_Example-checkManifestLockResult.txt", | |
| 339 | + ); | |
| 340 | + runOnlyForDeploymentPostprocessing = 0; | |
| 341 | + shellPath = /bin/sh; | |
| 342 | + 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"; | |
| 343 | + showEnvVarsInLog = 0; | |
| 344 | + }; | |
| 345 | + C612069F101CC03AED63FD2B /* [CP] Embed Pods Frameworks */ = { | |
| 346 | + isa = PBXShellScriptBuildPhase; | |
| 347 | + buildActionMask = 2147483647; | |
| 348 | + files = ( | |
| 349 | + ); | |
| 350 | + inputFileListPaths = ( | |
| 351 | + ); | |
| 352 | + inputPaths = ( | |
| 353 | + "${SRCROOT}/Pods/Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example-frameworks.sh", | |
| 354 | + "${BUILT_PRODUCTS_DIR}/CNLiveEmptyView/CNLiveEmptyView.framework", | |
| 355 | + "${BUILT_PRODUCTS_DIR}/QMUIKit/QMUIKit.framework", | |
| 356 | + ); | |
| 357 | + name = "[CP] Embed Pods Frameworks"; | |
| 358 | + outputFileListPaths = ( | |
| 359 | + ); | |
| 360 | + outputPaths = ( | |
| 361 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CNLiveEmptyView.framework", | |
| 362 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/QMUIKit.framework", | |
| 363 | + ); | |
| 364 | + runOnlyForDeploymentPostprocessing = 0; | |
| 365 | + shellPath = /bin/sh; | |
| 366 | + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example-frameworks.sh\"\n"; | |
| 367 | + showEnvVarsInLog = 0; | |
| 368 | + }; | |
| 369 | + E5AA5E06534A08D630F3B0BD /* [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 = FD9486FAA58490684C7475E2 /* 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 = FFCA777659330E949F249545 /* 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 = 60FDDE32D0749AFBA4F716AE /* 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 = DC5E0268947CD55A4561A1FE /* 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
Example/CNLiveEmptyView.xcodeproj/xcshareddata/xcschemes/CNLiveEmptyView-Example.xcscheme
0 → 100644
| 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
Example/CNLiveEmptyView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
0 → 100644
Example/CNLiveEmptyView/Base.lproj/LaunchScreen.storyboard
0 → 100644
| 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 | +<?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 | +// | |
| 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 | +// | |
| 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 | +<?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 | +// | |
| 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
Example/CNLiveEmptyView/CNLiveViewController.m
0 → 100644
| 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 | + | |
| 11 | +@interface CNLiveViewController () | |
| 12 | + | |
| 13 | +@end | |
| 14 | + | |
| 15 | +@implementation CNLiveViewController | |
| 16 | + | |
| 17 | +- (void)viewDidLoad | |
| 18 | +{ | |
| 19 | + [super viewDidLoad]; | |
| 20 | + // Do any additional setup after loading the view, typically from a nib. | |
| 21 | +} | |
| 22 | + | |
| 23 | +- (void)didReceiveMemoryWarning | |
| 24 | +{ | |
| 25 | + [super didReceiveMemoryWarning]; | |
| 26 | + // Dispose of any resources that can be recreated. | |
| 27 | +} | |
| 28 | + | |
| 29 | +@end | ... | ... |
Example/CNLiveEmptyView/Images.xcassets/AppIcon.appiconset/Contents.json
0 → 100644
| 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
Example/CNLiveEmptyView/main.m
0 → 100644
| 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
Example/Podfile.lock
0 → 100644
| 1 | +PODS: | |
| 2 | + - CNLiveEmptyView (0.0.2): | |
| 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: 1b2c286f6c3c982c50e21e70a16027e4949fe496 | |
| 276 | + QMUIKit: 5b8f0a3ab60e42af1310bd40a6fe1b54d612d15c | |
| 277 | + | |
| 278 | +PODFILE CHECKSUM: fb2a76a512b9f3c970653f8e9538f193fc0a69be | |
| 279 | + | |
| 280 | +COCOAPODS: 1.5.3 | ... | ... |
Example/Pods/Local Podspecs/CNLiveEmptyView.podspec.json
0 → 100644
| 1 | +{ | |
| 2 | + "name": "CNLiveEmptyView", | |
| 3 | + "version": "0.0.2", | |
| 4 | + "summary": "QMUIEmptyView封装", | |
| 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.2" | |
| 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 | +PODS: | |
| 2 | + - CNLiveEmptyView (0.0.2): | |
| 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: 1b2c286f6c3c982c50e21e70a16027e4949fe496 | |
| 276 | + QMUIKit: 5b8f0a3ab60e42af1310bd40a6fe1b54d612d15c | |
| 277 | + | |
| 278 | +PODFILE CHECKSUM: fb2a76a512b9f3c970653f8e9538f193fc0a69be | |
| 279 | + | |
| 280 | +COCOAPODS: 1.5.3 | ... | ... |
Example/Pods/Pods.xcodeproj/project.pbxproj
0 → 100644
| 1 | +// !$*UTF8*$! | |
| 2 | +{ | |
| 3 | + archiveVersion = 1; | |
| 4 | + classes = { | |
| 5 | + }; | |
| 6 | + objectVersion = 46; | |
| 7 | + objects = { | |
| 8 | + | |
| 9 | +/* Begin PBXBuildFile section */ | |
| 10 | + 004CAFA07A654BD6C43C2374A114FE16 /* CNLiveEmptyView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40DDC9D3E33431AC4E7EF33FF90E0D5B /* CNLiveEmptyView-dummy.m */; }; | |
| 11 | + 02E032D8A06EA8598600B3872E8337A8 /* UITableView+QMUICellHeightKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA4634DEC017D84E09F2CD4139567C6 /* UITableView+QMUICellHeightKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 12 | + 041D318B110F9AC41214BE407744F3DC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; }; | |
| 13 | + 044E63409CC434EE3F332CCC5CCC3FAB /* QMUITableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DED7AACC5025619371184D791E6FEFC /* QMUITableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 14 | + 050B8E677AA0C42758A7F521A8C1E649 /* QMUIPopupMenuView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0738271D12A250FC4D6E98741E17AE42 /* QMUIPopupMenuView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 15 | + 067F419D0FF2E93CB1DCD37DBEE5B49F /* QMUIMarqueeLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 66670377EF4A625B8565B62F5156A929 /* QMUIMarqueeLabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 16 | + 0765ECEAB308493EB551827C1C2ACA86 /* QMUIGhostButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D447ACD7C50558809EEB9011172DC5 /* QMUIGhostButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 17 | + 07D0A251FB1DEBF0F81F5BEDD397F1A1 /* UIBarItem+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1777C15B5E4B64602B31CDE9D5B871DE /* UIBarItem+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 18 | + 0850AB044FB7712332601C681BC5667E /* QMUIToolbarButton.h in Headers */ = {isa = PBXBuildFile; fileRef = D423AE613459A02EF5750754E241E992 /* QMUIToolbarButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 19 | + 086460E7523CB7B48307D147A866F0EB /* NSArray+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0ACFDAD3DF53E0D2B5A46263182A5D /* NSArray+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 20 | + 0AC25E08BE252BB0C3D490665EDFC9BE /* QMUISearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 65D66AA6950E94C05B873771039500DB /* QMUISearchBar.m */; }; | |
| 21 | + 0AF799C3059958322F1B8ABE12FF01FC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; }; | |
| 22 | + 0BC19C95BA500FAEAEF95B322E339C32 /* QMUIEmotionView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC94B72CC75F40FA770C30E825655D5 /* QMUIEmotionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 23 | + 0E54D088B8E1DCB4EB84692754CDA002 /* QMUIAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B3FE982FEADC65BEC00A71A527CE0D /* QMUIAsset.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 24 | + 102740DF85589ADA21E1D44EFF79CB01 /* QMUIHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EAD16142E5A442F1D766F3A5D49BB0D /* QMUIHelper.m */; }; | |
| 25 | + 109E01EFD1168CCC4EC59544A4E4CA53 /* QMUIPopupMenuBaseItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABB3CE4A38F351A8FBD21EDF8580222 /* QMUIPopupMenuBaseItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 26 | + 11323B52D0F8E15B29CA9651435B65C7 /* NSObject+QMUIMultipleDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = B25FFA583216D9C9D2213A8B3C427C6A /* NSObject+QMUIMultipleDelegates.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 27 | + 11E6487A5F3B9282B041D17AD39E8C61 /* QMUIImagePickerCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C56617AB75CCE01118C8128FDF1F64 /* QMUIImagePickerCollectionViewCell.m */; }; | |
| 28 | + 138777F52355C6C52418A545482A6922 /* QMUIImagePreviewView.h in Headers */ = {isa = PBXBuildFile; fileRef = 355CD548B59249FF7CE60F8D01F476DE /* QMUIImagePreviewView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 29 | + 13C05A021EBF8121D427439FB55481CE /* QMUIImagePickerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0EEC5A4431089D9628CC12CE116626 /* QMUIImagePickerHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 30 | + 13FB38CEF275F7051CEC1B444D774D53 /* NSURL+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 945A54E818CAE0C47232E4C381A7687E /* NSURL+QMUI.m */; }; | |
| 31 | + 13FE7F48E9386FFD83188B4661932414 /* QMUIStaticTableViewCellDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = EB229A67630CCBB2F844070BFBEC9144 /* QMUIStaticTableViewCellDataSource.m */; }; | |
| 32 | + 153FA9CCC986D305084C3FF7499F56EB /* UICollectionView+QMUICellSizeKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEB59D540E5BE7443437C918454DA10 /* UICollectionView+QMUICellSizeKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 33 | + 157C03F3421FFB239CD738F375E48AEC /* QMUISlider.m in Sources */ = {isa = PBXBuildFile; fileRef = B1A5A2C71F414E5AA8C1C2CD4D56985F /* QMUISlider.m */; }; | |
| 34 | + 15EC11367BF3F29F4CF28E0072BAEAC0 /* QMUIZoomImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CB781E583D78BD658298CF0F9EEB9D /* QMUIZoomImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 35 | + 173FA1F323A0C312FD0C2706CC74FBAC /* UIControl+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CDD7D98B71F997EEBCAB5336337C4E4 /* UIControl+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 36 | + 19992FFD293C94085B9B02E8AF335660 /* QMUIWeakObjectContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABC0D68AF99F730F1536B7F5A57C071 /* QMUIWeakObjectContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 37 | + 1BD18ED4A33DAFA8376315729D4397DD /* QMUINavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A048ACF092059565289CF4641A22005 /* QMUINavigationController.m */; }; | |
| 38 | + 1C45B410E510B597E9E3C385FC9A502B /* UIGestureRecognizer+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 650AB04A0616F4EF66DB15CF4CBF2C52 /* UIGestureRecognizer+QMUI.m */; }; | |
| 39 | + 1CA287FD68E982480AA697EAA582EC04 /* QMUIMoreOperationController.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA9729534672F275FC6765EC39073BF /* QMUIMoreOperationController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 40 | + 1CDC21B9E043200000CD5F1F8B10D55B /* QMUITableViewHeaderFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF70F64119EA11EBFE453FC82669886 /* QMUITableViewHeaderFooterView.m */; }; | |
| 41 | + 1DA7F6B29BAE3F8AC5EB95A83A5324CC /* UITextView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD3C3E68F130B422DF3DACF69421296 /* UITextView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 42 | + 1DBA94B4887F15F24C138935B7E96561 /* UIInterface+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 461861850FA6A468417A888DF7E1165E /* UIInterface+QMUI.m */; }; | |
| 43 | + 20DA0D7D7AB9CD22E580A445DB63CFB5 /* QMUIAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB1DA87013A89A9A0AA87994468E7B7 /* QMUIAlertController.m */; }; | |
| 44 | + 21CFFF598374C80536EDA2CF8B24592F /* QMUIConfigurationMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D8750A5FCB1ED4F34F50B194B17B7F /* QMUIConfigurationMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 45 | + 22FEF93591CBD77EF59769F22989BFBB /* QMUIImagePreviewViewTransitionAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C89055ECCB57B3A56318F598C5CA28 /* QMUIImagePreviewViewTransitionAnimator.m */; }; | |
| 46 | + 2377F6526BF4A4441972375D5C450441 /* UITextView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 16B889D321AB2DCA20B101F81C77EB49 /* UITextView+QMUI.m */; }; | |
| 47 | + 239D1DB67F82FA6443D62E7C3120F9CC /* QMUIFloatLayoutView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DBF896A7B31025FE2C6DC39E67F190 /* QMUIFloatLayoutView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 48 | + 25A85E1E90B6F777FAF4AF4AF4DE293F /* QMUIOrderedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = DDDA9F16724F7DF41E399F7936141A26 /* QMUIOrderedDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 49 | + 27DE268BCFA1D486613EDC748CB68843 /* QMUICollectionViewPagingLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = E2977DDFBEF55ED13F4AF294B294CC36 /* QMUICollectionViewPagingLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 50 | + 28DEC08B27687CA3F1A1B085AC933552 /* QMUIImagePickerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 5197D6245F70C0122146EB6DFD6F879B /* QMUIImagePickerHelper.m */; }; | |
| 51 | + 2973D5C62592AFC992DCDA2014D09D56 /* QMUIToastView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D26D12E88A89080C31024959A3E22C0 /* QMUIToastView.m */; }; | |
| 52 | + 2988F60D450EDD01CAFC7A2B404F4FFB /* QMUICellSizeKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F3B2BAD0624686F245F57504F8EFF273 /* QMUICellSizeKeyCache.m */; }; | |
| 53 | + 29F40F971E1CAB133C1E30B38797B3D0 /* QMUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6505AAF0659F39DEAB36634B19A798D /* QMUITextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 54 | + 2AFC8B91CA4AF9D6D428A582170D1F74 /* UINavigationBar+Transition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E99114CB3E2D765D08B090D9D995059 /* UINavigationBar+Transition.m */; }; | |
| 55 | + 2CC19FFC5D76149C50904E9F794FF987 /* QMUILabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C9398ABF09E8B8746F6F313652317810 /* QMUILabel.m */; }; | |
| 56 | + 2CFC4963761A6DC980778E9B7860F1D9 /* QMUITabBarViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 824F70F3808B026C14632564A627F063 /* QMUITabBarViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 57 | + 2D43C5351A1A685DDEEE66107C53235E /* NSParagraphStyle+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FC77F74C6B4AF75D3E2EFBE3DD25A6 /* NSParagraphStyle+QMUI.m */; }; | |
| 58 | + 2D8F5964C8FD46DD91CEF2D0F45174BD /* QMUIGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F4B66BD0FAE2F4269835611D719976 /* QMUIGridView.m */; }; | |
| 59 | + 2E686A382214A0FE265EA152FD4FEDF5 /* QMUIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9508DF866BFC31906CF430A49E544810 /* QMUIKit.framework */; }; | |
| 60 | + 2E6C2D24FA62DB531352370CAA59C4E8 /* QMUIPieProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6C6D629E4E1A8B1398CEE675C71C62 /* QMUIPieProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 61 | + 2F99DEDF912E7559053DC494256C8BA3 /* QMUINavigationBarScrollingSnapAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A122ADE1B28F4931A5D1F00EA44BBF /* QMUINavigationBarScrollingSnapAnimator.m */; }; | |
| 62 | + 30ACAAED92CF8D20002D8A46E54B03E2 /* QMUIImagePreviewViewTransitionAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = DD309F2F8CB5E37EA28A715D01C270FB /* QMUIImagePreviewViewTransitionAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 63 | + 312C2FF77B73397245E537A4F942CB2D /* UITextField+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = B26FF42D767BB2E6A993A94EB30DBC29 /* UITextField+QMUI.m */; }; | |
| 64 | + 332EC9C6470172E2495FE91909FF2928 /* QMUILinkButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CA4E6D9642C1EA36A3E91C9A6E0472 /* QMUILinkButton.m */; }; | |
| 65 | + 33EA7FEA3D7774816159CB71AEBAEBE5 /* NSAttributedString+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = C06D0BC222CE3E61E465D76A20EF7812 /* NSAttributedString+QMUI.m */; }; | |
| 66 | + 34B13EFE6E4BBB63CD2B086CE25566DC /* QMUIEmptyView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4636F28001CE67ED9789F72ACB72D4DB /* QMUIEmptyView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 67 | + 36101C4EB31BD79F40FA93B6834BFD9A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */; }; | |
| 68 | + 3653ED7806342BE5F8A05C9582EB80D9 /* QMUIMultipleDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = D537E9E21A1BAAB1E80CF579CBC55004 /* QMUIMultipleDelegates.m */; }; | |
| 69 | + 3660A2C63C38B3DD723B7DDE4DCEBF24 /* QMUIPieProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1932056E130DE52DD4D2C1FFEFF6488E /* QMUIPieProgressView.m */; }; | |
| 70 | + 36E584FFF03074230E44817256D61776 /* UILabel+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFE6C0338FF14F776ED05B848791DEE /* UILabel+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 71 | + 3DDBEB5201B6CE4E2F113C5E281851F5 /* QMUIToastView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D444F54109B58C71D511822CCC3D70 /* QMUIToastView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 72 | + 3F01EBB685AEA172BF7D2F0B6581DC0E /* UITableViewCell+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1283089156FCF7A4E9AE931119BC44D8 /* UITableViewCell+QMUI.m */; }; | |
| 73 | + 3F1FBC1F4028E5D807B7B4AAF5B92FF0 /* QMUISearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1F717D2A0F5A721EB82C4F5487E962 /* QMUISearchBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 74 | + 40B265C93EFD57C26BA830BFB6C01DFD /* QMUIAssetsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8313B026D354228B21153842B59A48 /* QMUIAssetsManager.m */; }; | |
| 75 | + 44E4C9ECF14DB228C4E71C8F9698BF09 /* QMUIImagePreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C15442CE05336642565CB6E148B01488 /* QMUIImagePreviewViewController.m */; }; | |
| 76 | + 4620F644A29CA3A2EB8EBA314DE1AB90 /* QMUIImagePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EC56849B1C6696F083821703676DA32 /* QMUIImagePickerViewController.m */; }; | |
| 77 | + 47A76A40567986AC0FF4BD5A3CC5AB4B /* QMUITips.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DCC6A4BF711108367C04F5DE98D67FA /* QMUITips.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 78 | + 47EA4681229C8D55809AC682B8F185EF /* UIColor+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 869C42510C54A3ADB853E5BF49F8E6A5 /* UIColor+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 79 | + 4A36A4490C86B074E81A312C21358ADE /* QMUINavigationBarScrollingAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ECEEF9B11989B420403CD531291E663 /* QMUINavigationBarScrollingAnimator.m */; }; | |
| 80 | + 4A5A2CFF3B47B40715FE0278C404FAC9 /* NSNumber+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = FF9FF34D4DFD43A9746700AFCFE9DFBD /* NSNumber+QMUI.m */; }; | |
| 81 | + 4DA2999292837880F1C89E27A847E132 /* UIImageView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 79FAF550F440725BEA0445DB99D69A52 /* UIImageView+QMUI.m */; }; | |
| 82 | + 4DFBBCCFABFE4650F884093721F8AEEB /* UIButton+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = B65B0B8E776B08BD1DE850C481CABC96 /* UIButton+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 83 | + 4E8A2A7588C77554290E52B011B2A406 /* UINavigationController+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B36D00AD94C22E70156A190BCF04B5E /* UINavigationController+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 84 | + 4E8E73ABC1220EDA925B18902D685E37 /* UIBarItem+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 683062B5F72F6AEA59EF18E1D5578B30 /* UIBarItem+QMUI.m */; }; | |
| 85 | + 4EBFB8D621D605AE00735306 /* CNLiveEmptyView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EBFB8D421D605AE00735306 /* CNLiveEmptyView.h */; }; | |
| 86 | + 4EBFB8D721D605AE00735306 /* CNLiveEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EBFB8D521D605AE00735306 /* CNLiveEmptyView.m */; }; | |
| 87 | + 504D90ED37E68352082C6D79B14D213C /* UIView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CEEBE0056F48DF0574635BFF9B97D17 /* UIView+QMUI.m */; }; | |
| 88 | + 50B53D95649DAE81E417BC9D99F0249D /* QMUIKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C61875C1C7CCD3C12C13552D6085CDC0 /* QMUIKit-dummy.m */; }; | |
| 89 | + 50D9565433231D70240CDAEE680E923D /* QMUIWeakObjectContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = FE6C5B6806715C91E5F7F9EC9C69F532 /* QMUIWeakObjectContainer.m */; }; | |
| 90 | + 51FED8703606858694729F6B6C1170E9 /* QMUILinkButton.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BD968040F7A09D4EBEE2F20A9F39CC /* QMUILinkButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 91 | + 520895FE5AEBACC85FA89B89E0136E25 /* QMUIImagePreviewView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFFF25B06592EA5C7EFA48A1258266B /* QMUIImagePreviewView.m */; }; | |
| 92 | + 52357565F4255C5990E16732E92C0431 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; }; | |
| 93 | + 532021B01899A661D97AF89D9EE3F75C /* UICollectionView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = A44B5F9CD4EB82148EAD99B391AECEAE /* UICollectionView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 94 | + 53B45E2E497FD898E01240B48D372D4B /* QMUIKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76039CB566391A6BA6AEBF7D9734C789 /* QMUIKeyboardManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 95 | + 549E21A28EF58BE2A186CD02A56784F1 /* UIImageView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = D67F9BBE995013B23D4586B5AB5A2EE0 /* UIImageView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 96 | + 55A949806B22C97EAE000B1FE4475693 /* Pods-CNLiveEmptyView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 597F06210A5C4839F3A01FB6657CF5FE /* Pods-CNLiveEmptyView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 97 | + 56BA969B1BC37CA5BBAC4CDDC21311D2 /* QMUICommonViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55D52D939C034CAF431D2B076FF05EF6 /* QMUICommonViewController.m */; }; | |
| 98 | + 572DBDBCC74F6D6B1F36F140A47752C2 /* QMUIGridView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F99588BE293DF0528770A7C21A81FDB /* QMUIGridView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 99 | + 58D3B41E83450282B60CD7F991A9D0F8 /* QMUIAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B1BAEBCC134F0E55931EE8FD6285F9 /* QMUIAlertController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 100 | + 5B371378C8659C3EF89CDD5C143690E2 /* QMUICellSizeKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D9CCBA6B30ACC6F406823B0A2F29D4 /* QMUICellSizeKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 101 | + 5B75C61981045AE24D38737E205D6E88 /* QMUICore.h in Headers */ = {isa = PBXBuildFile; fileRef = 077AFA915EC01CA9175704F67FBCAFD0 /* QMUICore.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 102 | + 5B835A34D69F25B06E2D88CFC3B922C1 /* Pods-CNLiveEmptyView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 82CC725A02E5604CC03C146A8F0EC9F6 /* Pods-CNLiveEmptyView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 103 | + 5BA1DFBE98E64004FBD396A4AE443C1F /* QMUIKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E26E328980D74476C4F336AD59C8DEDF /* QMUIKeyboardManager.m */; }; | |
| 104 | + 5C0CFAACB3EF5ABD1C5599A3F6B94BED /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */; }; | |
| 105 | + 5D02540981378B2217BAF733944E0FCE /* QMUIPopupMenuButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A64DC20478808BBC302BC9F3C29BF90 /* QMUIPopupMenuButtonItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 106 | + 5D0B43EF3A01B4ED1D6E95D735CBFDB5 /* QMUIToastContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 867709A2535E18508D6CD97A8EF8994E /* QMUIToastContentView.m */; }; | |
| 107 | + 5D31F0EA67E0BBF82FDD64CB52E77114 /* CALayer+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECAAEED7ED1AE6BB0C74A7E484DE701 /* CALayer+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 108 | + 5E3329B4BD857374CF4A02D3E13F58CD /* QMUIToastAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F7830A031D621288EB25E7A6FD20C3 /* QMUIToastAnimator.m */; }; | |
| 109 | + 5FEF200CF47A9022C30E788C3B7FBAB8 /* UITextField+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AE6157F70474DE2C8A6C5972AE70DC /* UITextField+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 110 | + 603F9AAEBBAC600E6ED4CC2FE34256B1 /* QMUILabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B55534A34D585299A7D9664A7C39CC /* QMUILabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 111 | + 60C76974A9C030A402DEFF224BE41660 /* QMUINavigationTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = E04880C0C33071DE92510CF3E4219816 /* QMUINavigationTitleView.m */; }; | |
| 112 | + 621A7BA7FB61F85AD3B2C4BA2BF61492 /* UILabel+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1196980CB7705682DA4A1EE38C7EB1DF /* UILabel+QMUI.m */; }; | |
| 113 | + 62F02D594BAF20526CD9A916384E0F0C /* QMUIFillButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 1984A77A339279E570FDBFBBC4C3E7D3 /* QMUIFillButton.m */; }; | |
| 114 | + 65530772CD353580F33EDAAC088BE2F8 /* UITabBar+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = A108628037348306FAD8265EEE6A0EDF /* UITabBar+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 115 | + 65C106ED57D54C46A9F854D8021D4C78 /* QMUIPopupContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B46C337B4B39772F05CDABA373C58AD /* QMUIPopupContainerView.m */; }; | |
| 116 | + 660A1D1203AD51C16F232177F8799D96 /* QMUIButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 287C336CDC48C5051F59D0FCF740229B /* QMUIButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 117 | + 66E60964D6F517B0BE73A88FEAF9BBB7 /* QMUILogNameManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3D603DFFA65ADC3AB2E5BABB74829F /* QMUILogNameManager.m */; }; | |
| 118 | + 66F87778B8223B65E8153E4FFC4B2CF8 /* UIFont+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F7A119D066B4550FC5E42E400F8862 /* UIFont+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 119 | + 67AEF863454B32D4576A0C5E4E563AEE /* QMUIPopupMenuItemProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EABE85B0DD17D8D8919CE747722ED10C /* QMUIPopupMenuItemProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 120 | + 680748364C884C6E35E04E9B9FCB6651 /* NSPointerArray+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F176113F7996CD3D61EA30EB7BBCB8 /* NSPointerArray+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 121 | + 6854067101CF4238B76491883C5CDA6B /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AEEFD6E48F6EC9A483894FD94DE6BB7 /* Photos.framework */; }; | |
| 122 | + 69A5AD03DCAEAF1C12928FA22D265CA4 /* QMUILogManagerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = ED57E4A38F06537DC6966171C30BF157 /* QMUILogManagerViewController.m */; }; | |
| 123 | + 69B48EF94EE9BA93E33023197A5A5AA3 /* QMUIImagePickerPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F4DCE773B8DDE5C085E6E4708CE3F9 /* QMUIImagePickerPreviewViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 124 | + 69E91DB2DCE38B2B710B216E5303868F /* UINavigationController+NavigationBarTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 0795C145C01D191967884F859BD43A9D /* UINavigationController+NavigationBarTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 125 | + 69F2CB6620A802489D515AF88BA41140 /* QMUIAlbumViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D17B68E99341DC48C2E81F03B96144 /* QMUIAlbumViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 126 | + 6B77F1488C75BA9EED4FF61A49F04118 /* QMUIHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE3BE5E75CEA2213D2096157B25FF8B /* QMUIHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 127 | + 6BA5527AC6F91F6B602E7960525E1D8C /* QMUISearchController.h in Headers */ = {isa = PBXBuildFile; fileRef = 327C8E15776D10CC335EE39D482F0B93 /* QMUISearchController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 128 | + 6FD0A50CEF93610C162227563963F5B0 /* QMUISearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = A045DD906F8DDC43AA5B20073E0C4FB8 /* QMUISearchController.m */; }; | |
| 129 | + 6FD43F41E193CEBCB25087BC8BA77A29 /* UITabBarItem+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAB45CBC99EEAB4F5A994E6581CD23F /* UITabBarItem+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 130 | + 706F13F091BF72E30CDA026DCA56AF72 /* UIViewController+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 165E0888868032EBFDE488DA7F0FD3C3 /* UIViewController+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 131 | + 710EAF0A1E70CD1F1679A6BF3F8B02DB /* QMUIMoreOperationController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC8BDE0C3092C803525B946DB8576CC /* QMUIMoreOperationController.m */; }; | |
| 132 | + 71752476018D28D3D8E6865B3A9897EA /* UINavigationController+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = B69590567331243D21345E880160327D /* UINavigationController+QMUI.m */; }; | |
| 133 | + 71BB1890D413103A47A9676B3CB053FA /* UISearchBar+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E7AAFCD5D0A3D30E851278F8B487DE3 /* UISearchBar+QMUI.m */; }; | |
| 134 | + 71F7535C1830D37A25B66777F348EE60 /* QMUITableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAB1559AE486653A691314C4547EB1C /* QMUITableView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 135 | + 744C224A79AA914C6B3E99C4F509C8BB /* NSObject+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 77202FDF896E7023A466BBBE8D9EF99E /* NSObject+QMUI.m */; }; | |
| 136 | + 7455D5D1CAD55EA3E5BBB4D935D14868 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40260A64A188F91D6A6381DF6BFCA26D /* CoreGraphics.framework */; }; | |
| 137 | + 7532F5BED2D85D11F713385709C73E28 /* QMUIImagePickerCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0BC95E8F4CCB85D92C0CCE6DDB679B /* QMUIImagePickerCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 138 | + 7570359A5639426A1D5AA5983B7C4D93 /* UIFont+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B138AD96E6F55D5CEE18B43FFEB0E09 /* UIFont+QMUI.m */; }; | |
| 139 | + 75B18CA68DA8932897E163F9F02DFCBA /* QMUICommonViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FD366EEA95B02272042009FD3216960C /* QMUICommonViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 140 | + 762CC9AE3E7CC38C431C812B9DC4529C /* UICollectionView+QMUICellSizeKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB6A17FB5E745A52EDC0FC41A4F8296 /* UICollectionView+QMUICellSizeKeyCache.m */; }; | |
| 141 | + 77E217E44F739491761A925A19227ED9 /* UITableView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A0790F8B91ED97495544F4282217E4 /* UITableView+QMUI.m */; }; | |
| 142 | + 77FF50497123246A314F8EBA98EAA061 /* QMUILogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FDF4F1F4B6CBE02E67053FD29C9E39C /* QMUILogger.m */; }; | |
| 143 | + 79D5D1C6B69F59084F60CCA7B61F9F68 /* QMUIEmotionInputManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4994D415610E59E9DE52417033006E4 /* QMUIEmotionInputManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 144 | + 7A15B0273F73F2880C98A6D104FC626C /* QMUIGhostButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 967AB00EA7E3BA4F62B4C7085A4711CF /* QMUIGhostButton.m */; }; | |
| 145 | + 7F1A31BBEB77E418A42FCF599A52E745 /* QMUIScrollAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 857B8006B85CBCA575684957635B0A10 /* QMUIScrollAnimator.m */; }; | |
| 146 | + 7F42650A00ADCF08F874497F2C7B346D /* QMUITips.m in Sources */ = {isa = PBXBuildFile; fileRef = F19D6A92D9B1A0E9C28D5A8485EBE11D /* QMUITips.m */; }; | |
| 147 | + 7FB128420A4A4ED8BDB70CD777685117 /* QMUIPopupMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC4C7536C6A522197B783CAE57FBED3 /* QMUIPopupMenuView.m */; }; | |
| 148 | + 818C50D7E6B4DF095BE48DB79295CCE4 /* UIBarItem+QMUIBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 7664E1AFB598843452C5EE0DFDA2F90F /* UIBarItem+QMUIBadge.m */; }; | |
| 149 | + 818DECEDE6CE8D1C44C3D1CE9A7306B1 /* UIWindow+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = E86385A72F3BE692AC4018DB65885A7B /* UIWindow+QMUI.m */; }; | |
| 150 | + 82292FDFBE053776B24EF57E6E66718C /* UIControl+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AAD4B9E2A2C7842EA9551EBEAC6A7E /* UIControl+QMUI.m */; }; | |
| 151 | + 8252B8D53EB29E381C87E3205F960BD5 /* Pods-CNLiveEmptyView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F2C0AE36FF8A6FBD0F4D3332F76206 /* Pods-CNLiveEmptyView_Tests-dummy.m */; }; | |
| 152 | + 82CD21D04DEBC58AC11489B3CA51EC74 /* QMUITableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDE20E4892A38F41F0E4F9CF62A11DC /* QMUITableViewCell.m */; }; | |
| 153 | + 832C765B8B9112BCD3895BAD14C37651 /* NSObject+QMUIMultipleDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = E4AD4D24307FD758878B3C7FD3F26715 /* NSObject+QMUIMultipleDelegates.m */; }; | |
| 154 | + 83E45A7A3234F51819A2CAC4ED89FBC8 /* QMUIOrderedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = D4464095CFC47051FEFA4E0CF85B2497 /* QMUIOrderedDictionary.m */; }; | |
| 155 | + 852F3EDB138458CC03FAC9CB579A3689 /* QMUISlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1901C9CC0A5C3032FC01AAB002057BBC /* QMUISlider.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 156 | + 863A2B060B9C0A96436EB0A020BFE544 /* QMUICellHeightKeyCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D62F035D90C15C26B9622E7CEB8CA71 /* QMUICellHeightKeyCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 157 | + 8791E4C597174065E934BD7C0273E126 /* QMUILogItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AFA529D8BB06D207B0AFC4DB4C63B0 /* QMUILogItem.m */; }; | |
| 158 | + 88088792874F872F956F1DFE43C7FB66 /* QMUIAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = B486D035DFA15E971FCBB939A382D549 /* QMUIAsset.m */; }; | |
| 159 | + 88DD3C3F3F0398394DA3ECB6EE548140 /* NSNumber+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5F415A8486BD8FFF6D2BEDDD5AF0CD /* NSNumber+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 160 | + 88F197599E02329BF382B8598E3B6F41 /* QMUIStaticTableViewCellDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE8BC108D919FB6CF683FF361AE29E /* QMUIStaticTableViewCellDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 161 | + 8935ADAC0EC0470DDCF626B77464008B /* QMUIToastAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2981C23463A0E6905599C78C8B9A99 /* QMUIToastAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 162 | + 893A50D9E03C20D1A55341AB48637043 /* CNLiveEmptyView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F20048468DC72BD7C548716DEB62B748 /* CNLiveEmptyView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 163 | + 8A225DDFA94C552C34A0D07AB54F4D0D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */; }; | |
| 164 | + 8B276D5754E026801E753F7607A50557 /* QMUIPopupContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = A63D3844E87808AA9D24689B6B47B062 /* QMUIPopupContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 165 | + 8BBD235546B02A200443701F2FA9EAF4 /* QMUILogNameManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEFBD1348A991F10A4FAD4AA664A253 /* QMUILogNameManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 166 | + 8C3B69994C085712D8967A966460E525 /* UINavigationBar+Transition.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC3F3AC95A6649895997EFE7DBB8A15 /* UINavigationBar+Transition.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 167 | + 8C97CDAFA5EB1AFC0AA513EEC5DEBC4F /* QMUIPopupMenuButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D373C51981B5FAC668514CA43CDF92 /* QMUIPopupMenuButtonItem.m */; }; | |
| 168 | + 8E7FD130C193E0E5ED12482DE7815B6C /* NSParagraphStyle+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 422D99FD1AC04F522A413CF7ADF124CF /* NSParagraphStyle+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 169 | + 8FD956A90C29DE86EA05E68061C053FD /* QMUINavigationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 283F50BE7F4B50C41EEA03E6BE9DE8B8 /* QMUINavigationButton.m */; }; | |
| 170 | + 90E62F1B64C4C5034065C607C993E7AF /* UINavigationController+NavigationBarTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DE6E1E6FCDCFB243945ADA92A0F6AB5 /* UINavigationController+NavigationBarTransition.m */; }; | |
| 171 | + 9397F665EC2B244B9230AB1CA7D73500 /* UITableView+QMUICellHeightKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B53096C42905AB1C59777B0B3E8AF0 /* UITableView+QMUICellHeightKeyCache.m */; }; | |
| 172 | + 95D445110E405D7CFA2B0DE2B011FDB2 /* NSURL+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D7951DD02F645C9086235BB4A8D5AD /* NSURL+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 173 | + 96035E9B073EC1D07904CE2F1593B532 /* QMUIAssetsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 418E55EF1A1D3B3789758B61DB0F07AE /* QMUIAssetsManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 174 | + 96D387D27DA9F5DAF57B1204A9E2A543 /* QMUIZoomImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CF3F9562DD8C287DC6D2542A34FC724 /* QMUIZoomImageView.m */; }; | |
| 175 | + 9759B25B95BAEDCA1AB89E676892E205 /* NSCharacterSet+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D49056A96BBFFB26BA7E5221EC613C /* NSCharacterSet+QMUI.m */; }; | |
| 176 | + 9802D820A75081777C37C806313AEB28 /* QMUIPopupMenuBaseItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 95B8BA450A02AE3B1E5624D77632AB0F /* QMUIPopupMenuBaseItem.m */; }; | |
| 177 | + 980E625A4F2DC2E74E1BAA47A28D9162 /* UITableView+QMUIStaticCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF56C90A7B7E8EB1C2D376674309117 /* UITableView+QMUIStaticCell.m */; }; | |
| 178 | + 982299F7CE7B9C852EBFCB0274B752D2 /* QMUITableView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E16978D401CA5628C96E21D0DA9BD7 /* QMUITableView.m */; }; | |
| 179 | + 99C98C01F61406D92655901AA2925E19 /* QMUITabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0FEFE801A14A45382A8A00A81443E19 /* QMUITabBarViewController.m */; }; | |
| 180 | + 9A8AA8E0A4C984E444249E750E9BB153 /* QMUIResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 85932D487990FC072A12E9374F52C874 /* QMUIResources.bundle */; }; | |
| 181 | + 9AC141AD3DC86AA5340AAC5D3543B9E9 /* UIActivityIndicatorView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD23780728557F602277DDEF5C2921B /* UIActivityIndicatorView+QMUI.m */; }; | |
| 182 | + 9D13F0D3907242A10DD9E48028F7E84C /* NSObject+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FBA584E8D69023B04F3E9C0EE13AC4B /* NSObject+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 183 | + 9DD16B2565AE9078FDCE3EDA50E5B272 /* NSPointerArray+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = F6F657C9BD0220BD743C922AF5B222E9 /* NSPointerArray+QMUI.m */; }; | |
| 184 | + 9EC4ED76FB1B9CFE308D01B0601F5F56 /* UINavigationBar+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = DF8698EC7AE5965D0103956446E512B6 /* UINavigationBar+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 185 | + 9ECA29620E33BE7DC43E85A199DEAC5C /* QMUIEmotionInputManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93253C7854DAE2514FAB20DD80CF745A /* QMUIEmotionInputManager.m */; }; | |
| 186 | + 9FAFC618825B666DF1BDA17BBD322026 /* QMUITableViewHeaderFooterView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A3CFA4E9B72274853BD50AA1762BEA4 /* QMUITableViewHeaderFooterView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 187 | + 9FC72123B8CDB9464192715EF73E3ED4 /* QMUITableViewProtocols.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E295F9CA326954427EB0E5B99C32C9 /* QMUITableViewProtocols.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 188 | + A4DCC4709D1107C8EDC5F9F345AE2507 /* QMUIToastBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 726AF970C89C9A961AFFF8CADDEDA82D /* QMUIToastBackgroundView.m */; }; | |
| 189 | + A4F11AC308087D0F0AFEB49FCBBF8697 /* UIGestureRecognizer+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E719ADE006E41FD830DEBECEB80C27 /* UIGestureRecognizer+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 190 | + A666D3CBE2842EB2CB91628FE0115772 /* QMUIImagePreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EE39525CA5175DB98D35B53C5F5EA1B6 /* QMUIImagePreviewViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 191 | + A737F3B0CCFBB9154D1BB8C63D565167 /* QMUIFloatLayoutView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F4F87282593B83C8B61D60308091E53 /* QMUIFloatLayoutView.m */; }; | |
| 192 | + A991EEBAE37E682E1A6E7401B9D8DC75 /* UIWindow+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 18159ED77BAE29B4AC4ABAB295C1A6B4 /* UIWindow+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 193 | + AC2AA5412BC9EF77F9F8FEC818E23E6A /* UIImage+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 25895284DB54A412962C0FF635786791 /* UIImage+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 194 | + AC6368B1B0949F0526DF616A851DBC09 /* NSString+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 841D768E9E7FEF437D4846C1C31B5575 /* NSString+QMUI.m */; }; | |
| 195 | + ACBBACA34A828BA745E638F8995D046D /* QMUIAssetsGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E191ACCD195AF9FEB074F6CB45C1269D /* QMUIAssetsGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 196 | + ACCE5E0D8166B49D99D32B9F90CABCEE /* UIScrollView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = BA241FE0BABD76043ED1E4E0AE066D41 /* UIScrollView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 197 | + B0B5B4810E8A64913EF2A61B1D4E85BA /* QMUICellHeightCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EC65E8D340A5A5B77C907E2793E67762 /* QMUICellHeightCache.m */; }; | |
| 198 | + B0CDEF37F15EFFBE4C25EA4C22F65570 /* QMUIConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = E54E4F49EB2413C6A87A157A5CBC845B /* QMUIConfiguration.m */; }; | |
| 199 | + B0F93561765D6519BC06D692CA6DEE88 /* CAAnimation+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D421279B582750E58EC942F4A0FCE7 /* CAAnimation+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 200 | + B111998DAD0B843628496CBFD83425AC /* QMUICommonTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 00838B8220BC4A9F6921DEDEF7C87BB5 /* QMUICommonTableViewController.m */; }; | |
| 201 | + B3495CDD0AD0C8CB993828B2F0E5CEA4 /* QMUIAlbumViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 72B82B4BCFD16806FC20C290B3D2E699 /* QMUIAlbumViewController.m */; }; | |
| 202 | + B4D7C1DB3711E2F44513FE11234AE1C5 /* QMUINavigationTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF0C172B9B16B8CADFB100C4ECC6B51 /* QMUINavigationTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 203 | + B5E29C44A500B3F81A1AC8187B067662 /* UITabBar+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 619519D7A09BA5CEA4266A2640B4581E /* UITabBar+QMUI.m */; }; | |
| 204 | + B622DB61B9F9046E1D1CA6BE0DFE12A9 /* QMUICommonTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F61563A08E28F519DB973AE802F57CB /* QMUICommonTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 205 | + B77D68881786F9A9FC30C0755381D806 /* QMUIMarqueeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 02AE85186AFBED5626B4880AC416E72E /* QMUIMarqueeLabel.m */; }; | |
| 206 | + B90121369921536553F2AF8CF0FE9ADB /* NSArray+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBCC2CED44C83247713DE526F707C6A /* NSArray+QMUI.m */; }; | |
| 207 | + B9AABA775CD41780F6205D728054AB60 /* UIBezierPath+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1996B9D42A07181EA5C80FE74AF1A167 /* UIBezierPath+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 208 | + BA1681F23A6509EBEF341D743FF65C81 /* QMUINavigationBarScrollingAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F32A69897C7122B7ABED37FD7C7F782 /* QMUINavigationBarScrollingAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 209 | + BA565BA76FCFCB64945ACDED9B93CF97 /* QMUIImagePickerPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD02F0ED9678FC6298B2F20AB2D76063 /* QMUIImagePickerPreviewViewController.m */; }; | |
| 210 | + BABAA1A68AB5C8A49B4BA900E17B6CC0 /* QMUIEmotionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FBCA193824C0876896D38178A616F51 /* QMUIEmotionView.m */; }; | |
| 211 | + BC6EBDBB2E019C2A9612ADBF592CC382 /* UIViewController+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B383EFF233CC47CFE93E39E3A294B3 /* UIViewController+QMUI.m */; }; | |
| 212 | + BD2422B1CAD48C6AD14E111E4EDBFCAE /* QMUILogger+QMUIConfigurationTemplate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D0850B301BEB3719C4A7D17FB2F40CA /* QMUILogger+QMUIConfigurationTemplate.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 213 | + BE25465C00FF72FA736C5205BB395BDC /* QMUICollectionViewPagingLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1952CEE8CACB06D5BB473881DA37508C /* QMUICollectionViewPagingLayout.m */; }; | |
| 214 | + BE89A377DF3ABF9FBBF4FEC87D48DBAA /* QMUINavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B8E9C8A57CB3B34447C7AFF7EE44F3 /* QMUINavigationController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 215 | + C244AAD0CD02E739238CD29FA40837BE /* QMUIToastBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = BECC15D823DCF17DFB168444DD512D83 /* QMUIToastBackgroundView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 216 | + C4152ABC678D29E92E1020B8AF3F2D29 /* UICollectionView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B76C07B4297EEF730A63E8D1187E125 /* UICollectionView+QMUI.m */; }; | |
| 217 | + C69A1C4C79CA56557FD4A24F1760A326 /* UITabBarItem+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 3808C54A498A6C7A8A5DC615CAE391B4 /* UITabBarItem+QMUI.m */; }; | |
| 218 | + C8221C1D119ACF55C393C1743A3FB372 /* QMUIImagePickerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 161B95BB46BE053A3A86B78C869B9837 /* QMUIImagePickerViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 219 | + C9322F5C653D81D8DA67208957EA7993 /* UISearchBar+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3F01F7981A029E86204CEEB4B0A82A /* UISearchBar+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 220 | + CA6FD80163E52B73050C55DA2711E52D /* QMUITestView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B02F3630DD5A74CFAFE7F1557DF971 /* QMUITestView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 221 | + CABF3D00033738EE079501804D193FC0 /* UITableViewCell+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = B868D5A4F5C7283565D2FCCFD4DA168E /* UITableViewCell+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 222 | + CAF46FED89B6B566AD1051D47B96D0FE /* UIScrollView+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C5D0EE23FC21D542575412F69178A6 /* UIScrollView+QMUI.m */; }; | |
| 223 | + CC10EC0EB014A3D30B3CDA1DCB6FDDAA /* QMUILogger+QMUIConfigurationTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = A41171C1FAABAFEB8B002334683DDC02 /* QMUILogger+QMUIConfigurationTemplate.m */; }; | |
| 224 | + CD065104F4D821DAFE0B7B6865431218 /* QMUINavigationBarScrollingSnapAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FA6DD888FEE0F4F39ADB0658BDE578 /* QMUINavigationBarScrollingSnapAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 225 | + CE458613F4097179D361425EF6F6F3F8 /* QMUINavigationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 639E0FFC9470B61321B1DA3C8531BE68 /* QMUINavigationButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 226 | + CF78C75D705FBB9DD4B1CCE4FEB881D8 /* QMUIMultipleDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = C885FA9876A632DBC6894FA1F7DF3FF5 /* QMUIMultipleDelegates.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 227 | + CFA3883520997D51AE003BF44AF6FE6D /* QMUIModalPresentationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E952A4B8FB69C74700E00F99EDDEF51 /* QMUIModalPresentationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 228 | + CFB2546F3051476945E0E22D7DC158CB /* CALayer+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 75549842FFA8F83CDFD8C4645AE95611 /* CALayer+QMUI.m */; }; | |
| 229 | + D0D39912C67FCCCF7C1DE2CFFD1FEAB1 /* QMUILogManagerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3541F828BAD3505DDC8F0704A9DC4EA6 /* QMUILogManagerViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 230 | + D0F54D5C79F53BF3DFED55A813D4166A /* UIBarItem+QMUIBadge.h in Headers */ = {isa = PBXBuildFile; fileRef = C3FAD9906F57EC9243FEEBAF1CC94A85 /* UIBarItem+QMUIBadge.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 231 | + D10C0446BBB889D2F8A8EEF03089BF84 /* QMUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 9252BCC60CA50B365DDCC86BBD5BE970 /* QMUITextField.m */; }; | |
| 232 | + D12746B7226D68EB932B1626C3F0BBD4 /* QMUISegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A396EC8BE89FD67361034654F7CFBB7F /* QMUISegmentedControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 233 | + D17CC538795BEBFE008B0CE8AB55ABF0 /* QMUILog.h in Headers */ = {isa = PBXBuildFile; fileRef = 233D456A0F45469D9CC3A7F13759705D /* QMUILog.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 234 | + D1B9CD9E106C2A4E5AEF860A7D4D1E0A /* QMUIFillButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDE2D459E31DE8A69617CECA6250125 /* QMUIFillButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 235 | + D362FBDA7EF11FBAC6372DF3289C8F6A /* UIView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC6F084D6F34C249C680A3A0B1449A8 /* UIView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 236 | + DACA29E906608614AFBF4B2B514CF1CB /* NSString+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = AE749EADDDFC3C0BCB54B92B97DC9A3E /* NSString+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 237 | + DAD58CDD9301C38FC081CA26BCF109A3 /* QMUIToastContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB0B08F81CB62FBC862DC4B8AD650F7 /* QMUIToastContentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 238 | + DB5D521B993E4648AF95A85D20F30F92 /* QMUILogItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6178F81A5DCE840951801F0B9BD0BBB9 /* QMUILogItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 239 | + DF359F1FE2F2D3EE15FD4BD213B41C60 /* QMUISegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD97020833AEF2873EC85EDE55FB578 /* QMUISegmentedControl.m */; }; | |
| 240 | + E1D93A820EFA5763DED0280AE91AD017 /* UIColor+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = FB68B2AFC6810F003EA15FB5FF704DE0 /* UIColor+QMUI.m */; }; | |
| 241 | + E2B45E36D03AFC5444271376242B3209 /* QMUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E71CD44B6575C425DF7CD11FFA361D8 /* QMUIKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 242 | + E4DFDDCD52E8631110E020056E266615 /* QMUICommonDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = CAED37508C776E749D8B1A0AC673D1CF /* QMUICommonDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 243 | + E5ED2775B402369E9D4E335052C48BBB /* QMUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B054A6D940AF86C0A85D955EBEF8C9F /* QMUITextView.m */; }; | |
| 244 | + EA588054EFC790AA86854BB3FD10BF12 /* UINavigationBar+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC36AE2BBAAF6E062E1BB571A12DAC3 /* UINavigationBar+QMUI.m */; }; | |
| 245 | + EB165FA0CD5AA275D36FCCCB8D5F18D8 /* UITableView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF86EE16C919F56CC23E7AEB6EA4D08 /* UITableView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 246 | + EBAE6FDA1BF89DF407F3B0EC907D805B /* QMUILogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2889BF54D43039E34ECE63FAC85D2E1D /* QMUILogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 247 | + EBB6092977BD4F98DA7C7880673D747E /* NSAttributedString+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 5079DDDCF8ED34E921770AEE593997D2 /* NSAttributedString+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 248 | + ECA29C22F773D04744CDD51FC952C465 /* QMUIEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3588B9E21B3E79011ABBE2A871A9D2AD /* QMUIEmptyView.m */; }; | |
| 249 | + ECD3A22B4D9A51F3AC28B50275E65CC9 /* QMUIRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 946F39A3036111880BAED7E5EF15FA33 /* QMUIRuntime.m */; }; | |
| 250 | + ECECA9258E7100DE9A673D589A17569E /* QMUITestView.m in Sources */ = {isa = PBXBuildFile; fileRef = C136D7A96F6AEC6E04F9D7BB36CEF407 /* QMUITestView.m */; }; | |
| 251 | + EDC79068CA74F0022F89100C7FE77E78 /* UIInterface+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7F2D7D88AB86A72FDA6D76DB4B96F5 /* UIInterface+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 252 | + EE4F62A4240BCBE167D96733B91D3B10 /* QMUIToolbarButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D850ABD913ABEBD0DDB6DF2CED64C70 /* QMUIToolbarButton.m */; }; | |
| 253 | + EE73084E1EB451756A1E4E05D9E12C83 /* NSCharacterSet+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1342CAA536F1093670F70710BF2D0E8B /* NSCharacterSet+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 254 | + EEC8E642F42B515E984D5CA0AB7A21EF /* UIActivityIndicatorView+QMUI.h in Headers */ = {isa = PBXBuildFile; fileRef = F55C4429DF1417CDE5C08227ECFD97D2 /* UIActivityIndicatorView+QMUI.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 255 | + F0808213C221E49070DFD6EE7812627C /* QMUIStaticTableViewCellData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D214161CD57C864F4C0C809DBA89B14 /* QMUIStaticTableViewCellData.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 256 | + F09A6362313341DF40029B2B1A3A8D3C /* UITableView+QMUIStaticCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EAB1C72CEACC749511F82D680CB3CF0 /* UITableView+QMUIStaticCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 257 | + F1C1740DCFF9E490327923E34B3ABDA0 /* QMUIVisualEffectView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AB498BC41FC2118B18390DD86D8B85 /* QMUIVisualEffectView.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 258 | + F20ECBD420F31706D1F43022633D841F /* QMUIKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8943F79BF4D4A53FFFE3F0050916BCF6 /* QMUIKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 259 | + F234F3607CA45F890D06C59FE40D990B /* Pods-CNLiveEmptyView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C6510D9ED4D0CD2FC651A247198D6 /* Pods-CNLiveEmptyView_Example-dummy.m */; }; | |
| 260 | + F31B75852FE0E93C82CFB5DB136C172B /* UIImage+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1725A6198F32713C08CBA45F6AC827 /* UIImage+QMUI.m */; }; | |
| 261 | + F34C12FEC631A7FE314E0E962F36F43B /* QMUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C43A7E5C626923A12C6FE74C0DF6B8F4 /* QMUITextField.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 262 | + F3A9BDE3BD542EF790D92853E2F3852E /* CAAnimation+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 499EF5FE957D6D80D95323CB70730B6A /* CAAnimation+QMUI.m */; }; | |
| 263 | + F4C4CC6A9D0A1531254F4AD168151446 /* QMUICellHeightCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E626E9E36A29D01E46FBF42A7AF154E5 /* QMUICellHeightCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 264 | + F5D2B0B83C6E6BF0248C1DCABF3B9F7D /* QMUIDialogViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 015BB595DBD6949EBEAA8738FE12223C /* QMUIDialogViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 265 | + F842676001D4276D9BD0A59E50BFF564 /* QMUIButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EE0AF141F0E9AE7BF1C90592659BCB /* QMUIButton.m */; }; | |
| 266 | + F9226C34355B57114C3D6F9AAF6F0AB8 /* QMUIModalPresentationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DCAC689B16A852521E02B74F8B2BE32 /* QMUIModalPresentationViewController.m */; }; | |
| 267 | + F9D2D2AD2771453B9B7F886D8F71D61B /* QMUIScrollAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 616D197C7043557D8CD03CAA163FF758 /* QMUIScrollAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 268 | + FA0FDA087FD9EC9BA0A0555BCBCF094D /* QMUIRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 127E47F52696D3D8ED8F707C8C66EE50 /* QMUIRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 269 | + FC88D3BC53A58A202BBCD4EC6D2FFBD4 /* QMUIVisualEffectView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB92BF234C24893E40E87322812BE854 /* QMUIVisualEffectView.m */; }; | |
| 270 | + FD661AE2F3DF12AEF67417289801DC01 /* QMUIAssetsGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 36699F793146618678F7DC35307003BB /* QMUIAssetsGroup.m */; }; | |
| 271 | + FDA15AE79A33E89B910C734CC77EC2DA /* QMUICellHeightKeyCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 00662AEF1699E1D4902BAD916450E34B /* QMUICellHeightKeyCache.m */; }; | |
| 272 | + FE4A80EF6D25188583FA623DB6A2070D /* UIBezierPath+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E8DF67EC99D97064B5BB52A25FD748D /* UIBezierPath+QMUI.m */; }; | |
| 273 | + FEE46FC46CFB3E5E6463569E517ABA31 /* QMUIConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F698C6F858196B9297E6D63FB0E63E2 /* QMUIConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; | |
| 274 | + FEEA7B72ADB1D693C1327B0DDA84D457 /* UIButton+QMUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B0AA544D03796CB11223A4816268340 /* UIButton+QMUI.m */; }; | |
| 275 | + FF22F2C861272B58B6AE24675D631AA2 /* QMUIStaticTableViewCellData.m in Sources */ = {isa = PBXBuildFile; fileRef = B5D064B65D40155BD70B64BB388B1ACF /* QMUIStaticTableViewCellData.m */; }; | |
| 276 | + FF32B88621280D983C8170716D4ABF38 /* QMUIDialogViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F1CE3B7EF800365F868727333DF157 /* QMUIDialogViewController.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 = D504282C30860CD6EC7218E45B4217CE; | |
| 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 = 0CEBCCEEA24DC8482543FF12CB5E56AB; | |
| 299 | + remoteInfo = QMUIKit; | |
| 300 | + }; | |
| 301 | + C57D8FAD6992FF1ACADBC51FF31BC6F2 /* PBXContainerItemProxy */ = { | |
| 302 | + isa = PBXContainerItemProxy; | |
| 303 | + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; | |
| 304 | + proxyType = 1; | |
| 305 | + remoteGlobalIDString = 0CEBCCEEA24DC8482543FF12CB5E56AB; | |
| 306 | + remoteInfo = QMUIKit; | |
| 307 | + }; | |
| 308 | + C6B9BE2FF54A29C003587600279BE96E /* PBXContainerItemProxy */ = { | |
| 309 | + isa = PBXContainerItemProxy; | |
| 310 | + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; | |
| 311 | + proxyType = 1; | |
| 312 | + remoteGlobalIDString = 0CEBCCEEA24DC8482543FF12CB5E56AB; | |
| 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 | + 0738271D12A250FC4D6E98741E17AE42 /* QMUIPopupMenuView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupMenuView.h; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h; sourceTree = "<group>"; }; | |
| 326 | + 077AFA915EC01CA9175704F67FBCAFD0 /* QMUICore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICore.h; path = QMUIKit/QMUICore/QMUICore.h; sourceTree = "<group>"; }; | |
| 327 | + 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>"; }; | |
| 328 | + 07B3FE982FEADC65BEC00A71A527CE0D /* QMUIAsset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAsset.h; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h; sourceTree = "<group>"; }; | |
| 329 | + 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QMUIKit.xcconfig; sourceTree = "<group>"; }; | |
| 330 | + 0A1EF718D9476C4CDC4A342936A337F8 /* Pods-CNLiveEmptyView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Example-frameworks.sh"; sourceTree = "<group>"; }; | |
| 331 | + 0ABC0D68AF99F730F1536B7F5A57C071 /* QMUIWeakObjectContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIWeakObjectContainer.h; path = QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h; sourceTree = "<group>"; }; | |
| 332 | + 0BB4AB09F4015EF7ACEABBCAA03203C2 /* Pods-CNLiveEmptyView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveEmptyView_Example.modulemap"; sourceTree = "<group>"; }; | |
| 333 | + 0E3F01F7981A029E86204CEEB4B0A82A /* UISearchBar+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISearchBar+QMUI.h"; path = "QMUIKit/UIKitExtensions/UISearchBar+QMUI.h"; sourceTree = "<group>"; }; | |
| 334 | + 0E8DF67EC99D97064B5BB52A25FD748D /* UIBezierPath+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBezierPath+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m"; sourceTree = "<group>"; }; | |
| 335 | + 1196980CB7705682DA4A1EE38C7EB1DF /* UILabel+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+QMUI.m"; path = "QMUIKit/UIKitExtensions/UILabel+QMUI.m"; sourceTree = "<group>"; }; | |
| 336 | + 11F1CE3B7EF800365F868727333DF157 /* QMUIDialogViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIDialogViewController.m; path = QMUIKit/QMUIComponents/QMUIDialogViewController.m; sourceTree = "<group>"; }; | |
| 337 | + 127E47F52696D3D8ED8F707C8C66EE50 /* QMUIRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIRuntime.h; path = QMUIKit/QMUICore/QMUIRuntime.h; sourceTree = "<group>"; }; | |
| 338 | + 1283089156FCF7A4E9AE931119BC44D8 /* UITableViewCell+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableViewCell+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m"; sourceTree = "<group>"; }; | |
| 339 | + 1342CAA536F1093670F70710BF2D0E8B /* NSCharacterSet+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCharacterSet+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h"; sourceTree = "<group>"; }; | |
| 340 | + 15D373C51981B5FAC668514CA43CDF92 /* QMUIPopupMenuButtonItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupMenuButtonItem.m; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m; sourceTree = "<group>"; }; | |
| 341 | + 161B95BB46BE053A3A86B78C869B9837 /* QMUIImagePickerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerViewController.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h; sourceTree = "<group>"; }; | |
| 342 | + 165E0888868032EBFDE488DA7F0FD3C3 /* UIViewController+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIViewController+QMUI.h"; sourceTree = "<group>"; }; | |
| 343 | + 16B889D321AB2DCA20B101F81C77EB49 /* UITextView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITextView+QMUI.m"; sourceTree = "<group>"; }; | |
| 344 | + 1777C15B5E4B64602B31CDE9D5B871DE /* UIBarItem+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarItem+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIBarItem+QMUI.h"; sourceTree = "<group>"; }; | |
| 345 | + 1810A443D3C0AE0E22F655BF37DA8297 /* Pods-CNLiveEmptyView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Tests-frameworks.sh"; sourceTree = "<group>"; }; | |
| 346 | + 18159ED77BAE29B4AC4ABAB295C1A6B4 /* UIWindow+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIWindow+QMUI.h"; sourceTree = "<group>"; }; | |
| 347 | + 1901C9CC0A5C3032FC01AAB002057BBC /* QMUISlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISlider.h; path = QMUIKit/QMUIComponents/QMUISlider.h; sourceTree = "<group>"; }; | |
| 348 | + 1932056E130DE52DD4D2C1FFEFF6488E /* QMUIPieProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPieProgressView.m; path = QMUIKit/QMUIComponents/QMUIPieProgressView.m; sourceTree = "<group>"; }; | |
| 349 | + 1952CEE8CACB06D5BB473881DA37508C /* QMUICollectionViewPagingLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICollectionViewPagingLayout.m; path = QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m; sourceTree = "<group>"; }; | |
| 350 | + 1984A77A339279E570FDBFBBC4C3E7D3 /* QMUIFillButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIFillButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m; sourceTree = "<group>"; }; | |
| 351 | + 1996B9D42A07181EA5C80FE74AF1A167 /* UIBezierPath+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBezierPath+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h"; sourceTree = "<group>"; }; | |
| 352 | + 1CDE2D459E31DE8A69617CECA6250125 /* QMUIFillButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIFillButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h; sourceTree = "<group>"; }; | |
| 353 | + 1EC36AE2BBAAF6E062E1BB571A12DAC3 /* UINavigationBar+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+QMUI.m"; path = "QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m"; sourceTree = "<group>"; }; | |
| 354 | + 1EDE8025F00B414FD396A4D95BC87B79 /* CNLiveEmptyView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveEmptyView-prefix.pch"; sourceTree = "<group>"; }; | |
| 355 | + 1F61563A08E28F519DB973AE802F57CB /* QMUICommonTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICommonTableViewController.h; path = QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h; sourceTree = "<group>"; }; | |
| 356 | + 214FBE177F855DB8735D07488C0A2762 /* Pods-CNLiveEmptyView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Tests.release.xcconfig"; sourceTree = "<group>"; }; | |
| 357 | + 22AFA529D8BB06D207B0AFC4DB4C63B0 /* QMUILogItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogItem.m; path = QMUIKit/QMUIComponents/Log/QMUILogItem.m; sourceTree = "<group>"; }; | |
| 358 | + 233D456A0F45469D9CC3A7F13759705D /* QMUILog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILog.h; path = QMUIKit/QMUIComponents/Log/QMUILog.h; sourceTree = "<group>"; }; | |
| 359 | + 23EE0AF141F0E9AE7BF1C90592659BCB /* QMUIButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m; sourceTree = "<group>"; }; | |
| 360 | + 25895284DB54A412962C0FF635786791 /* UIImage+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIImage+QMUI.h"; sourceTree = "<group>"; }; | |
| 361 | + 26B1BAEBCC134F0E55931EE8FD6285F9 /* QMUIAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAlertController.h; path = QMUIKit/QMUIComponents/QMUIAlertController.h; sourceTree = "<group>"; }; | |
| 362 | + 283F50BE7F4B50C41EEA03E6BE9DE8B8 /* QMUINavigationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m; sourceTree = "<group>"; }; | |
| 363 | + 287C336CDC48C5051F59D0FCF740229B /* QMUIButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h; sourceTree = "<group>"; }; | |
| 364 | + 2889BF54D43039E34ECE63FAC85D2E1D /* QMUILogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogger.h; path = QMUIKit/QMUIComponents/Log/QMUILogger.h; sourceTree = "<group>"; }; | |
| 365 | + 29F7830A031D621288EB25E7A6FD20C3 /* QMUIToastAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastAnimator.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m; sourceTree = "<group>"; }; | |
| 366 | + 2B054A6D940AF86C0A85D955EBEF8C9F /* QMUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITextView.m; path = QMUIKit/QMUIComponents/QMUITextView.m; sourceTree = "<group>"; }; | |
| 367 | + 2BF86EE16C919F56CC23E7AEB6EA4D08 /* UITableView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITableView+QMUI.h"; sourceTree = "<group>"; }; | |
| 368 | + 2CBCC2CED44C83247713DE526F707C6A /* NSArray+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSArray+QMUI.m"; sourceTree = "<group>"; }; | |
| 369 | + 2CDD7D98B71F997EEBCAB5336337C4E4 /* UIControl+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIControl+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIControl+QMUI.h"; sourceTree = "<group>"; }; | |
| 370 | + 2CEEBE0056F48DF0574635BFF9B97D17 /* UIView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIView+QMUI.m"; sourceTree = "<group>"; }; | |
| 371 | + 2D214161CD57C864F4C0C809DBA89B14 /* QMUIStaticTableViewCellData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIStaticTableViewCellData.h; path = QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h; sourceTree = "<group>"; }; | |
| 372 | + 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>"; }; | |
| 373 | + 2DED7AACC5025619371184D791E6FEFC /* QMUITableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableViewCell.h; path = QMUIKit/QMUIComponents/QMUITableViewCell.h; sourceTree = "<group>"; }; | |
| 374 | + 2ECAAEED7ED1AE6BB0C74A7E484DE701 /* CALayer+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+QMUI.h"; path = "QMUIKit/UIKitExtensions/CALayer+QMUI.h"; sourceTree = "<group>"; }; | |
| 375 | + 2F698C6F858196B9297E6D63FB0E63E2 /* QMUIConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIConfiguration.h; path = QMUIKit/QMUICore/QMUIConfiguration.h; sourceTree = "<group>"; }; | |
| 376 | + 2FB0B08F81CB62FBC862DC4B8AD650F7 /* QMUIToastContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastContentView.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h; sourceTree = "<group>"; }; | |
| 377 | + 30F176113F7996CD3D61EA30EB7BBCB8 /* NSPointerArray+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSPointerArray+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h"; sourceTree = "<group>"; }; | |
| 378 | + 31CB781E583D78BD658298CF0F9EEB9D /* QMUIZoomImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIZoomImageView.h; path = QMUIKit/QMUIComponents/QMUIZoomImageView.h; sourceTree = "<group>"; }; | |
| 379 | + 327C8E15776D10CC335EE39D482F0B93 /* QMUISearchController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISearchController.h; path = QMUIKit/QMUIComponents/QMUISearchController.h; sourceTree = "<group>"; }; | |
| 380 | + 32C203828549F79489D9137720F0773C /* Pods-CNLiveEmptyView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveEmptyView_Example-acknowledgements.markdown"; sourceTree = "<group>"; }; | |
| 381 | + 3430509A8B18E41D42C8E93B541332EC /* QMUIKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = QMUIKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 382 | + 3541F828BAD3505DDC8F0704A9DC4EA6 /* QMUILogManagerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogManagerViewController.h; path = QMUIKit/QMUIComponents/QMUILogManagerViewController.h; sourceTree = "<group>"; }; | |
| 383 | + 355CD548B59249FF7CE60F8D01F476DE /* QMUIImagePreviewView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePreviewView.h; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h; sourceTree = "<group>"; }; | |
| 384 | + 3588B9E21B3E79011ABBE2A871A9D2AD /* QMUIEmptyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIEmptyView.m; path = QMUIKit/QMUIComponents/QMUIEmptyView.m; sourceTree = "<group>"; }; | |
| 385 | + 36699F793146618678F7DC35307003BB /* QMUIAssetsGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAssetsGroup.m; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m; sourceTree = "<group>"; }; | |
| 386 | + 3808C54A498A6C7A8A5DC615CAE391B4 /* UITabBarItem+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarItem+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m"; sourceTree = "<group>"; }; | |
| 387 | + 39728F299AB5E6F9A72B37E7DBE49536 /* Pods-CNLiveEmptyView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveEmptyView_Tests-acknowledgements.markdown"; sourceTree = "<group>"; }; | |
| 388 | + 39CA4E6D9642C1EA36A3E91C9A6E0472 /* QMUILinkButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILinkButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m; sourceTree = "<group>"; }; | |
| 389 | + 3A3CFA4E9B72274853BD50AA1762BEA4 /* QMUITableViewHeaderFooterView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableViewHeaderFooterView.h; path = QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h; sourceTree = "<group>"; }; | |
| 390 | + 3ABB3CE4A38F351A8FBD21EDF8580222 /* QMUIPopupMenuBaseItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupMenuBaseItem.h; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h; sourceTree = "<group>"; }; | |
| 391 | + 3B0AA544D03796CB11223A4816268340 /* UIButton+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIButton+QMUI.m"; sourceTree = "<group>"; }; | |
| 392 | + 3BA2FD7BCF98BDC27A4FD4DA61820574 /* CNLiveEmptyView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveEmptyView.modulemap; sourceTree = "<group>"; }; | |
| 393 | + 3BFE6C0338FF14F776ED05B848791DEE /* UILabel+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+QMUI.h"; path = "QMUIKit/UIKitExtensions/UILabel+QMUI.h"; sourceTree = "<group>"; }; | |
| 394 | + 3CF0C172B9B16B8CADFB100C4ECC6B51 /* QMUINavigationTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationTitleView.h; path = QMUIKit/QMUIComponents/QMUINavigationTitleView.h; sourceTree = "<group>"; }; | |
| 395 | + 3D0850B301BEB3719C4A7D17FB2F40CA /* QMUILogger+QMUIConfigurationTemplate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QMUILogger+QMUIConfigurationTemplate.h"; path = "QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h"; sourceTree = "<group>"; }; | |
| 396 | + 3D26D12E88A89080C31024959A3E22C0 /* QMUIToastView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastView.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastView.m; sourceTree = "<group>"; }; | |
| 397 | + 3E0BC95E8F4CCB85D92C0CCE6DDB679B /* QMUIImagePickerCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerCollectionViewCell.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h; sourceTree = "<group>"; }; | |
| 398 | + 3ECEEF9B11989B420403CD531291E663 /* QMUINavigationBarScrollingAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationBarScrollingAnimator.m; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m; sourceTree = "<group>"; }; | |
| 399 | + 3F32A69897C7122B7ABED37FD7C7F782 /* QMUINavigationBarScrollingAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationBarScrollingAnimator.h; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h; sourceTree = "<group>"; }; | |
| 400 | + 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; }; | |
| 401 | + 4071783299036F262D37B316D0BA85C2 /* Pods-CNLiveEmptyView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveEmptyView_Example-acknowledgements.plist"; sourceTree = "<group>"; }; | |
| 402 | + 40D421279B582750E58EC942F4A0FCE7 /* CAAnimation+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAAnimation+QMUI.h"; path = "QMUIKit/QMUIComponents/CAAnimation+QMUI.h"; sourceTree = "<group>"; }; | |
| 403 | + 40DD84E4741483E717928ECD5BC7511A /* Pods_CNLiveEmptyView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveEmptyView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 404 | + 40DDC9D3E33431AC4E7EF33FF90E0D5B /* CNLiveEmptyView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveEmptyView-dummy.m"; sourceTree = "<group>"; }; | |
| 405 | + 418E55EF1A1D3B3789758B61DB0F07AE /* QMUIAssetsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAssetsManager.h; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h; sourceTree = "<group>"; }; | |
| 406 | + 422D99FD1AC04F522A413CF7ADF124CF /* NSParagraphStyle+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h"; sourceTree = "<group>"; }; | |
| 407 | + 42D89F1774203F4D0B5773774F363BA5 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Tests.debug.xcconfig"; sourceTree = "<group>"; }; | |
| 408 | + 45D954BDEAEE83503A9F797387447C9F /* Pods-CNLiveEmptyView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveEmptyView_Tests.modulemap"; sourceTree = "<group>"; }; | |
| 409 | + 461861850FA6A468417A888DF7E1165E /* UIInterface+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIInterface+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIInterface+QMUI.m"; sourceTree = "<group>"; }; | |
| 410 | + 4636F28001CE67ED9789F72ACB72D4DB /* QMUIEmptyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIEmptyView.h; path = QMUIKit/QMUIComponents/QMUIEmptyView.h; sourceTree = "<group>"; }; | |
| 411 | + 499EF5FE957D6D80D95323CB70730B6A /* CAAnimation+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAAnimation+QMUI.m"; path = "QMUIKit/QMUIComponents/CAAnimation+QMUI.m"; sourceTree = "<group>"; }; | |
| 412 | + 4A048ACF092059565289CF4641A22005 /* QMUINavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationController.m; path = QMUIKit/QMUIMainFrame/QMUINavigationController.m; sourceTree = "<group>"; }; | |
| 413 | + 4D850ABD913ABEBD0DDB6DF2CED64C70 /* QMUIToolbarButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToolbarButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m; sourceTree = "<group>"; }; | |
| 414 | + 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>"; }; | |
| 415 | + 4EAD16142E5A442F1D766F3A5D49BB0D /* QMUIHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIHelper.m; path = QMUIKit/QMUICore/QMUIHelper.m; sourceTree = "<group>"; }; | |
| 416 | + 4EBFB8D421D605AE00735306 /* CNLiveEmptyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNLiveEmptyView.h; sourceTree = "<group>"; }; | |
| 417 | + 4EBFB8D521D605AE00735306 /* CNLiveEmptyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CNLiveEmptyView.m; sourceTree = "<group>"; }; | |
| 418 | + 4F1F717D2A0F5A721EB82C4F5487E962 /* QMUISearchBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISearchBar.h; path = QMUIKit/QMUIComponents/QMUISearchBar.h; sourceTree = "<group>"; }; | |
| 419 | + 4F99588BE293DF0528770A7C21A81FDB /* QMUIGridView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIGridView.h; path = QMUIKit/QMUIComponents/QMUIGridView.h; sourceTree = "<group>"; }; | |
| 420 | + 4FBA584E8D69023B04F3E9C0EE13AC4B /* NSObject+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSObject+QMUI.h"; sourceTree = "<group>"; }; | |
| 421 | + 5079DDDCF8ED34E921770AEE593997D2 /* NSAttributedString+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h"; sourceTree = "<group>"; }; | |
| 422 | + 5197D6245F70C0122146EB6DFD6F879B /* QMUIImagePickerHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerHelper.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m; sourceTree = "<group>"; }; | |
| 423 | + 54573D1868828D0EEFD2C08FEC5D7E8F /* Pods-CNLiveEmptyView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveEmptyView_Tests-acknowledgements.plist"; sourceTree = "<group>"; }; | |
| 424 | + 54D7951DD02F645C9086235BB4A8D5AD /* NSURL+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSURL+QMUI.h"; sourceTree = "<group>"; }; | |
| 425 | + 55D52D939C034CAF431D2B076FF05EF6 /* QMUICommonViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICommonViewController.m; path = QMUIKit/QMUIMainFrame/QMUICommonViewController.m; sourceTree = "<group>"; }; | |
| 426 | + 58D17B68E99341DC48C2E81F03B96144 /* QMUIAlbumViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAlbumViewController.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h; sourceTree = "<group>"; }; | |
| 427 | + 597F06210A5C4839F3A01FB6657CF5FE /* Pods-CNLiveEmptyView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveEmptyView_Example-umbrella.h"; sourceTree = "<group>"; }; | |
| 428 | + 59D447ACD7C50558809EEB9011172DC5 /* QMUIGhostButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIGhostButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h; sourceTree = "<group>"; }; | |
| 429 | + 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; }; | |
| 430 | + 5B1725A6198F32713C08CBA45F6AC827 /* UIImage+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIImage+QMUI.m"; sourceTree = "<group>"; }; | |
| 431 | + 5CE3BE5E75CEA2213D2096157B25FF8B /* QMUIHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIHelper.h; path = QMUIKit/QMUICore/QMUIHelper.h; sourceTree = "<group>"; }; | |
| 432 | + 5F4F87282593B83C8B61D60308091E53 /* QMUIFloatLayoutView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIFloatLayoutView.m; path = QMUIKit/QMUIComponents/QMUIFloatLayoutView.m; sourceTree = "<group>"; }; | |
| 433 | + 5FBCA193824C0876896D38178A616F51 /* QMUIEmotionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIEmotionView.m; path = QMUIKit/QMUIComponents/QMUIEmotionView.m; sourceTree = "<group>"; }; | |
| 434 | + 5FD97020833AEF2873EC85EDE55FB578 /* QMUISegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISegmentedControl.m; path = QMUIKit/QMUIComponents/QMUISegmentedControl.m; 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 | + 6CF588ABE7C786E836D4DC0883854DE4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; }; | |
| 450 | + 6D62F035D90C15C26B9622E7CEB8CA71 /* QMUICellHeightKeyCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICellHeightKeyCache.h; path = QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h; sourceTree = "<group>"; }; | |
| 451 | + 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>"; }; | |
| 452 | + 6FDF4F1F4B6CBE02E67053FD29C9E39C /* QMUILogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogger.m; path = QMUIKit/QMUIComponents/Log/QMUILogger.m; sourceTree = "<group>"; }; | |
| 453 | + 71FA6DD888FEE0F4F39ADB0658BDE578 /* QMUINavigationBarScrollingSnapAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationBarScrollingSnapAnimator.h; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h; sourceTree = "<group>"; }; | |
| 454 | + 726AF970C89C9A961AFFF8CADDEDA82D /* QMUIToastBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastBackgroundView.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m; sourceTree = "<group>"; }; | |
| 455 | + 72B82B4BCFD16806FC20C290B3D2E699 /* QMUIAlbumViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAlbumViewController.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m; sourceTree = "<group>"; }; | |
| 456 | + 75549842FFA8F83CDFD8C4645AE95611 /* CALayer+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+QMUI.m"; path = "QMUIKit/UIKitExtensions/CALayer+QMUI.m"; sourceTree = "<group>"; }; | |
| 457 | + 75B55534A34D585299A7D9664A7C39CC /* QMUILabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILabel.h; path = QMUIKit/QMUIComponents/QMUILabel.h; sourceTree = "<group>"; }; | |
| 458 | + 76039CB566391A6BA6AEBF7D9734C789 /* QMUIKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIKeyboardManager.h; path = QMUIKit/QMUIComponents/QMUIKeyboardManager.h; sourceTree = "<group>"; }; | |
| 459 | + 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>"; }; | |
| 460 | + 76C5D0EE23FC21D542575412F69178A6 /* UIScrollView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIScrollView+QMUI.m"; sourceTree = "<group>"; }; | |
| 461 | + 76D9CCBA6B30ACC6F406823B0A2F29D4 /* QMUICellSizeKeyCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICellSizeKeyCache.h; path = QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h; sourceTree = "<group>"; }; | |
| 462 | + 77202FDF896E7023A466BBBE8D9EF99E /* NSObject+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSObject+QMUI.m"; sourceTree = "<group>"; }; | |
| 463 | + 79FAF550F440725BEA0445DB99D69A52 /* UIImageView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIImageView+QMUI.m"; sourceTree = "<group>"; }; | |
| 464 | + 7B46C337B4B39772F05CDABA373C58AD /* QMUIPopupContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupContainerView.m; path = QMUIKit/QMUIComponents/QMUIPopupContainerView.m; sourceTree = "<group>"; }; | |
| 465 | + 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>"; }; | |
| 466 | + 7EC56849B1C6696F083821703676DA32 /* QMUIImagePickerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerViewController.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m; sourceTree = "<group>"; }; | |
| 467 | + 824F70F3808B026C14632564A627F063 /* QMUITabBarViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITabBarViewController.h; path = QMUIKit/QMUIMainFrame/QMUITabBarViewController.h; sourceTree = "<group>"; }; | |
| 468 | + 82CC725A02E5604CC03C146A8F0EC9F6 /* Pods-CNLiveEmptyView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveEmptyView_Tests-umbrella.h"; sourceTree = "<group>"; }; | |
| 469 | + 8338124412898C0761E20CE178B779C7 /* CNLiveEmptyView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = CNLiveEmptyView.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; | |
| 470 | + 83E719ADE006E41FD830DEBECEB80C27 /* UIGestureRecognizer+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIGestureRecognizer+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h"; sourceTree = "<group>"; }; | |
| 471 | + 841D768E9E7FEF437D4846C1C31B5575 /* NSString+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSString+QMUI.m"; sourceTree = "<group>"; }; | |
| 472 | + 857B8006B85CBCA575684957635B0A10 /* QMUIScrollAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIScrollAnimator.m; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m; sourceTree = "<group>"; }; | |
| 473 | + 85932D487990FC072A12E9374F52C874 /* QMUIResources.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = QMUIResources.bundle; path = QMUIKit/QMUIResources/QMUIResources.bundle; sourceTree = "<group>"; }; | |
| 474 | + 867709A2535E18508D6CD97A8EF8994E /* QMUIToastContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIToastContentView.m; path = QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m; sourceTree = "<group>"; }; | |
| 475 | + 869C42510C54A3ADB853E5BF49F8E6A5 /* UIColor+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIColor+QMUI.h"; sourceTree = "<group>"; }; | |
| 476 | + 87DBF896A7B31025FE2C6DC39E67F190 /* QMUIFloatLayoutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIFloatLayoutView.h; path = QMUIKit/QMUIComponents/QMUIFloatLayoutView.h; sourceTree = "<group>"; }; | |
| 477 | + 8943F79BF4D4A53FFFE3F0050916BCF6 /* QMUIKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QMUIKit-umbrella.h"; sourceTree = "<group>"; }; | |
| 478 | + 8AD23780728557F602277DDEF5C2921B /* UIActivityIndicatorView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m"; sourceTree = "<group>"; }; | |
| 479 | + 8B36D00AD94C22E70156A190BCF04B5E /* UINavigationController+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+QMUI.h"; path = "QMUIKit/UIKitExtensions/UINavigationController+QMUI.h"; sourceTree = "<group>"; }; | |
| 480 | + 8CC15DED9DE9A76C0D786048F4BA06D9 /* Pods-CNLiveEmptyView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Tests-resources.sh"; sourceTree = "<group>"; }; | |
| 481 | + 8E2981C23463A0E6905599C78C8B9A99 /* QMUIToastAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastAnimator.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h; sourceTree = "<group>"; }; | |
| 482 | + 8E7AAFCD5D0A3D30E851278F8B487DE3 /* UISearchBar+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISearchBar+QMUI.m"; path = "QMUIKit/UIKitExtensions/UISearchBar+QMUI.m"; sourceTree = "<group>"; }; | |
| 483 | + 8E952A4B8FB69C74700E00F99EDDEF51 /* QMUIModalPresentationViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIModalPresentationViewController.h; path = QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h; sourceTree = "<group>"; }; | |
| 484 | + 8EAB1559AE486653A691314C4547EB1C /* QMUITableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableView.h; path = QMUIKit/QMUIComponents/QMUITableView.h; sourceTree = "<group>"; }; | |
| 485 | + 9252BCC60CA50B365DDCC86BBD5BE970 /* QMUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITextField.m; path = QMUIKit/QMUIComponents/QMUITextField.m; sourceTree = "<group>"; }; | |
| 486 | + 93253C7854DAE2514FAB20DD80CF745A /* QMUIEmotionInputManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIEmotionInputManager.m; path = QMUIKit/QMUIComponents/QMUIEmotionInputManager.m; sourceTree = "<group>"; }; | |
| 487 | + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; | |
| 488 | + 945A54E818CAE0C47232E4C381A7687E /* NSURL+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSURL+QMUI.m"; sourceTree = "<group>"; }; | |
| 489 | + 946F39A3036111880BAED7E5EF15FA33 /* QMUIRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIRuntime.m; path = QMUIKit/QMUICore/QMUIRuntime.m; sourceTree = "<group>"; }; | |
| 490 | + 9508DF866BFC31906CF430A49E544810 /* QMUIKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = QMUIKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 491 | + 95B8BA450A02AE3B1E5624D77632AB0F /* QMUIPopupMenuBaseItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupMenuBaseItem.m; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m; sourceTree = "<group>"; }; | |
| 492 | + 967AB00EA7E3BA4F62B4C7085A4711CF /* QMUIGhostButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIGhostButton.m; path = QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m; sourceTree = "<group>"; }; | |
| 493 | + 99F2C0AE36FF8A6FBD0F4D3332F76206 /* Pods-CNLiveEmptyView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveEmptyView_Tests-dummy.m"; sourceTree = "<group>"; }; | |
| 494 | + 9AC4C7536C6A522197B783CAE57FBED3 /* QMUIPopupMenuView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIPopupMenuView.m; path = QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m; sourceTree = "<group>"; }; | |
| 495 | + 9B138AD96E6F55D5CEE18B43FFEB0E09 /* UIFont+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIFont+QMUI.m"; sourceTree = "<group>"; }; | |
| 496 | + 9CF3F9562DD8C287DC6D2542A34FC724 /* QMUIZoomImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIZoomImageView.m; path = QMUIKit/QMUIComponents/QMUIZoomImageView.m; sourceTree = "<group>"; }; | |
| 497 | + 9D3622F9AD5484F18ABFF1B11583736C /* CNLiveEmptyView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CNLiveEmptyView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 498 | + 9DCAC689B16A852521E02B74F8B2BE32 /* QMUIModalPresentationViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIModalPresentationViewController.m; path = QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m; sourceTree = "<group>"; }; | |
| 499 | + 9DCC6A4BF711108367C04F5DE98D67FA /* QMUITips.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITips.h; path = QMUIKit/QMUIComponents/QMUITips.h; sourceTree = "<group>"; }; | |
| 500 | + 9DD3C3E68F130B422DF3DACF69421296 /* UITextView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITextView+QMUI.h"; sourceTree = "<group>"; }; | |
| 501 | + 9E5F415A8486BD8FFF6D2BEDDD5AF0CD /* NSNumber+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNumber+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSNumber+QMUI.h"; sourceTree = "<group>"; }; | |
| 502 | + 9E71CD44B6575C425DF7CD11FFA361D8 /* QMUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIKit.h; path = QMUIKit/QMUIKit.h; sourceTree = "<group>"; }; | |
| 503 | + 9FFFF25B06592EA5C7EFA48A1258266B /* QMUIImagePreviewView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePreviewView.m; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m; sourceTree = "<group>"; }; | |
| 504 | + A045DD906F8DDC43AA5B20073E0C4FB8 /* QMUISearchController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISearchController.m; path = QMUIKit/QMUIComponents/QMUISearchController.m; sourceTree = "<group>"; }; | |
| 505 | + A108628037348306FAD8265EEE6A0EDF /* UITabBar+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBar+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITabBar+QMUI.h"; sourceTree = "<group>"; }; | |
| 506 | + A1B02F3630DD5A74CFAFE7F1557DF971 /* QMUITestView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITestView.h; path = QMUIKit/QMUIComponents/QMUITestView.h; sourceTree = "<group>"; }; | |
| 507 | + 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>"; }; | |
| 508 | + A1DD097D0D9BD2343FC6C1485A2D7C4B /* QMUIKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QMUIKit-prefix.pch"; sourceTree = "<group>"; }; | |
| 509 | + A204DB48B7DC8BEF2C40984796A23B85 /* Pods_CNLiveEmptyView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveEmptyView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | |
| 510 | + A2AE6157F70474DE2C8A6C5972AE70DC /* UITextField+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITextField+QMUI.h"; sourceTree = "<group>"; }; | |
| 511 | + A396EC8BE89FD67361034654F7CFBB7F /* QMUISegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUISegmentedControl.h; path = QMUIKit/QMUIComponents/QMUISegmentedControl.h; sourceTree = "<group>"; }; | |
| 512 | + A41171C1FAABAFEB8B002334683DDC02 /* QMUILogger+QMUIConfigurationTemplate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "QMUILogger+QMUIConfigurationTemplate.m"; path = "QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m"; sourceTree = "<group>"; }; | |
| 513 | + A44B5F9CD4EB82148EAD99B391AECEAE /* UICollectionView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UICollectionView+QMUI.h"; sourceTree = "<group>"; }; | |
| 514 | + A4B2C5041D6D79465BB12E2C1E36E139 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 515 | + A63D3844E87808AA9D24689B6B47B062 /* QMUIPopupContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIPopupContainerView.h; path = QMUIKit/QMUIComponents/QMUIPopupContainerView.h; sourceTree = "<group>"; }; | |
| 516 | + A91C8E9BF5DD9936E49ADC2A4DC18985 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; }; | |
| 517 | + A9D49056A96BBFFB26BA7E5221EC613C /* NSCharacterSet+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCharacterSet+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m"; sourceTree = "<group>"; }; | |
| 518 | + 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>"; }; | |
| 519 | + AB92BF234C24893E40E87322812BE854 /* QMUIVisualEffectView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIVisualEffectView.m; path = QMUIKit/QMUIComponents/QMUIVisualEffectView.m; sourceTree = "<group>"; }; | |
| 520 | + ACDE20E4892A38F41F0E4F9CF62A11DC /* QMUITableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITableViewCell.m; path = QMUIKit/QMUIComponents/QMUITableViewCell.m; sourceTree = "<group>"; }; | |
| 521 | + AD0EEC5A4431089D9628CC12CE116626 /* QMUIImagePickerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerHelper.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h; sourceTree = "<group>"; }; | |
| 522 | + AE749EADDDFC3C0BCB54B92B97DC9A3E /* NSString+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QMUI.h"; path = "QMUIKit/UIKitExtensions/NSString+QMUI.h"; sourceTree = "<group>"; }; | |
| 523 | + B0657C343E34E5DD860733CC4F73A3B6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 524 | + B1A5A2C71F414E5AA8C1C2CD4D56985F /* QMUISlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUISlider.m; path = QMUIKit/QMUIComponents/QMUISlider.m; sourceTree = "<group>"; }; | |
| 525 | + B1E16978D401CA5628C96E21D0DA9BD7 /* QMUITableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITableView.m; path = QMUIKit/QMUIComponents/QMUITableView.m; sourceTree = "<group>"; }; | |
| 526 | + 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>"; }; | |
| 527 | + B26FF42D767BB2E6A993A94EB30DBC29 /* UITextField+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITextField+QMUI.m"; sourceTree = "<group>"; }; | |
| 528 | + B45881E7D71F67C96FF4FA44A801D3C9 /* Pods-CNLiveEmptyView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveEmptyView_Example-resources.sh"; sourceTree = "<group>"; }; | |
| 529 | + B486D035DFA15E971FCBB939A382D549 /* QMUIAsset.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAsset.m; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m; sourceTree = "<group>"; }; | |
| 530 | + B4C89055ECCB57B3A56318F598C5CA28 /* QMUIImagePreviewViewTransitionAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePreviewViewTransitionAnimator.m; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m; sourceTree = "<group>"; }; | |
| 531 | + B4D8750A5FCB1ED4F34F50B194B17B7F /* QMUIConfigurationMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIConfigurationMacros.h; path = QMUIKit/QMUICore/QMUIConfigurationMacros.h; sourceTree = "<group>"; }; | |
| 532 | + B5C56617AB75CCE01118C8128FDF1F64 /* QMUIImagePickerCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePickerCollectionViewCell.m; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m; sourceTree = "<group>"; }; | |
| 533 | + B5D064B65D40155BD70B64BB388B1ACF /* QMUIStaticTableViewCellData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIStaticTableViewCellData.m; path = QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m; sourceTree = "<group>"; }; | |
| 534 | + B65B0B8E776B08BD1DE850C481CABC96 /* UIButton+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIButton+QMUI.h"; sourceTree = "<group>"; }; | |
| 535 | + B69590567331243D21345E880160327D /* UINavigationController+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+QMUI.m"; path = "QMUIKit/UIKitExtensions/UINavigationController+QMUI.m"; sourceTree = "<group>"; }; | |
| 536 | + B868D5A4F5C7283565D2FCCFD4DA168E /* UITableViewCell+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableViewCell+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h"; sourceTree = "<group>"; }; | |
| 537 | + B8BD968040F7A09D4EBEE2F20A9F39CC /* QMUILinkButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILinkButton.h; path = QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h; sourceTree = "<group>"; }; | |
| 538 | + BA241FE0BABD76043ED1E4E0AE066D41 /* UIScrollView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIScrollView+QMUI.h"; sourceTree = "<group>"; }; | |
| 539 | + BA7F2D7D88AB86A72FDA6D76DB4B96F5 /* UIInterface+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIInterface+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIInterface+QMUI.h"; sourceTree = "<group>"; }; | |
| 540 | + BCC6F084D6F34C249C680A3A0B1449A8 /* UIView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIView+QMUI.h"; sourceTree = "<group>"; }; | |
| 541 | + 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>"; }; | |
| 542 | + BE6092B2EA6FB8EA45923D89A94F3BFC /* Pods-CNLiveEmptyView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveEmptyView_Example.debug.xcconfig"; sourceTree = "<group>"; }; | |
| 543 | + BECC15D823DCF17DFB168444DD512D83 /* QMUIToastBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIToastBackgroundView.h; path = QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h; sourceTree = "<group>"; }; | |
| 544 | + C06D0BC222CE3E61E465D76A20EF7812 /* NSAttributedString+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m"; sourceTree = "<group>"; }; | |
| 545 | + C0B8E9C8A57CB3B34447C7AFF7EE44F3 /* QMUINavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUINavigationController.h; path = QMUIKit/QMUIMainFrame/QMUINavigationController.h; sourceTree = "<group>"; }; | |
| 546 | + C0E295F9CA326954427EB0E5B99C32C9 /* QMUITableViewProtocols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITableViewProtocols.h; path = QMUIKit/QMUIComponents/QMUITableViewProtocols.h; sourceTree = "<group>"; }; | |
| 547 | + C0FEFE801A14A45382A8A00A81443E19 /* QMUITabBarViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITabBarViewController.m; path = QMUIKit/QMUIMainFrame/QMUITabBarViewController.m; sourceTree = "<group>"; }; | |
| 548 | + C136D7A96F6AEC6E04F9D7BB36CEF407 /* QMUITestView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITestView.m; path = QMUIKit/QMUIComponents/QMUITestView.m; sourceTree = "<group>"; }; | |
| 549 | + C15442CE05336642565CB6E148B01488 /* QMUIImagePreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIImagePreviewViewController.m; path = QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m; sourceTree = "<group>"; }; | |
| 550 | + 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>"; }; | |
| 551 | + C43A7E5C626923A12C6FE74C0DF6B8F4 /* QMUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUITextField.h; path = QMUIKit/QMUIComponents/QMUITextField.h; sourceTree = "<group>"; }; | |
| 552 | + C4A122ADE1B28F4931A5D1F00EA44BBF /* QMUINavigationBarScrollingSnapAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationBarScrollingSnapAnimator.m; path = QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m; sourceTree = "<group>"; }; | |
| 553 | + C61875C1C7CCD3C12C13552D6085CDC0 /* QMUIKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QMUIKit-dummy.m"; sourceTree = "<group>"; }; | |
| 554 | + C885FA9876A632DBC6894FA1F7DF3FF5 /* QMUIMultipleDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIMultipleDelegates.h; path = QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h; sourceTree = "<group>"; }; | |
| 555 | + C9398ABF09E8B8746F6F313652317810 /* QMUILabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILabel.m; path = QMUIKit/QMUIComponents/QMUILabel.m; sourceTree = "<group>"; }; | |
| 556 | + CA8313B026D354228B21153842B59A48 /* QMUIAssetsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIAssetsManager.m; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m; sourceTree = "<group>"; }; | |
| 557 | + CAED37508C776E749D8B1A0AC673D1CF /* QMUICommonDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICommonDefines.h; path = QMUIKit/QMUICore/QMUICommonDefines.h; sourceTree = "<group>"; }; | |
| 558 | + CBEFBD1348A991F10A4FAD4AA664A253 /* QMUILogNameManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUILogNameManager.h; path = QMUIKit/QMUIComponents/Log/QMUILogNameManager.h; sourceTree = "<group>"; }; | |
| 559 | + CBF70F64119EA11EBFE453FC82669886 /* QMUITableViewHeaderFooterView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUITableViewHeaderFooterView.m; path = QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m; sourceTree = "<group>"; }; | |
| 560 | + 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>"; }; | |
| 561 | + CEAB45CBC99EEAB4F5A994E6581CD23F /* UITabBarItem+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarItem+QMUI.h"; path = "QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h"; sourceTree = "<group>"; }; | |
| 562 | + CF884EDC11B438C15DC32E6103372FA5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 563 | + D2F4DCE773B8DDE5C085E6E4708CE3F9 /* QMUIImagePickerPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIImagePickerPreviewViewController.h; path = QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h; sourceTree = "<group>"; }; | |
| 564 | + D2F7A119D066B4550FC5E42E400F8862 /* UIFont+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIFont+QMUI.h"; 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 | + 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>"; }; | |
| 579 | + DDDA9F16724F7DF41E399F7936141A26 /* QMUIOrderedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIOrderedDictionary.h; path = QMUIKit/QMUIComponents/QMUIOrderedDictionary.h; sourceTree = "<group>"; }; | |
| 580 | + DEC8BDE0C3092C803525B946DB8576CC /* QMUIMoreOperationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIMoreOperationController.m; path = QMUIKit/QMUIComponents/QMUIMoreOperationController.m; sourceTree = "<group>"; }; | |
| 581 | + DF8698EC7AE5965D0103956446E512B6 /* UINavigationBar+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+QMUI.h"; path = "QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h"; sourceTree = "<group>"; }; | |
| 582 | + E04880C0C33071DE92510CF3E4219816 /* QMUINavigationTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUINavigationTitleView.m; path = QMUIKit/QMUIComponents/QMUINavigationTitleView.m; sourceTree = "<group>"; }; | |
| 583 | + E191ACCD195AF9FEB074F6CB45C1269D /* QMUIAssetsGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIAssetsGroup.h; path = QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h; sourceTree = "<group>"; }; | |
| 584 | + E26E328980D74476C4F336AD59C8DEDF /* QMUIKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIKeyboardManager.m; path = QMUIKit/QMUIComponents/QMUIKeyboardManager.m; sourceTree = "<group>"; }; | |
| 585 | + E2977DDFBEF55ED13F4AF294B294CC36 /* QMUICollectionViewPagingLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICollectionViewPagingLayout.h; path = QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h; sourceTree = "<group>"; }; | |
| 586 | + 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>"; }; | |
| 587 | + E54E4F49EB2413C6A87A157A5CBC845B /* QMUIConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIConfiguration.m; path = QMUIKit/QMUICore/QMUIConfiguration.m; sourceTree = "<group>"; }; | |
| 588 | + 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; }; | |
| 589 | + E626E9E36A29D01E46FBF42A7AF154E5 /* QMUICellHeightCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUICellHeightCache.h; path = QMUIKit/QMUIComponents/QMUICellHeightCache.h; sourceTree = "<group>"; }; | |
| 590 | + E6A0790F8B91ED97495544F4282217E4 /* UITableView+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+QMUI.m"; path = "QMUIKit/UIKitExtensions/UITableView+QMUI.m"; sourceTree = "<group>"; }; | |
| 591 | + E73F9A40421DD79E40C5B3BED5E061CF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |
| 592 | + E86385A72F3BE692AC4018DB65885A7B /* UIWindow+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIWindow+QMUI.m"; sourceTree = "<group>"; }; | |
| 593 | + E9AC5617F0EB54AE3565859FC77D488F /* CNLiveEmptyView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveEmptyView.xcconfig; 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 | + F20048468DC72BD7C548716DEB62B748 /* CNLiveEmptyView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveEmptyView-umbrella.h"; sourceTree = "<group>"; }; | |
| 602 | + F3B2BAD0624686F245F57504F8EFF273 /* QMUICellSizeKeyCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUICellSizeKeyCache.m; path = QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m; sourceTree = "<group>"; }; | |
| 603 | + F4F4B66BD0FAE2F4269835611D719976 /* QMUIGridView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUIGridView.m; path = QMUIKit/QMUIComponents/QMUIGridView.m; sourceTree = "<group>"; }; | |
| 604 | + F55C4429DF1417CDE5C08227ECFD97D2 /* UIActivityIndicatorView+QMUI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+QMUI.h"; path = "QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h"; sourceTree = "<group>"; }; | |
| 605 | + F6F657C9BD0220BD743C922AF5B222E9 /* NSPointerArray+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSPointerArray+QMUI.m"; path = "QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m"; sourceTree = "<group>"; }; | |
| 606 | + FA3D603DFFA65ADC3AB2E5BABB74829F /* QMUILogNameManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QMUILogNameManager.m; path = QMUIKit/QMUIComponents/Log/QMUILogNameManager.m; sourceTree = "<group>"; }; | |
| 607 | + FAA9729534672F275FC6765EC39073BF /* QMUIMoreOperationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QMUIMoreOperationController.h; path = QMUIKit/QMUIComponents/QMUIMoreOperationController.h; sourceTree = "<group>"; }; | |
| 608 | + FB68B2AFC6810F003EA15FB5FF704DE0 /* UIColor+QMUI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+QMUI.m"; path = "QMUIKit/UIKitExtensions/UIColor+QMUI.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 | + 7F04912144E20CF64C0E7431BF39CC3B /* Frameworks */ = { | |
| 625 | + isa = PBXFrameworksBuildPhase; | |
| 626 | + buildActionMask = 2147483647; | |
| 627 | + files = ( | |
| 628 | + 52357565F4255C5990E16732E92C0431 /* Foundation.framework in Frameworks */, | |
| 629 | + 2E686A382214A0FE265EA152FD4FEDF5 /* QMUIKit.framework in Frameworks */, | |
| 630 | + 36101C4EB31BD79F40FA93B6834BFD9A /* UIKit.framework in Frameworks */, | |
| 631 | + ); | |
| 632 | + runOnlyForDeploymentPostprocessing = 0; | |
| 633 | + }; | |
| 634 | + A2FC4013BF043B705DCF81D0B1C5A370 /* Frameworks */ = { | |
| 635 | + isa = PBXFrameworksBuildPhase; | |
| 636 | + buildActionMask = 2147483647; | |
| 637 | + files = ( | |
| 638 | + 041D318B110F9AC41214BE407744F3DC /* Foundation.framework in Frameworks */, | |
| 639 | + ); | |
| 640 | + runOnlyForDeploymentPostprocessing = 0; | |
| 641 | + }; | |
| 642 | + A64EE208B69BBC46BC9E4B6BD4E9D4AB /* Frameworks */ = { | |
| 643 | + isa = PBXFrameworksBuildPhase; | |
| 644 | + buildActionMask = 2147483647; | |
| 645 | + files = ( | |
| 646 | + 7455D5D1CAD55EA3E5BBB4D935D14868 /* CoreGraphics.framework in Frameworks */, | |
| 647 | + 0AF799C3059958322F1B8ABE12FF01FC /* Foundation.framework in Frameworks */, | |
| 648 | + 6854067101CF4238B76491883C5CDA6B /* Photos.framework in Frameworks */, | |
| 649 | + 5C0CFAACB3EF5ABD1C5599A3F6B94BED /* 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 | + 1C4FEE40DEFC07DFD4AD2374BDFA5961 /* QMUIEmptyView */ = { | |
| 706 | + isa = PBXGroup; | |
| 707 | + children = ( | |
| 708 | + 4636F28001CE67ED9789F72ACB72D4DB /* QMUIEmptyView.h */, | |
| 709 | + 3588B9E21B3E79011ABBE2A871A9D2AD /* QMUIEmptyView.m */, | |
| 710 | + ); | |
| 711 | + name = QMUIEmptyView; | |
| 712 | + sourceTree = "<group>"; | |
| 713 | + }; | |
| 714 | + 1D0154CA16983AB25F8F2E8B00C8E5D7 /* Support Files */ = { | |
| 715 | + isa = PBXGroup; | |
| 716 | + children = ( | |
| 717 | + 3BA2FD7BCF98BDC27A4FD4DA61820574 /* CNLiveEmptyView.modulemap */, | |
| 718 | + E9AC5617F0EB54AE3565859FC77D488F /* CNLiveEmptyView.xcconfig */, | |
| 719 | + 40DDC9D3E33431AC4E7EF33FF90E0D5B /* CNLiveEmptyView-dummy.m */, | |
| 720 | + 1EDE8025F00B414FD396A4D95BC87B79 /* CNLiveEmptyView-prefix.pch */, | |
| 721 | + F20048468DC72BD7C548716DEB62B748 /* CNLiveEmptyView-umbrella.h */, | |
| 722 | + B0657C343E34E5DD860733CC4F73A3B6 /* Info.plist */, | |
| 723 | + ); | |
| 724 | + name = "Support Files"; | |
| 725 | + path = "Example/Pods/Target Support Files/CNLiveEmptyView"; | |
| 726 | + sourceTree = "<group>"; | |
| 727 | + }; | |
| 728 | + 1FEC0F572FD5AF79CFC1F7A3B09E6802 /* Products */ = { | |
| 729 | + isa = PBXGroup; | |
| 730 | + children = ( | |
| 731 | + 9D3622F9AD5484F18ABFF1B11583736C /* CNLiveEmptyView.framework */, | |
| 732 | + A204DB48B7DC8BEF2C40984796A23B85 /* Pods_CNLiveEmptyView_Example.framework */, | |
| 733 | + 40DD84E4741483E717928ECD5BC7511A /* Pods_CNLiveEmptyView_Tests.framework */, | |
| 734 | + 3430509A8B18E41D42C8E93B541332EC /* QMUIKit.framework */, | |
| 735 | + ); | |
| 736 | + name = Products; | |
| 737 | + sourceTree = "<group>"; | |
| 738 | + }; | |
| 739 | + 2DEF541115245127BC73928F440BD281 /* QMUICollectionViewPagingLayout */ = { | |
| 740 | + isa = PBXGroup; | |
| 741 | + children = ( | |
| 742 | + E2977DDFBEF55ED13F4AF294B294CC36 /* QMUICollectionViewPagingLayout.h */, | |
| 743 | + 1952CEE8CACB06D5BB473881DA37508C /* QMUICollectionViewPagingLayout.m */, | |
| 744 | + ); | |
| 745 | + name = QMUICollectionViewPagingLayout; | |
| 746 | + sourceTree = "<group>"; | |
| 747 | + }; | |
| 748 | + 2F49AC64DF9C8C897962F47DE5A10B3F /* QMUILabel */ = { | |
| 749 | + isa = PBXGroup; | |
| 750 | + children = ( | |
| 751 | + 75B55534A34D585299A7D9664A7C39CC /* QMUILabel.h */, | |
| 752 | + C9398ABF09E8B8746F6F313652317810 /* QMUILabel.m */, | |
| 753 | + ); | |
| 754 | + name = QMUILabel; | |
| 755 | + sourceTree = "<group>"; | |
| 756 | + }; | |
| 757 | + 305B5FF1BB831116E25BA7C8796EFD46 /* NavigationBarTransition */ = { | |
| 758 | + isa = PBXGroup; | |
| 759 | + children = ( | |
| 760 | + 6EC3F3AC95A6649895997EFE7DBB8A15 /* UINavigationBar+Transition.h */, | |
| 761 | + 7E99114CB3E2D765D08B090D9D995059 /* UINavigationBar+Transition.m */, | |
| 762 | + 0795C145C01D191967884F859BD43A9D /* UINavigationController+NavigationBarTransition.h */, | |
| 763 | + 2DE6E1E6FCDCFB243945ADA92A0F6AB5 /* UINavigationController+NavigationBarTransition.m */, | |
| 764 | + ); | |
| 765 | + name = NavigationBarTransition; | |
| 766 | + sourceTree = "<group>"; | |
| 767 | + }; | |
| 768 | + 30A2D91A73E10D8831CBB613F26C693E /* QMUISearchController */ = { | |
| 769 | + isa = PBXGroup; | |
| 770 | + children = ( | |
| 771 | + 327C8E15776D10CC335EE39D482F0B93 /* QMUISearchController.h */, | |
| 772 | + A045DD906F8DDC43AA5B20073E0C4FB8 /* QMUISearchController.m */, | |
| 773 | + ); | |
| 774 | + name = QMUISearchController; | |
| 775 | + sourceTree = "<group>"; | |
| 776 | + }; | |
| 777 | + 3172EB6D3148AE73EB93A416C3E2F02B /* QMUINavigationButton */ = { | |
| 778 | + isa = PBXGroup; | |
| 779 | + children = ( | |
| 780 | + 639E0FFC9470B61321B1DA3C8531BE68 /* QMUINavigationButton.h */, | |
| 781 | + 283F50BE7F4B50C41EEA03E6BE9DE8B8 /* QMUINavigationButton.m */, | |
| 782 | + ); | |
| 783 | + name = QMUINavigationButton; | |
| 784 | + sourceTree = "<group>"; | |
| 785 | + }; | |
| 786 | + 33C159FA30B7045D8C1178B524186BB3 /* QMUIPieProgressView */ = { | |
| 787 | + isa = PBXGroup; | |
| 788 | + children = ( | |
| 789 | + FF6C6D629E4E1A8B1398CEE675C71C62 /* QMUIPieProgressView.h */, | |
| 790 | + 1932056E130DE52DD4D2C1FFEFF6488E /* QMUIPieProgressView.m */, | |
| 791 | + ); | |
| 792 | + name = QMUIPieProgressView; | |
| 793 | + sourceTree = "<group>"; | |
| 794 | + }; | |
| 795 | + 37E650697568913C0DC6FEC45E92F519 /* QMUILinkButton */ = { | |
| 796 | + isa = PBXGroup; | |
| 797 | + children = ( | |
| 798 | + B8BD968040F7A09D4EBEE2F20A9F39CC /* QMUILinkButton.h */, | |
| 799 | + 39CA4E6D9642C1EA36A3E91C9A6E0472 /* QMUILinkButton.m */, | |
| 800 | + ); | |
| 801 | + name = QMUILinkButton; | |
| 802 | + sourceTree = "<group>"; | |
| 803 | + }; | |
| 804 | + 39A8C1C65B7860FA3C8DBF80ECC43931 /* QMUICellHeightCache */ = { | |
| 805 | + isa = PBXGroup; | |
| 806 | + children = ( | |
| 807 | + E626E9E36A29D01E46FBF42A7AF154E5 /* QMUICellHeightCache.h */, | |
| 808 | + EC65E8D340A5A5B77C907E2793E67762 /* QMUICellHeightCache.m */, | |
| 809 | + ); | |
| 810 | + name = QMUICellHeightCache; | |
| 811 | + sourceTree = "<group>"; | |
| 812 | + }; | |
| 813 | + 3AAFAC8300D4258CCD2D13FC97FB58A7 /* QMUIMainFrame */ = { | |
| 814 | + isa = PBXGroup; | |
| 815 | + children = ( | |
| 816 | + 1F61563A08E28F519DB973AE802F57CB /* QMUICommonTableViewController.h */, | |
| 817 | + 00838B8220BC4A9F6921DEDEF7C87BB5 /* QMUICommonTableViewController.m */, | |
| 818 | + FD366EEA95B02272042009FD3216960C /* QMUICommonViewController.h */, | |
| 819 | + 55D52D939C034CAF431D2B076FF05EF6 /* QMUICommonViewController.m */, | |
| 820 | + C0B8E9C8A57CB3B34447C7AFF7EE44F3 /* QMUINavigationController.h */, | |
| 821 | + 4A048ACF092059565289CF4641A22005 /* QMUINavigationController.m */, | |
| 822 | + 824F70F3808B026C14632564A627F063 /* QMUITabBarViewController.h */, | |
| 823 | + C0FEFE801A14A45382A8A00A81443E19 /* QMUITabBarViewController.m */, | |
| 824 | + ); | |
| 825 | + name = QMUIMainFrame; | |
| 826 | + sourceTree = "<group>"; | |
| 827 | + }; | |
| 828 | + 4557CA5CC2304E613A1AAC45FDC896C8 /* iOS */ = { | |
| 829 | + isa = PBXGroup; | |
| 830 | + children = ( | |
| 831 | + 40260A64A188F91D6A6381DF6BFCA26D /* CoreGraphics.framework */, | |
| 832 | + E5A4D8A37F6DBD42E1FA4954EEBD3F7B /* Foundation.framework */, | |
| 833 | + 5AEEFD6E48F6EC9A483894FD94DE6BB7 /* Photos.framework */, | |
| 834 | + 01CFDAA967B2756498E77B4330F718A2 /* UIKit.framework */, | |
| 835 | + ); | |
| 836 | + name = iOS; | |
| 837 | + sourceTree = "<group>"; | |
| 838 | + }; | |
| 839 | + 46A30868B7E7606987E31960901814A5 /* Development Pods */ = { | |
| 840 | + isa = PBXGroup; | |
| 841 | + children = ( | |
| 842 | + 4D6318A99F6BCFC857BD7975BA967C53 /* CNLiveEmptyView */, | |
| 843 | + ); | |
| 844 | + name = "Development Pods"; | |
| 845 | + sourceTree = "<group>"; | |
| 846 | + }; | |
| 847 | + 47F8F635478F0533B2C22914C69945F6 /* QMUIMoreOperationController */ = { | |
| 848 | + isa = PBXGroup; | |
| 849 | + children = ( | |
| 850 | + FAA9729534672F275FC6765EC39073BF /* QMUIMoreOperationController.h */, | |
| 851 | + DEC8BDE0C3092C803525B946DB8576CC /* QMUIMoreOperationController.m */, | |
| 852 | + ); | |
| 853 | + name = QMUIMoreOperationController; | |
| 854 | + sourceTree = "<group>"; | |
| 855 | + }; | |
| 856 | + 480610B2264E6D38820777EAA13C6D9A /* QMUIImagePickerLibrary */ = { | |
| 857 | + isa = PBXGroup; | |
| 858 | + children = ( | |
| 859 | + 58D17B68E99341DC48C2E81F03B96144 /* QMUIAlbumViewController.h */, | |
| 860 | + 72B82B4BCFD16806FC20C290B3D2E699 /* QMUIAlbumViewController.m */, | |
| 861 | + 3E0BC95E8F4CCB85D92C0CCE6DDB679B /* QMUIImagePickerCollectionViewCell.h */, | |
| 862 | + B5C56617AB75CCE01118C8128FDF1F64 /* QMUIImagePickerCollectionViewCell.m */, | |
| 863 | + AD0EEC5A4431089D9628CC12CE116626 /* QMUIImagePickerHelper.h */, | |
| 864 | + 5197D6245F70C0122146EB6DFD6F879B /* QMUIImagePickerHelper.m */, | |
| 865 | + D2F4DCE773B8DDE5C085E6E4708CE3F9 /* QMUIImagePickerPreviewViewController.h */, | |
| 866 | + DD02F0ED9678FC6298B2F20AB2D76063 /* QMUIImagePickerPreviewViewController.m */, | |
| 867 | + 161B95BB46BE053A3A86B78C869B9837 /* QMUIImagePickerViewController.h */, | |
| 868 | + 7EC56849B1C6696F083821703676DA32 /* QMUIImagePickerViewController.m */, | |
| 869 | + ); | |
| 870 | + name = QMUIImagePickerLibrary; | |
| 871 | + sourceTree = "<group>"; | |
| 872 | + }; | |
| 873 | + 481532306AED456E3C7C557E62D58BFA /* QMUITextField */ = { | |
| 874 | + isa = PBXGroup; | |
| 875 | + children = ( | |
| 876 | + C43A7E5C626923A12C6FE74C0DF6B8F4 /* QMUITextField.h */, | |
| 877 | + 9252BCC60CA50B365DDCC86BBD5BE970 /* QMUITextField.m */, | |
| 878 | + ); | |
| 879 | + name = QMUITextField; | |
| 880 | + sourceTree = "<group>"; | |
| 881 | + }; | |
| 882 | + 4A94C8296CE38CB53BAC12B0D8E1EA9A /* QMUIKeyboardManager */ = { | |
| 883 | + isa = PBXGroup; | |
| 884 | + children = ( | |
| 885 | + 76039CB566391A6BA6AEBF7D9734C789 /* QMUIKeyboardManager.h */, | |
| 886 | + E26E328980D74476C4F336AD59C8DEDF /* QMUIKeyboardManager.m */, | |
| 887 | + ); | |
| 888 | + name = QMUIKeyboardManager; | |
| 889 | + sourceTree = "<group>"; | |
| 890 | + }; | |
| 891 | + 4C8E490AF8CD5461A29E5BB4114F502F /* QMUIWeakObjectContainer */ = { | |
| 892 | + isa = PBXGroup; | |
| 893 | + children = ( | |
| 894 | + 0ABC0D68AF99F730F1536B7F5A57C071 /* QMUIWeakObjectContainer.h */, | |
| 895 | + FE6C5B6806715C91E5F7F9EC9C69F532 /* QMUIWeakObjectContainer.m */, | |
| 896 | + ); | |
| 897 | + name = QMUIWeakObjectContainer; | |
| 898 | + sourceTree = "<group>"; | |
| 899 | + }; | |
| 900 | + 4D6318A99F6BCFC857BD7975BA967C53 /* CNLiveEmptyView */ = { | |
| 901 | + isa = PBXGroup; | |
| 902 | + children = ( | |
| 903 | + 4EBFB8CD21D6056500735306 /* CNLiveEmptyView */, | |
| 904 | + A69EE42EC7B284F1601C77077453F738 /* Pod */, | |
| 905 | + 1D0154CA16983AB25F8F2E8B00C8E5D7 /* Support Files */, | |
| 906 | + ); | |
| 907 | + name = CNLiveEmptyView; | |
| 908 | + path = ../..; | |
| 909 | + sourceTree = "<group>"; | |
| 910 | + }; | |
| 911 | + 4EBFB8CD21D6056500735306 /* CNLiveEmptyView */ = { | |
| 912 | + isa = PBXGroup; | |
| 913 | + children = ( | |
| 914 | + 4EBFB8CE21D6056500735306 /* Classes */, | |
| 915 | + 4EBFB8D021D6056500735306 /* Assets */, | |
| 916 | + ); | |
| 917 | + path = CNLiveEmptyView; | |
| 918 | + sourceTree = "<group>"; | |
| 919 | + }; | |
| 920 | + 4EBFB8CE21D6056500735306 /* Classes */ = { | |
| 921 | + isa = PBXGroup; | |
| 922 | + children = ( | |
| 923 | + 4EBFB8D421D605AE00735306 /* CNLiveEmptyView.h */, | |
| 924 | + 4EBFB8D521D605AE00735306 /* CNLiveEmptyView.m */, | |
| 925 | + ); | |
| 926 | + path = Classes; | |
| 927 | + sourceTree = "<group>"; | |
| 928 | + }; | |
| 929 | + 4EBFB8D021D6056500735306 /* Assets */ = { | |
| 930 | + isa = PBXGroup; | |
| 931 | + children = ( | |
| 932 | + ); | |
| 933 | + path = Assets; | |
| 934 | + sourceTree = "<group>"; | |
| 935 | + }; | |
| 936 | + 52B3B98205CECBE3077659D635EFBA65 /* QMUIImagePreviewView */ = { | |
| 937 | + isa = PBXGroup; | |
| 938 | + children = ( | |
| 939 | + 355CD548B59249FF7CE60F8D01F476DE /* QMUIImagePreviewView.h */, | |
| 940 | + 9FFFF25B06592EA5C7EFA48A1258266B /* QMUIImagePreviewView.m */, | |
| 941 | + EE39525CA5175DB98D35B53C5F5EA1B6 /* QMUIImagePreviewViewController.h */, | |
| 942 | + C15442CE05336642565CB6E148B01488 /* QMUIImagePreviewViewController.m */, | |
| 943 | + DD309F2F8CB5E37EA28A715D01C270FB /* QMUIImagePreviewViewTransitionAnimator.h */, | |
| 944 | + B4C89055ECCB57B3A56318F598C5CA28 /* QMUIImagePreviewViewTransitionAnimator.m */, | |
| 945 | + ); | |
| 946 | + name = QMUIImagePreviewView; | |
| 947 | + sourceTree = "<group>"; | |
| 948 | + }; | |
| 949 | + 541CFB4F80421BAE0BC464F7659BDD17 /* QMUIToolbarButton */ = { | |
| 950 | + isa = PBXGroup; | |
| 951 | + children = ( | |
| 952 | + D423AE613459A02EF5750754E241E992 /* QMUIToolbarButton.h */, | |
| 953 | + 4D850ABD913ABEBD0DDB6DF2CED64C70 /* QMUIToolbarButton.m */, | |
| 954 | + ); | |
| 955 | + name = QMUIToolbarButton; | |
| 956 | + sourceTree = "<group>"; | |
| 957 | + }; | |
| 958 | + 55E8ACE827226ADD70D06AFC62A7B60F /* QMUITableViewCell */ = { | |
| 959 | + isa = PBXGroup; | |
| 960 | + children = ( | |
| 961 | + 2DED7AACC5025619371184D791E6FEFC /* QMUITableViewCell.h */, | |
| 962 | + ACDE20E4892A38F41F0E4F9CF62A11DC /* QMUITableViewCell.m */, | |
| 963 | + ); | |
| 964 | + name = QMUITableViewCell; | |
| 965 | + sourceTree = "<group>"; | |
| 966 | + }; | |
| 967 | + 581B249E9F39EADD6F7AF8576CF87785 /* QMUIComponents */ = { | |
| 968 | + isa = PBXGroup; | |
| 969 | + children = ( | |
| 970 | + 305B5FF1BB831116E25BA7C8796EFD46 /* NavigationBarTransition */, | |
| 971 | + A100DDBBC659B2C381A8B059E7822364 /* QMUIAlertController */, | |
| 972 | + AF5278317C4E5A24F832ED4A2A9874C4 /* QMUIAssetLibrary */, | |
| 973 | + 803FC91935F8EF864290CA54D8E7217E /* QMUIBadge */, | |
| 974 | + 9C45CA691D5E54E7CE7B50B01A078733 /* QMUIButton */, | |
| 975 | + BB0569D6B89D7096CA8F6D6C28438D59 /* QMUICAAnimationExtension */, | |
| 976 | + 39A8C1C65B7860FA3C8DBF80ECC43931 /* QMUICellHeightCache */, | |
| 977 | + DEA2BFD290D1183AB940AB977EE3674D /* QMUICellHeightKeyCache */, | |
| 978 | + F592569885196FF748E852FD6BDDB4BA /* QMUICellSizeKeyCache */, | |
| 979 | + 2DEF541115245127BC73928F440BD281 /* QMUICollectionViewPagingLayout */, | |
| 980 | + CEAEEB6174DFF2140CB3F9141729F212 /* QMUIDialogViewController */, | |
| 981 | + 139C928306B42B115BB2C558C4434551 /* QMUIEmotionInputManager */, | |
| 982 | + 0726A26A92EEA0856185D73EA14679B0 /* QMUIEmotionView */, | |
| 983 | + 1C4FEE40DEFC07DFD4AD2374BDFA5961 /* QMUIEmptyView */, | |
| 984 | + E179A106D04944F2F0DE17BDF5C856ED /* QMUIFillButton */, | |
| 985 | + AD6462EB0869D3043C09A24EABB09C4C /* QMUIFloatLayoutView */, | |
| 986 | + 72DD45249045A0AA58BEB6335CF1243A /* QMUIGhostButton */, | |
| 987 | + 9D3566CC9DF48929C0E9CD269D65B04C /* QMUIGridView */, | |
| 988 | + 480610B2264E6D38820777EAA13C6D9A /* QMUIImagePickerLibrary */, | |
| 989 | + 52B3B98205CECBE3077659D635EFBA65 /* QMUIImagePreviewView */, | |
| 990 | + 4A94C8296CE38CB53BAC12B0D8E1EA9A /* QMUIKeyboardManager */, | |
| 991 | + 2F49AC64DF9C8C897962F47DE5A10B3F /* QMUILabel */, | |
| 992 | + 37E650697568913C0DC6FEC45E92F519 /* QMUILinkButton */, | |
| 993 | + 98D1AB27D4561B330399DB3DC931EAE4 /* QMUILogManagerViewController */, | |
| 994 | + 803E01AEAE02FF2CB369C6AA942B2BD4 /* QMUILogWithConfigurationSupported */, | |
| 995 | + 788A93EEA78518CF6C8D2D4412B36890 /* QMUIMarqueeLabel */, | |
| 996 | + E58A83D28E188B12F927C561FF451ED9 /* QMUIModalPresentationViewController */, | |
| 997 | + 47F8F635478F0533B2C22914C69945F6 /* QMUIMoreOperationController */, | |
| 998 | + 94D0632D9A5065B1A048FFF394F6B3B2 /* QMUIMultipleDelegates */, | |
| 999 | + 3172EB6D3148AE73EB93A416C3E2F02B /* QMUINavigationButton */, | |
| 1000 | + A91B53AA523FB1B8A2E2D10AC96D6F9E /* QMUINavigationTitleView */, | |
| 1001 | + 7EA30F6FB947E0E5FB176D0A45ACF18C /* QMUIOrderedDictionary */, | |
| 1002 | + 33C159FA30B7045D8C1178B524186BB3 /* QMUIPieProgressView */, | |
| 1003 | + FB726ECB895BD7AA3A82B6CA595502AD /* QMUIPopupContainerView */, | |
| 1004 | + 8497D58A965A3E5F928447AE7B86545B /* QMUIPopupMenuView */, | |
| 1005 | + D65CB176156B38BE46C3F652FE1322C6 /* QMUIScrollAnimator */, | |
| 1006 | + E1B6D1FB656CCF62033CA4A49F68B47E /* QMUISearchBar */, | |
| 1007 | + 30A2D91A73E10D8831CBB613F26C693E /* QMUISearchController */, | |
| 1008 | + 8D52B9E650EB062F01BD67FECCDB2667 /* QMUISegmentedControl */, | |
| 1009 | + 907890214060B4062542A167A65792EE /* QMUISlider */, | |
| 1010 | + 12B802F5548307A619DDAE73E289ECEA /* QMUIStaticTableView */, | |
| 1011 | + B6ADB803F92DEF7F83F53BB89811AF10 /* QMUITableView */, | |
| 1012 | + 55E8ACE827226ADD70D06AFC62A7B60F /* QMUITableViewCell */, | |
| 1013 | + 09956B971C6F93FE2DADC2D539B93F70 /* QMUITableViewHeaderFooterView */, | |
| 1014 | + E87D398D4CD977C27D709E847B54FF15 /* QMUITableViewProtocols */, | |
| 1015 | + 75F596C2B3B7FF91276D036E3ACFB627 /* QMUITestView */, | |
| 1016 | + 481532306AED456E3C7C557E62D58BFA /* QMUITextField */, | |
| 1017 | + 062A12DAF131145B95E270232D2E924B /* QMUITextView */, | |
| 1018 | + C6ACB09B97FC32A9A4B9EDE6492769E1 /* QMUITips */, | |
| 1019 | + AF3BBA4C13E10CF583EDE123A86CFA70 /* QMUIToastView */, | |
| 1020 | + 541CFB4F80421BAE0BC464F7659BDD17 /* QMUIToolbarButton */, | |
| 1021 | + D62452C86EF6C2676B47DC46D697BB4B /* QMUIVisualEffectView */, | |
| 1022 | + 851113A323B57B8CD83605709F7EF267 /* QMUIZoomImageView */, | |
| 1023 | + ); | |
| 1024 | + name = QMUIComponents; | |
| 1025 | + sourceTree = "<group>"; | |
| 1026 | + }; | |
| 1027 | + 5F7097135637684CB9A438495F19A6EA /* Pods */ = { | |
| 1028 | + isa = PBXGroup; | |
| 1029 | + children = ( | |
| 1030 | + 85E29D5FDE1A34D1CC34D46D41967320 /* QMUIKit */, | |
| 1031 | + ); | |
| 1032 | + name = Pods; | |
| 1033 | + sourceTree = "<group>"; | |
| 1034 | + }; | |
| 1035 | + 61C604EA3B826F83242AD570542402D4 /* Frameworks */ = { | |
| 1036 | + isa = PBXGroup; | |
| 1037 | + children = ( | |
| 1038 | + 9508DF866BFC31906CF430A49E544810 /* QMUIKit.framework */, | |
| 1039 | + 4557CA5CC2304E613A1AAC45FDC896C8 /* iOS */, | |
| 1040 | + ); | |
| 1041 | + name = Frameworks; | |
| 1042 | + sourceTree = "<group>"; | |
| 1043 | + }; | |
| 1044 | + 6C063C8AC46A20999EEC2A88E6DC47F2 /* QMUILog */ = { | |
| 1045 | + isa = PBXGroup; | |
| 1046 | + children = ( | |
| 1047 | + 233D456A0F45469D9CC3A7F13759705D /* QMUILog.h */, | |
| 1048 | + 2889BF54D43039E34ECE63FAC85D2E1D /* QMUILogger.h */, | |
| 1049 | + 6FDF4F1F4B6CBE02E67053FD29C9E39C /* QMUILogger.m */, | |
| 1050 | + 6178F81A5DCE840951801F0B9BD0BBB9 /* QMUILogItem.h */, | |
| 1051 | + 22AFA529D8BB06D207B0AFC4DB4C63B0 /* QMUILogItem.m */, | |
| 1052 | + CBEFBD1348A991F10A4FAD4AA664A253 /* QMUILogNameManager.h */, | |
| 1053 | + FA3D603DFFA65ADC3AB2E5BABB74829F /* QMUILogNameManager.m */, | |
| 1054 | + ); | |
| 1055 | + name = QMUILog; | |
| 1056 | + sourceTree = "<group>"; | |
| 1057 | + }; | |
| 1058 | + 6FAF552236C756BA2F6070D84D8615CD /* Support Files */ = { | |
| 1059 | + isa = PBXGroup; | |
| 1060 | + children = ( | |
| 1061 | + A4B2C5041D6D79465BB12E2C1E36E139 /* Info.plist */, | |
| 1062 | + D61FE2FAFA01733274DAF6F5A11A6C00 /* QMUIKit.modulemap */, | |
| 1063 | + 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */, | |
| 1064 | + C61875C1C7CCD3C12C13552D6085CDC0 /* QMUIKit-dummy.m */, | |
| 1065 | + A1DD097D0D9BD2343FC6C1485A2D7C4B /* QMUIKit-prefix.pch */, | |
| 1066 | + 8943F79BF4D4A53FFFE3F0050916BCF6 /* QMUIKit-umbrella.h */, | |
| 1067 | + ); | |
| 1068 | + name = "Support Files"; | |
| 1069 | + path = "../Target Support Files/QMUIKit"; | |
| 1070 | + sourceTree = "<group>"; | |
| 1071 | + }; | |
| 1072 | + 72DD45249045A0AA58BEB6335CF1243A /* QMUIGhostButton */ = { | |
| 1073 | + isa = PBXGroup; | |
| 1074 | + children = ( | |
| 1075 | + 59D447ACD7C50558809EEB9011172DC5 /* QMUIGhostButton.h */, | |
| 1076 | + 967AB00EA7E3BA4F62B4C7085A4711CF /* QMUIGhostButton.m */, | |
| 1077 | + ); | |
| 1078 | + name = QMUIGhostButton; | |
| 1079 | + sourceTree = "<group>"; | |
| 1080 | + }; | |
| 1081 | + 75F596C2B3B7FF91276D036E3ACFB627 /* QMUITestView */ = { | |
| 1082 | + isa = PBXGroup; | |
| 1083 | + children = ( | |
| 1084 | + A1B02F3630DD5A74CFAFE7F1557DF971 /* QMUITestView.h */, | |
| 1085 | + C136D7A96F6AEC6E04F9D7BB36CEF407 /* QMUITestView.m */, | |
| 1086 | + ); | |
| 1087 | + name = QMUITestView; | |
| 1088 | + sourceTree = "<group>"; | |
| 1089 | + }; | |
| 1090 | + 7610F8FFA5E86A792710626D5C721002 /* QMUICore */ = { | |
| 1091 | + isa = PBXGroup; | |
| 1092 | + children = ( | |
| 1093 | + 2ECAAEED7ED1AE6BB0C74A7E484DE701 /* CALayer+QMUI.h */, | |
| 1094 | + 75549842FFA8F83CDFD8C4645AE95611 /* CALayer+QMUI.m */, | |
| 1095 | + 6C0ACFDAD3DF53E0D2B5A46263182A5D /* NSArray+QMUI.h */, | |
| 1096 | + 2CBCC2CED44C83247713DE526F707C6A /* NSArray+QMUI.m */, | |
| 1097 | + 5079DDDCF8ED34E921770AEE593997D2 /* NSAttributedString+QMUI.h */, | |
| 1098 | + C06D0BC222CE3E61E465D76A20EF7812 /* NSAttributedString+QMUI.m */, | |
| 1099 | + 1342CAA536F1093670F70710BF2D0E8B /* NSCharacterSet+QMUI.h */, | |
| 1100 | + A9D49056A96BBFFB26BA7E5221EC613C /* NSCharacterSet+QMUI.m */, | |
| 1101 | + 9E5F415A8486BD8FFF6D2BEDDD5AF0CD /* NSNumber+QMUI.h */, | |
| 1102 | + FF9FF34D4DFD43A9746700AFCFE9DFBD /* NSNumber+QMUI.m */, | |
| 1103 | + 4FBA584E8D69023B04F3E9C0EE13AC4B /* NSObject+QMUI.h */, | |
| 1104 | + 77202FDF896E7023A466BBBE8D9EF99E /* NSObject+QMUI.m */, | |
| 1105 | + 422D99FD1AC04F522A413CF7ADF124CF /* NSParagraphStyle+QMUI.h */, | |
| 1106 | + 66FC77F74C6B4AF75D3E2EFBE3DD25A6 /* NSParagraphStyle+QMUI.m */, | |
| 1107 | + 30F176113F7996CD3D61EA30EB7BBCB8 /* NSPointerArray+QMUI.h */, | |
| 1108 | + F6F657C9BD0220BD743C922AF5B222E9 /* NSPointerArray+QMUI.m */, | |
| 1109 | + AE749EADDDFC3C0BCB54B92B97DC9A3E /* NSString+QMUI.h */, | |
| 1110 | + 841D768E9E7FEF437D4846C1C31B5575 /* NSString+QMUI.m */, | |
| 1111 | + 54D7951DD02F645C9086235BB4A8D5AD /* NSURL+QMUI.h */, | |
| 1112 | + 945A54E818CAE0C47232E4C381A7687E /* NSURL+QMUI.m */, | |
| 1113 | + CAED37508C776E749D8B1A0AC673D1CF /* QMUICommonDefines.h */, | |
| 1114 | + 2F698C6F858196B9297E6D63FB0E63E2 /* QMUIConfiguration.h */, | |
| 1115 | + E54E4F49EB2413C6A87A157A5CBC845B /* QMUIConfiguration.m */, | |
| 1116 | + B4D8750A5FCB1ED4F34F50B194B17B7F /* QMUIConfigurationMacros.h */, | |
| 1117 | + 077AFA915EC01CA9175704F67FBCAFD0 /* QMUICore.h */, | |
| 1118 | + 5CE3BE5E75CEA2213D2096157B25FF8B /* QMUIHelper.h */, | |
| 1119 | + 4EAD16142E5A442F1D766F3A5D49BB0D /* QMUIHelper.m */, | |
| 1120 | + 127E47F52696D3D8ED8F707C8C66EE50 /* QMUIRuntime.h */, | |
| 1121 | + 946F39A3036111880BAED7E5EF15FA33 /* QMUIRuntime.m */, | |
| 1122 | + F55C4429DF1417CDE5C08227ECFD97D2 /* UIActivityIndicatorView+QMUI.h */, | |
| 1123 | + 8AD23780728557F602277DDEF5C2921B /* UIActivityIndicatorView+QMUI.m */, | |
| 1124 | + 1777C15B5E4B64602B31CDE9D5B871DE /* UIBarItem+QMUI.h */, | |
| 1125 | + 683062B5F72F6AEA59EF18E1D5578B30 /* UIBarItem+QMUI.m */, | |
| 1126 | + 1996B9D42A07181EA5C80FE74AF1A167 /* UIBezierPath+QMUI.h */, | |
| 1127 | + 0E8DF67EC99D97064B5BB52A25FD748D /* UIBezierPath+QMUI.m */, | |
| 1128 | + B65B0B8E776B08BD1DE850C481CABC96 /* UIButton+QMUI.h */, | |
| 1129 | + 3B0AA544D03796CB11223A4816268340 /* UIButton+QMUI.m */, | |
| 1130 | + A44B5F9CD4EB82148EAD99B391AECEAE /* UICollectionView+QMUI.h */, | |
| 1131 | + 6B76C07B4297EEF730A63E8D1187E125 /* UICollectionView+QMUI.m */, | |
| 1132 | + 869C42510C54A3ADB853E5BF49F8E6A5 /* UIColor+QMUI.h */, | |
| 1133 | + FB68B2AFC6810F003EA15FB5FF704DE0 /* UIColor+QMUI.m */, | |
| 1134 | + 2CDD7D98B71F997EEBCAB5336337C4E4 /* UIControl+QMUI.h */, | |
| 1135 | + D8AAD4B9E2A2C7842EA9551EBEAC6A7E /* UIControl+QMUI.m */, | |
| 1136 | + D2F7A119D066B4550FC5E42E400F8862 /* UIFont+QMUI.h */, | |
| 1137 | + 9B138AD96E6F55D5CEE18B43FFEB0E09 /* UIFont+QMUI.m */, | |
| 1138 | + 83E719ADE006E41FD830DEBECEB80C27 /* UIGestureRecognizer+QMUI.h */, | |
| 1139 | + 650AB04A0616F4EF66DB15CF4CBF2C52 /* UIGestureRecognizer+QMUI.m */, | |
| 1140 | + 25895284DB54A412962C0FF635786791 /* UIImage+QMUI.h */, | |
| 1141 | + 5B1725A6198F32713C08CBA45F6AC827 /* UIImage+QMUI.m */, | |
| 1142 | + D67F9BBE995013B23D4586B5AB5A2EE0 /* UIImageView+QMUI.h */, | |
| 1143 | + 79FAF550F440725BEA0445DB99D69A52 /* UIImageView+QMUI.m */, | |
| 1144 | + BA7F2D7D88AB86A72FDA6D76DB4B96F5 /* UIInterface+QMUI.h */, | |
| 1145 | + 461861850FA6A468417A888DF7E1165E /* UIInterface+QMUI.m */, | |
| 1146 | + 3BFE6C0338FF14F776ED05B848791DEE /* UILabel+QMUI.h */, | |
| 1147 | + 1196980CB7705682DA4A1EE38C7EB1DF /* UILabel+QMUI.m */, | |
| 1148 | + DF8698EC7AE5965D0103956446E512B6 /* UINavigationBar+QMUI.h */, | |
| 1149 | + 1EC36AE2BBAAF6E062E1BB571A12DAC3 /* UINavigationBar+QMUI.m */, | |
| 1150 | + 8B36D00AD94C22E70156A190BCF04B5E /* UINavigationController+QMUI.h */, | |
| 1151 | + B69590567331243D21345E880160327D /* UINavigationController+QMUI.m */, | |
| 1152 | + BA241FE0BABD76043ED1E4E0AE066D41 /* UIScrollView+QMUI.h */, | |
| 1153 | + 76C5D0EE23FC21D542575412F69178A6 /* UIScrollView+QMUI.m */, | |
| 1154 | + 0E3F01F7981A029E86204CEEB4B0A82A /* UISearchBar+QMUI.h */, | |
| 1155 | + 8E7AAFCD5D0A3D30E851278F8B487DE3 /* UISearchBar+QMUI.m */, | |
| 1156 | + A108628037348306FAD8265EEE6A0EDF /* UITabBar+QMUI.h */, | |
| 1157 | + 619519D7A09BA5CEA4266A2640B4581E /* UITabBar+QMUI.m */, | |
| 1158 | + CEAB45CBC99EEAB4F5A994E6581CD23F /* UITabBarItem+QMUI.h */, | |
| 1159 | + 3808C54A498A6C7A8A5DC615CAE391B4 /* UITabBarItem+QMUI.m */, | |
| 1160 | + 2BF86EE16C919F56CC23E7AEB6EA4D08 /* UITableView+QMUI.h */, | |
| 1161 | + E6A0790F8B91ED97495544F4282217E4 /* UITableView+QMUI.m */, | |
| 1162 | + B868D5A4F5C7283565D2FCCFD4DA168E /* UITableViewCell+QMUI.h */, | |
| 1163 | + 1283089156FCF7A4E9AE931119BC44D8 /* UITableViewCell+QMUI.m */, | |
| 1164 | + A2AE6157F70474DE2C8A6C5972AE70DC /* UITextField+QMUI.h */, | |
| 1165 | + B26FF42D767BB2E6A993A94EB30DBC29 /* UITextField+QMUI.m */, | |
| 1166 | + 9DD3C3E68F130B422DF3DACF69421296 /* UITextView+QMUI.h */, | |
| 1167 | + 16B889D321AB2DCA20B101F81C77EB49 /* UITextView+QMUI.m */, | |
| 1168 | + BCC6F084D6F34C249C680A3A0B1449A8 /* UIView+QMUI.h */, | |
| 1169 | + 2CEEBE0056F48DF0574635BFF9B97D17 /* UIView+QMUI.m */, | |
| 1170 | + 165E0888868032EBFDE488DA7F0FD3C3 /* UIViewController+QMUI.h */, | |
| 1171 | + D8B383EFF233CC47CFE93E39E3A294B3 /* UIViewController+QMUI.m */, | |
| 1172 | + 18159ED77BAE29B4AC4ABAB295C1A6B4 /* UIWindow+QMUI.h */, | |
| 1173 | + E86385A72F3BE692AC4018DB65885A7B /* UIWindow+QMUI.m */, | |
| 1174 | + ); | |
| 1175 | + name = QMUICore; | |
| 1176 | + sourceTree = "<group>"; | |
| 1177 | + }; | |
| 1178 | + 788A93EEA78518CF6C8D2D4412B36890 /* QMUIMarqueeLabel */ = { | |
| 1179 | + isa = PBXGroup; | |
| 1180 | + children = ( | |
| 1181 | + 66670377EF4A625B8565B62F5156A929 /* QMUIMarqueeLabel.h */, | |
| 1182 | + 02AE85186AFBED5626B4880AC416E72E /* QMUIMarqueeLabel.m */, | |
| 1183 | + ); | |
| 1184 | + name = QMUIMarqueeLabel; | |
| 1185 | + sourceTree = "<group>"; | |
| 1186 | + }; | |
| 1187 | + 7DB346D0F39D3F0E887471402A8071AB = { | |
| 1188 | + isa = PBXGroup; | |
| 1189 | + children = ( | |
| 1190 | + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, | |
| 1191 | + 46A30868B7E7606987E31960901814A5 /* Development Pods */, | |
| 1192 | + 61C604EA3B826F83242AD570542402D4 /* Frameworks */, | |
| 1193 | + 5F7097135637684CB9A438495F19A6EA /* Pods */, | |
| 1194 | + 1FEC0F572FD5AF79CFC1F7A3B09E6802 /* Products */, | |
| 1195 | + 8086A73D7F13E70FA7BF9D094FBE5DBC /* Targets Support Files */, | |
| 1196 | + ); | |
| 1197 | + sourceTree = "<group>"; | |
| 1198 | + }; | |
| 1199 | + 7EA30F6FB947E0E5FB176D0A45ACF18C /* QMUIOrderedDictionary */ = { | |
| 1200 | + isa = PBXGroup; | |
| 1201 | + children = ( | |
| 1202 | + DDDA9F16724F7DF41E399F7936141A26 /* QMUIOrderedDictionary.h */, | |
| 1203 | + D4464095CFC47051FEFA4E0CF85B2497 /* QMUIOrderedDictionary.m */, | |
| 1204 | + ); | |
| 1205 | + name = QMUIOrderedDictionary; | |
| 1206 | + sourceTree = "<group>"; | |
| 1207 | + }; | |
| 1208 | + 803E01AEAE02FF2CB369C6AA942B2BD4 /* QMUILogWithConfigurationSupported */ = { | |
| 1209 | + isa = PBXGroup; | |
| 1210 | + children = ( | |
| 1211 | + 3D0850B301BEB3719C4A7D17FB2F40CA /* QMUILogger+QMUIConfigurationTemplate.h */, | |
| 1212 | + A41171C1FAABAFEB8B002334683DDC02 /* QMUILogger+QMUIConfigurationTemplate.m */, | |
| 1213 | + ); | |
| 1214 | + name = QMUILogWithConfigurationSupported; | |
| 1215 | + sourceTree = "<group>"; | |
| 1216 | + }; | |
| 1217 | + 803FC91935F8EF864290CA54D8E7217E /* QMUIBadge */ = { | |
| 1218 | + isa = PBXGroup; | |
| 1219 | + children = ( | |
| 1220 | + C3FAD9906F57EC9243FEEBAF1CC94A85 /* UIBarItem+QMUIBadge.h */, | |
| 1221 | + 7664E1AFB598843452C5EE0DFDA2F90F /* UIBarItem+QMUIBadge.m */, | |
| 1222 | + ); | |
| 1223 | + name = QMUIBadge; | |
| 1224 | + sourceTree = "<group>"; | |
| 1225 | + }; | |
| 1226 | + 8086A73D7F13E70FA7BF9D094FBE5DBC /* Targets Support Files */ = { | |
| 1227 | + isa = PBXGroup; | |
| 1228 | + children = ( | |
| 1229 | + BCB843A7B4B8120EF466DA61E4DAC3CA /* Pods-CNLiveEmptyView_Example */, | |
| 1230 | + EDBD79B38AB278D5AF446519FA2639B7 /* Pods-CNLiveEmptyView_Tests */, | |
| 1231 | + ); | |
| 1232 | + name = "Targets Support Files"; | |
| 1233 | + sourceTree = "<group>"; | |
| 1234 | + }; | |
| 1235 | + 82F96844A5444319E9D5813D7DD8122E /* Resources */ = { | |
| 1236 | + isa = PBXGroup; | |
| 1237 | + children = ( | |
| 1238 | + 85932D487990FC072A12E9374F52C874 /* QMUIResources.bundle */, | |
| 1239 | + ); | |
| 1240 | + name = Resources; | |
| 1241 | + sourceTree = "<group>"; | |
| 1242 | + }; | |
| 1243 | + 8497D58A965A3E5F928447AE7B86545B /* QMUIPopupMenuView */ = { | |
| 1244 | + isa = PBXGroup; | |
| 1245 | + children = ( | |
| 1246 | + 3ABB3CE4A38F351A8FBD21EDF8580222 /* QMUIPopupMenuBaseItem.h */, | |
| 1247 | + 95B8BA450A02AE3B1E5624D77632AB0F /* QMUIPopupMenuBaseItem.m */, | |
| 1248 | + 6A64DC20478808BBC302BC9F3C29BF90 /* QMUIPopupMenuButtonItem.h */, | |
| 1249 | + 15D373C51981B5FAC668514CA43CDF92 /* QMUIPopupMenuButtonItem.m */, | |
| 1250 | + EABE85B0DD17D8D8919CE747722ED10C /* QMUIPopupMenuItemProtocol.h */, | |
| 1251 | + 0738271D12A250FC4D6E98741E17AE42 /* QMUIPopupMenuView.h */, | |
| 1252 | + 9AC4C7536C6A522197B783CAE57FBED3 /* QMUIPopupMenuView.m */, | |
| 1253 | + ); | |
| 1254 | + name = QMUIPopupMenuView; | |
| 1255 | + sourceTree = "<group>"; | |
| 1256 | + }; | |
| 1257 | + 851113A323B57B8CD83605709F7EF267 /* QMUIZoomImageView */ = { | |
| 1258 | + isa = PBXGroup; | |
| 1259 | + children = ( | |
| 1260 | + 31CB781E583D78BD658298CF0F9EEB9D /* QMUIZoomImageView.h */, | |
| 1261 | + 9CF3F9562DD8C287DC6D2542A34FC724 /* QMUIZoomImageView.m */, | |
| 1262 | + ); | |
| 1263 | + name = QMUIZoomImageView; | |
| 1264 | + sourceTree = "<group>"; | |
| 1265 | + }; | |
| 1266 | + 85E29D5FDE1A34D1CC34D46D41967320 /* QMUIKit */ = { | |
| 1267 | + isa = PBXGroup; | |
| 1268 | + children = ( | |
| 1269 | + 9E71CD44B6575C425DF7CD11FFA361D8 /* QMUIKit.h */, | |
| 1270 | + 581B249E9F39EADD6F7AF8576CF87785 /* QMUIComponents */, | |
| 1271 | + 7610F8FFA5E86A792710626D5C721002 /* QMUICore */, | |
| 1272 | + 6C063C8AC46A20999EEC2A88E6DC47F2 /* QMUILog */, | |
| 1273 | + 3AAFAC8300D4258CCD2D13FC97FB58A7 /* QMUIMainFrame */, | |
| 1274 | + 8B60DE320AE1D714FDA0B3D609CDE1EF /* QMUIResources */, | |
| 1275 | + 4C8E490AF8CD5461A29E5BB4114F502F /* QMUIWeakObjectContainer */, | |
| 1276 | + 6FAF552236C756BA2F6070D84D8615CD /* Support Files */, | |
| 1277 | + ); | |
| 1278 | + path = QMUIKit; | |
| 1279 | + sourceTree = "<group>"; | |
| 1280 | + }; | |
| 1281 | + 8B60DE320AE1D714FDA0B3D609CDE1EF /* QMUIResources */ = { | |
| 1282 | + isa = PBXGroup; | |
| 1283 | + children = ( | |
| 1284 | + 82F96844A5444319E9D5813D7DD8122E /* Resources */, | |
| 1285 | + ); | |
| 1286 | + name = QMUIResources; | |
| 1287 | + sourceTree = "<group>"; | |
| 1288 | + }; | |
| 1289 | + 8D52B9E650EB062F01BD67FECCDB2667 /* QMUISegmentedControl */ = { | |
| 1290 | + isa = PBXGroup; | |
| 1291 | + children = ( | |
| 1292 | + A396EC8BE89FD67361034654F7CFBB7F /* QMUISegmentedControl.h */, | |
| 1293 | + 5FD97020833AEF2873EC85EDE55FB578 /* QMUISegmentedControl.m */, | |
| 1294 | + ); | |
| 1295 | + name = QMUISegmentedControl; | |
| 1296 | + sourceTree = "<group>"; | |
| 1297 | + }; | |
| 1298 | + 907890214060B4062542A167A65792EE /* QMUISlider */ = { | |
| 1299 | + isa = PBXGroup; | |
| 1300 | + children = ( | |
| 1301 | + 1901C9CC0A5C3032FC01AAB002057BBC /* QMUISlider.h */, | |
| 1302 | + B1A5A2C71F414E5AA8C1C2CD4D56985F /* QMUISlider.m */, | |
| 1303 | + ); | |
| 1304 | + name = QMUISlider; | |
| 1305 | + sourceTree = "<group>"; | |
| 1306 | + }; | |
| 1307 | + 94D0632D9A5065B1A048FFF394F6B3B2 /* QMUIMultipleDelegates */ = { | |
| 1308 | + isa = PBXGroup; | |
| 1309 | + children = ( | |
| 1310 | + B25FFA583216D9C9D2213A8B3C427C6A /* NSObject+QMUIMultipleDelegates.h */, | |
| 1311 | + E4AD4D24307FD758878B3C7FD3F26715 /* NSObject+QMUIMultipleDelegates.m */, | |
| 1312 | + C885FA9876A632DBC6894FA1F7DF3FF5 /* QMUIMultipleDelegates.h */, | |
| 1313 | + D537E9E21A1BAAB1E80CF579CBC55004 /* QMUIMultipleDelegates.m */, | |
| 1314 | + ); | |
| 1315 | + name = QMUIMultipleDelegates; | |
| 1316 | + sourceTree = "<group>"; | |
| 1317 | + }; | |
| 1318 | + 98D1AB27D4561B330399DB3DC931EAE4 /* QMUILogManagerViewController */ = { | |
| 1319 | + isa = PBXGroup; | |
| 1320 | + children = ( | |
| 1321 | + 3541F828BAD3505DDC8F0704A9DC4EA6 /* QMUILogManagerViewController.h */, | |
| 1322 | + ED57E4A38F06537DC6966171C30BF157 /* QMUILogManagerViewController.m */, | |
| 1323 | + ); | |
| 1324 | + name = QMUILogManagerViewController; | |
| 1325 | + sourceTree = "<group>"; | |
| 1326 | + }; | |
| 1327 | + 9C45CA691D5E54E7CE7B50B01A078733 /* QMUIButton */ = { | |
| 1328 | + isa = PBXGroup; | |
| 1329 | + children = ( | |
| 1330 | + 287C336CDC48C5051F59D0FCF740229B /* QMUIButton.h */, | |
| 1331 | + 23EE0AF141F0E9AE7BF1C90592659BCB /* QMUIButton.m */, | |
| 1332 | + ); | |
| 1333 | + name = QMUIButton; | |
| 1334 | + sourceTree = "<group>"; | |
| 1335 | + }; | |
| 1336 | + 9D3566CC9DF48929C0E9CD269D65B04C /* QMUIGridView */ = { | |
| 1337 | + isa = PBXGroup; | |
| 1338 | + children = ( | |
| 1339 | + 4F99588BE293DF0528770A7C21A81FDB /* QMUIGridView.h */, | |
| 1340 | + F4F4B66BD0FAE2F4269835611D719976 /* QMUIGridView.m */, | |
| 1341 | + ); | |
| 1342 | + name = QMUIGridView; | |
| 1343 | + sourceTree = "<group>"; | |
| 1344 | + }; | |
| 1345 | + A100DDBBC659B2C381A8B059E7822364 /* QMUIAlertController */ = { | |
| 1346 | + isa = PBXGroup; | |
| 1347 | + children = ( | |
| 1348 | + 26B1BAEBCC134F0E55931EE8FD6285F9 /* QMUIAlertController.h */, | |
| 1349 | + DBB1DA87013A89A9A0AA87994468E7B7 /* QMUIAlertController.m */, | |
| 1350 | + ); | |
| 1351 | + name = QMUIAlertController; | |
| 1352 | + sourceTree = "<group>"; | |
| 1353 | + }; | |
| 1354 | + A69EE42EC7B284F1601C77077453F738 /* Pod */ = { | |
| 1355 | + isa = PBXGroup; | |
| 1356 | + children = ( | |
| 1357 | + 8338124412898C0761E20CE178B779C7 /* CNLiveEmptyView.podspec */, | |
| 1358 | + A91C8E9BF5DD9936E49ADC2A4DC18985 /* LICENSE */, | |
| 1359 | + 6CF588ABE7C786E836D4DC0883854DE4 /* README.md */, | |
| 1360 | + ); | |
| 1361 | + name = Pod; | |
| 1362 | + sourceTree = "<group>"; | |
| 1363 | + }; | |
| 1364 | + A91B53AA523FB1B8A2E2D10AC96D6F9E /* QMUINavigationTitleView */ = { | |
| 1365 | + isa = PBXGroup; | |
| 1366 | + children = ( | |
| 1367 | + 3CF0C172B9B16B8CADFB100C4ECC6B51 /* QMUINavigationTitleView.h */, | |
| 1368 | + E04880C0C33071DE92510CF3E4219816 /* QMUINavigationTitleView.m */, | |
| 1369 | + ); | |
| 1370 | + name = QMUINavigationTitleView; | |
| 1371 | + sourceTree = "<group>"; | |
| 1372 | + }; | |
| 1373 | + AD6462EB0869D3043C09A24EABB09C4C /* QMUIFloatLayoutView */ = { | |
| 1374 | + isa = PBXGroup; | |
| 1375 | + children = ( | |
| 1376 | + 87DBF896A7B31025FE2C6DC39E67F190 /* QMUIFloatLayoutView.h */, | |
| 1377 | + 5F4F87282593B83C8B61D60308091E53 /* QMUIFloatLayoutView.m */, | |
| 1378 | + ); | |
| 1379 | + name = QMUIFloatLayoutView; | |
| 1380 | + sourceTree = "<group>"; | |
| 1381 | + }; | |
| 1382 | + AF3BBA4C13E10CF583EDE123A86CFA70 /* QMUIToastView */ = { | |
| 1383 | + isa = PBXGroup; | |
| 1384 | + children = ( | |
| 1385 | + 8E2981C23463A0E6905599C78C8B9A99 /* QMUIToastAnimator.h */, | |
| 1386 | + 29F7830A031D621288EB25E7A6FD20C3 /* QMUIToastAnimator.m */, | |
| 1387 | + BECC15D823DCF17DFB168444DD512D83 /* QMUIToastBackgroundView.h */, | |
| 1388 | + 726AF970C89C9A961AFFF8CADDEDA82D /* QMUIToastBackgroundView.m */, | |
| 1389 | + 2FB0B08F81CB62FBC862DC4B8AD650F7 /* QMUIToastContentView.h */, | |
| 1390 | + 867709A2535E18508D6CD97A8EF8994E /* QMUIToastContentView.m */, | |
| 1391 | + 60D444F54109B58C71D511822CCC3D70 /* QMUIToastView.h */, | |
| 1392 | + 3D26D12E88A89080C31024959A3E22C0 /* QMUIToastView.m */, | |
| 1393 | + ); | |
| 1394 | + name = QMUIToastView; | |
| 1395 | + sourceTree = "<group>"; | |
| 1396 | + }; | |
| 1397 | + AF5278317C4E5A24F832ED4A2A9874C4 /* QMUIAssetLibrary */ = { | |
| 1398 | + isa = PBXGroup; | |
| 1399 | + children = ( | |
| 1400 | + 07B3FE982FEADC65BEC00A71A527CE0D /* QMUIAsset.h */, | |
| 1401 | + B486D035DFA15E971FCBB939A382D549 /* QMUIAsset.m */, | |
| 1402 | + E191ACCD195AF9FEB074F6CB45C1269D /* QMUIAssetsGroup.h */, | |
| 1403 | + 36699F793146618678F7DC35307003BB /* QMUIAssetsGroup.m */, | |
| 1404 | + 418E55EF1A1D3B3789758B61DB0F07AE /* QMUIAssetsManager.h */, | |
| 1405 | + CA8313B026D354228B21153842B59A48 /* QMUIAssetsManager.m */, | |
| 1406 | + ); | |
| 1407 | + name = QMUIAssetLibrary; | |
| 1408 | + sourceTree = "<group>"; | |
| 1409 | + }; | |
| 1410 | + B6ADB803F92DEF7F83F53BB89811AF10 /* QMUITableView */ = { | |
| 1411 | + isa = PBXGroup; | |
| 1412 | + children = ( | |
| 1413 | + 8EAB1559AE486653A691314C4547EB1C /* QMUITableView.h */, | |
| 1414 | + B1E16978D401CA5628C96E21D0DA9BD7 /* QMUITableView.m */, | |
| 1415 | + ); | |
| 1416 | + name = QMUITableView; | |
| 1417 | + sourceTree = "<group>"; | |
| 1418 | + }; | |
| 1419 | + BB0569D6B89D7096CA8F6D6C28438D59 /* QMUICAAnimationExtension */ = { | |
| 1420 | + isa = PBXGroup; | |
| 1421 | + children = ( | |
| 1422 | + 40D421279B582750E58EC942F4A0FCE7 /* CAAnimation+QMUI.h */, | |
| 1423 | + 499EF5FE957D6D80D95323CB70730B6A /* CAAnimation+QMUI.m */, | |
| 1424 | + ); | |
| 1425 | + name = QMUICAAnimationExtension; | |
| 1426 | + sourceTree = "<group>"; | |
| 1427 | + }; | |
| 1428 | + BCB843A7B4B8120EF466DA61E4DAC3CA /* Pods-CNLiveEmptyView_Example */ = { | |
| 1429 | + isa = PBXGroup; | |
| 1430 | + children = ( | |
| 1431 | + E73F9A40421DD79E40C5B3BED5E061CF /* Info.plist */, | |
| 1432 | + 0BB4AB09F4015EF7ACEABBCAA03203C2 /* Pods-CNLiveEmptyView_Example.modulemap */, | |
| 1433 | + 32C203828549F79489D9137720F0773C /* Pods-CNLiveEmptyView_Example-acknowledgements.markdown */, | |
| 1434 | + 4071783299036F262D37B316D0BA85C2 /* Pods-CNLiveEmptyView_Example-acknowledgements.plist */, | |
| 1435 | + DA6C6510D9ED4D0CD2FC651A247198D6 /* Pods-CNLiveEmptyView_Example-dummy.m */, | |
| 1436 | + 0A1EF718D9476C4CDC4A342936A337F8 /* Pods-CNLiveEmptyView_Example-frameworks.sh */, | |
| 1437 | + B45881E7D71F67C96FF4FA44A801D3C9 /* Pods-CNLiveEmptyView_Example-resources.sh */, | |
| 1438 | + 597F06210A5C4839F3A01FB6657CF5FE /* Pods-CNLiveEmptyView_Example-umbrella.h */, | |
| 1439 | + BE6092B2EA6FB8EA45923D89A94F3BFC /* Pods-CNLiveEmptyView_Example.debug.xcconfig */, | |
| 1440 | + 00778AE6A4C57D8DB6DF4F714336FCC3 /* Pods-CNLiveEmptyView_Example.release.xcconfig */, | |
| 1441 | + ); | |
| 1442 | + name = "Pods-CNLiveEmptyView_Example"; | |
| 1443 | + path = "Target Support Files/Pods-CNLiveEmptyView_Example"; | |
| 1444 | + sourceTree = "<group>"; | |
| 1445 | + }; | |
| 1446 | + C6ACB09B97FC32A9A4B9EDE6492769E1 /* QMUITips */ = { | |
| 1447 | + isa = PBXGroup; | |
| 1448 | + children = ( | |
| 1449 | + 9DCC6A4BF711108367C04F5DE98D67FA /* QMUITips.h */, | |
| 1450 | + F19D6A92D9B1A0E9C28D5A8485EBE11D /* QMUITips.m */, | |
| 1451 | + ); | |
| 1452 | + name = QMUITips; | |
| 1453 | + sourceTree = "<group>"; | |
| 1454 | + }; | |
| 1455 | + CEAEEB6174DFF2140CB3F9141729F212 /* QMUIDialogViewController */ = { | |
| 1456 | + isa = PBXGroup; | |
| 1457 | + children = ( | |
| 1458 | + 015BB595DBD6949EBEAA8738FE12223C /* QMUIDialogViewController.h */, | |
| 1459 | + 11F1CE3B7EF800365F868727333DF157 /* QMUIDialogViewController.m */, | |
| 1460 | + ); | |
| 1461 | + name = QMUIDialogViewController; | |
| 1462 | + sourceTree = "<group>"; | |
| 1463 | + }; | |
| 1464 | + D62452C86EF6C2676B47DC46D697BB4B /* QMUIVisualEffectView */ = { | |
| 1465 | + isa = PBXGroup; | |
| 1466 | + children = ( | |
| 1467 | + 62AB498BC41FC2118B18390DD86D8B85 /* QMUIVisualEffectView.h */, | |
| 1468 | + AB92BF234C24893E40E87322812BE854 /* QMUIVisualEffectView.m */, | |
| 1469 | + ); | |
| 1470 | + name = QMUIVisualEffectView; | |
| 1471 | + sourceTree = "<group>"; | |
| 1472 | + }; | |
| 1473 | + D65CB176156B38BE46C3F652FE1322C6 /* QMUIScrollAnimator */ = { | |
| 1474 | + isa = PBXGroup; | |
| 1475 | + children = ( | |
| 1476 | + 3F32A69897C7122B7ABED37FD7C7F782 /* QMUINavigationBarScrollingAnimator.h */, | |
| 1477 | + 3ECEEF9B11989B420403CD531291E663 /* QMUINavigationBarScrollingAnimator.m */, | |
| 1478 | + 71FA6DD888FEE0F4F39ADB0658BDE578 /* QMUINavigationBarScrollingSnapAnimator.h */, | |
| 1479 | + C4A122ADE1B28F4931A5D1F00EA44BBF /* QMUINavigationBarScrollingSnapAnimator.m */, | |
| 1480 | + 616D197C7043557D8CD03CAA163FF758 /* QMUIScrollAnimator.h */, | |
| 1481 | + 857B8006B85CBCA575684957635B0A10 /* QMUIScrollAnimator.m */, | |
| 1482 | + ); | |
| 1483 | + name = QMUIScrollAnimator; | |
| 1484 | + sourceTree = "<group>"; | |
| 1485 | + }; | |
| 1486 | + DEA2BFD290D1183AB940AB977EE3674D /* QMUICellHeightKeyCache */ = { | |
| 1487 | + isa = PBXGroup; | |
| 1488 | + children = ( | |
| 1489 | + 6D62F035D90C15C26B9622E7CEB8CA71 /* QMUICellHeightKeyCache.h */, | |
| 1490 | + 00662AEF1699E1D4902BAD916450E34B /* QMUICellHeightKeyCache.m */, | |
| 1491 | + DDA4634DEC017D84E09F2CD4139567C6 /* UITableView+QMUICellHeightKeyCache.h */, | |
| 1492 | + A1B53096C42905AB1C59777B0B3E8AF0 /* UITableView+QMUICellHeightKeyCache.m */, | |
| 1493 | + ); | |
| 1494 | + name = QMUICellHeightKeyCache; | |
| 1495 | + sourceTree = "<group>"; | |
| 1496 | + }; | |
| 1497 | + E179A106D04944F2F0DE17BDF5C856ED /* QMUIFillButton */ = { | |
| 1498 | + isa = PBXGroup; | |
| 1499 | + children = ( | |
| 1500 | + 1CDE2D459E31DE8A69617CECA6250125 /* QMUIFillButton.h */, | |
| 1501 | + 1984A77A339279E570FDBFBBC4C3E7D3 /* QMUIFillButton.m */, | |
| 1502 | + ); | |
| 1503 | + name = QMUIFillButton; | |
| 1504 | + sourceTree = "<group>"; | |
| 1505 | + }; | |
| 1506 | + E1B6D1FB656CCF62033CA4A49F68B47E /* QMUISearchBar */ = { | |
| 1507 | + isa = PBXGroup; | |
| 1508 | + children = ( | |
| 1509 | + 4F1F717D2A0F5A721EB82C4F5487E962 /* QMUISearchBar.h */, | |
| 1510 | + 65D66AA6950E94C05B873771039500DB /* QMUISearchBar.m */, | |
| 1511 | + ); | |
| 1512 | + name = QMUISearchBar; | |
| 1513 | + sourceTree = "<group>"; | |
| 1514 | + }; | |
| 1515 | + E58A83D28E188B12F927C561FF451ED9 /* QMUIModalPresentationViewController */ = { | |
| 1516 | + isa = PBXGroup; | |
| 1517 | + children = ( | |
| 1518 | + 8E952A4B8FB69C74700E00F99EDDEF51 /* QMUIModalPresentationViewController.h */, | |
| 1519 | + 9DCAC689B16A852521E02B74F8B2BE32 /* QMUIModalPresentationViewController.m */, | |
| 1520 | + ); | |
| 1521 | + name = QMUIModalPresentationViewController; | |
| 1522 | + sourceTree = "<group>"; | |
| 1523 | + }; | |
| 1524 | + E87D398D4CD977C27D709E847B54FF15 /* QMUITableViewProtocols */ = { | |
| 1525 | + isa = PBXGroup; | |
| 1526 | + children = ( | |
| 1527 | + C0E295F9CA326954427EB0E5B99C32C9 /* QMUITableViewProtocols.h */, | |
| 1528 | + ); | |
| 1529 | + name = QMUITableViewProtocols; | |
| 1530 | + sourceTree = "<group>"; | |
| 1531 | + }; | |
| 1532 | + EDBD79B38AB278D5AF446519FA2639B7 /* Pods-CNLiveEmptyView_Tests */ = { | |
| 1533 | + isa = PBXGroup; | |
| 1534 | + children = ( | |
| 1535 | + CF884EDC11B438C15DC32E6103372FA5 /* Info.plist */, | |
| 1536 | + 45D954BDEAEE83503A9F797387447C9F /* Pods-CNLiveEmptyView_Tests.modulemap */, | |
| 1537 | + 39728F299AB5E6F9A72B37E7DBE49536 /* Pods-CNLiveEmptyView_Tests-acknowledgements.markdown */, | |
| 1538 | + 54573D1868828D0EEFD2C08FEC5D7E8F /* Pods-CNLiveEmptyView_Tests-acknowledgements.plist */, | |
| 1539 | + 99F2C0AE36FF8A6FBD0F4D3332F76206 /* Pods-CNLiveEmptyView_Tests-dummy.m */, | |
| 1540 | + 1810A443D3C0AE0E22F655BF37DA8297 /* Pods-CNLiveEmptyView_Tests-frameworks.sh */, | |
| 1541 | + 8CC15DED9DE9A76C0D786048F4BA06D9 /* Pods-CNLiveEmptyView_Tests-resources.sh */, | |
| 1542 | + 82CC725A02E5604CC03C146A8F0EC9F6 /* Pods-CNLiveEmptyView_Tests-umbrella.h */, | |
| 1543 | + 42D89F1774203F4D0B5773774F363BA5 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */, | |
| 1544 | + 214FBE177F855DB8735D07488C0A2762 /* Pods-CNLiveEmptyView_Tests.release.xcconfig */, | |
| 1545 | + ); | |
| 1546 | + name = "Pods-CNLiveEmptyView_Tests"; | |
| 1547 | + path = "Target Support Files/Pods-CNLiveEmptyView_Tests"; | |
| 1548 | + sourceTree = "<group>"; | |
| 1549 | + }; | |
| 1550 | + F592569885196FF748E852FD6BDDB4BA /* QMUICellSizeKeyCache */ = { | |
| 1551 | + isa = PBXGroup; | |
| 1552 | + children = ( | |
| 1553 | + 76D9CCBA6B30ACC6F406823B0A2F29D4 /* QMUICellSizeKeyCache.h */, | |
| 1554 | + F3B2BAD0624686F245F57504F8EFF273 /* QMUICellSizeKeyCache.m */, | |
| 1555 | + AAEB59D540E5BE7443437C918454DA10 /* UICollectionView+QMUICellSizeKeyCache.h */, | |
| 1556 | + CCB6A17FB5E745A52EDC0FC41A4F8296 /* UICollectionView+QMUICellSizeKeyCache.m */, | |
| 1557 | + ); | |
| 1558 | + name = QMUICellSizeKeyCache; | |
| 1559 | + sourceTree = "<group>"; | |
| 1560 | + }; | |
| 1561 | + FB726ECB895BD7AA3A82B6CA595502AD /* QMUIPopupContainerView */ = { | |
| 1562 | + isa = PBXGroup; | |
| 1563 | + children = ( | |
| 1564 | + A63D3844E87808AA9D24689B6B47B062 /* QMUIPopupContainerView.h */, | |
| 1565 | + 7B46C337B4B39772F05CDABA373C58AD /* QMUIPopupContainerView.m */, | |
| 1566 | + ); | |
| 1567 | + name = QMUIPopupContainerView; | |
| 1568 | + sourceTree = "<group>"; | |
| 1569 | + }; | |
| 1570 | +/* End PBXGroup section */ | |
| 1571 | + | |
| 1572 | +/* Begin PBXHeadersBuildPhase section */ | |
| 1573 | + 223EC8138AD94070D6327FDA0EA7D9C1 /* Headers */ = { | |
| 1574 | + isa = PBXHeadersBuildPhase; | |
| 1575 | + buildActionMask = 2147483647; | |
| 1576 | + files = ( | |
| 1577 | + B0F93561765D6519BC06D692CA6DEE88 /* CAAnimation+QMUI.h in Headers */, | |
| 1578 | + 5D31F0EA67E0BBF82FDD64CB52E77114 /* CALayer+QMUI.h in Headers */, | |
| 1579 | + 086460E7523CB7B48307D147A866F0EB /* NSArray+QMUI.h in Headers */, | |
| 1580 | + EBB6092977BD4F98DA7C7880673D747E /* NSAttributedString+QMUI.h in Headers */, | |
| 1581 | + EE73084E1EB451756A1E4E05D9E12C83 /* NSCharacterSet+QMUI.h in Headers */, | |
| 1582 | + 88DD3C3F3F0398394DA3ECB6EE548140 /* NSNumber+QMUI.h in Headers */, | |
| 1583 | + 9D13F0D3907242A10DD9E48028F7E84C /* NSObject+QMUI.h in Headers */, | |
| 1584 | + 11323B52D0F8E15B29CA9651435B65C7 /* NSObject+QMUIMultipleDelegates.h in Headers */, | |
| 1585 | + 8E7FD130C193E0E5ED12482DE7815B6C /* NSParagraphStyle+QMUI.h in Headers */, | |
| 1586 | + 680748364C884C6E35E04E9B9FCB6651 /* NSPointerArray+QMUI.h in Headers */, | |
| 1587 | + DACA29E906608614AFBF4B2B514CF1CB /* NSString+QMUI.h in Headers */, | |
| 1588 | + 95D445110E405D7CFA2B0DE2B011FDB2 /* NSURL+QMUI.h in Headers */, | |
| 1589 | + 69F2CB6620A802489D515AF88BA41140 /* QMUIAlbumViewController.h in Headers */, | |
| 1590 | + 58D3B41E83450282B60CD7F991A9D0F8 /* QMUIAlertController.h in Headers */, | |
| 1591 | + 0E54D088B8E1DCB4EB84692754CDA002 /* QMUIAsset.h in Headers */, | |
| 1592 | + ACBBACA34A828BA745E638F8995D046D /* QMUIAssetsGroup.h in Headers */, | |
| 1593 | + 96035E9B073EC1D07904CE2F1593B532 /* QMUIAssetsManager.h in Headers */, | |
| 1594 | + 660A1D1203AD51C16F232177F8799D96 /* QMUIButton.h in Headers */, | |
| 1595 | + F4C4CC6A9D0A1531254F4AD168151446 /* QMUICellHeightCache.h in Headers */, | |
| 1596 | + 863A2B060B9C0A96436EB0A020BFE544 /* QMUICellHeightKeyCache.h in Headers */, | |
| 1597 | + 5B371378C8659C3EF89CDD5C143690E2 /* QMUICellSizeKeyCache.h in Headers */, | |
| 1598 | + 27DE268BCFA1D486613EDC748CB68843 /* QMUICollectionViewPagingLayout.h in Headers */, | |
| 1599 | + E4DFDDCD52E8631110E020056E266615 /* QMUICommonDefines.h in Headers */, | |
| 1600 | + B622DB61B9F9046E1D1CA6BE0DFE12A9 /* QMUICommonTableViewController.h in Headers */, | |
| 1601 | + 75B18CA68DA8932897E163F9F02DFCBA /* QMUICommonViewController.h in Headers */, | |
| 1602 | + FEE46FC46CFB3E5E6463569E517ABA31 /* QMUIConfiguration.h in Headers */, | |
| 1603 | + 21CFFF598374C80536EDA2CF8B24592F /* QMUIConfigurationMacros.h in Headers */, | |
| 1604 | + 5B75C61981045AE24D38737E205D6E88 /* QMUICore.h in Headers */, | |
| 1605 | + F5D2B0B83C6E6BF0248C1DCABF3B9F7D /* QMUIDialogViewController.h in Headers */, | |
| 1606 | + 79D5D1C6B69F59084F60CCA7B61F9F68 /* QMUIEmotionInputManager.h in Headers */, | |
| 1607 | + 0BC19C95BA500FAEAEF95B322E339C32 /* QMUIEmotionView.h in Headers */, | |
| 1608 | + 34B13EFE6E4BBB63CD2B086CE25566DC /* QMUIEmptyView.h in Headers */, | |
| 1609 | + D1B9CD9E106C2A4E5AEF860A7D4D1E0A /* QMUIFillButton.h in Headers */, | |
| 1610 | + 239D1DB67F82FA6443D62E7C3120F9CC /* QMUIFloatLayoutView.h in Headers */, | |
| 1611 | + 0765ECEAB308493EB551827C1C2ACA86 /* QMUIGhostButton.h in Headers */, | |
| 1612 | + 572DBDBCC74F6D6B1F36F140A47752C2 /* QMUIGridView.h in Headers */, | |
| 1613 | + 6B77F1488C75BA9EED4FF61A49F04118 /* QMUIHelper.h in Headers */, | |
| 1614 | + 7532F5BED2D85D11F713385709C73E28 /* QMUIImagePickerCollectionViewCell.h in Headers */, | |
| 1615 | + 13C05A021EBF8121D427439FB55481CE /* QMUIImagePickerHelper.h in Headers */, | |
| 1616 | + 69B48EF94EE9BA93E33023197A5A5AA3 /* QMUIImagePickerPreviewViewController.h in Headers */, | |
| 1617 | + C8221C1D119ACF55C393C1743A3FB372 /* QMUIImagePickerViewController.h in Headers */, | |
| 1618 | + 138777F52355C6C52418A545482A6922 /* QMUIImagePreviewView.h in Headers */, | |
| 1619 | + A666D3CBE2842EB2CB91628FE0115772 /* QMUIImagePreviewViewController.h in Headers */, | |
| 1620 | + 30ACAAED92CF8D20002D8A46E54B03E2 /* QMUIImagePreviewViewTransitionAnimator.h in Headers */, | |
| 1621 | + 53B45E2E497FD898E01240B48D372D4B /* QMUIKeyboardManager.h in Headers */, | |
| 1622 | + F20ECBD420F31706D1F43022633D841F /* QMUIKit-umbrella.h in Headers */, | |
| 1623 | + E2B45E36D03AFC5444271376242B3209 /* QMUIKit.h in Headers */, | |
| 1624 | + 603F9AAEBBAC600E6ED4CC2FE34256B1 /* QMUILabel.h in Headers */, | |
| 1625 | + 51FED8703606858694729F6B6C1170E9 /* QMUILinkButton.h in Headers */, | |
| 1626 | + D17CC538795BEBFE008B0CE8AB55ABF0 /* QMUILog.h in Headers */, | |
| 1627 | + BD2422B1CAD48C6AD14E111E4EDBFCAE /* QMUILogger+QMUIConfigurationTemplate.h in Headers */, | |
| 1628 | + EBAE6FDA1BF89DF407F3B0EC907D805B /* QMUILogger.h in Headers */, | |
| 1629 | + DB5D521B993E4648AF95A85D20F30F92 /* QMUILogItem.h in Headers */, | |
| 1630 | + D0D39912C67FCCCF7C1DE2CFFD1FEAB1 /* QMUILogManagerViewController.h in Headers */, | |
| 1631 | + 8BBD235546B02A200443701F2FA9EAF4 /* QMUILogNameManager.h in Headers */, | |
| 1632 | + 067F419D0FF2E93CB1DCD37DBEE5B49F /* QMUIMarqueeLabel.h in Headers */, | |
| 1633 | + CFA3883520997D51AE003BF44AF6FE6D /* QMUIModalPresentationViewController.h in Headers */, | |
| 1634 | + 1CA287FD68E982480AA697EAA582EC04 /* QMUIMoreOperationController.h in Headers */, | |
| 1635 | + CF78C75D705FBB9DD4B1CCE4FEB881D8 /* QMUIMultipleDelegates.h in Headers */, | |
| 1636 | + BA1681F23A6509EBEF341D743FF65C81 /* QMUINavigationBarScrollingAnimator.h in Headers */, | |
| 1637 | + CD065104F4D821DAFE0B7B6865431218 /* QMUINavigationBarScrollingSnapAnimator.h in Headers */, | |
| 1638 | + CE458613F4097179D361425EF6F6F3F8 /* QMUINavigationButton.h in Headers */, | |
| 1639 | + BE89A377DF3ABF9FBBF4FEC87D48DBAA /* QMUINavigationController.h in Headers */, | |
| 1640 | + B4D7C1DB3711E2F44513FE11234AE1C5 /* QMUINavigationTitleView.h in Headers */, | |
| 1641 | + 25A85E1E90B6F777FAF4AF4AF4DE293F /* QMUIOrderedDictionary.h in Headers */, | |
| 1642 | + 2E6C2D24FA62DB531352370CAA59C4E8 /* QMUIPieProgressView.h in Headers */, | |
| 1643 | + 8B276D5754E026801E753F7607A50557 /* QMUIPopupContainerView.h in Headers */, | |
| 1644 | + 109E01EFD1168CCC4EC59544A4E4CA53 /* QMUIPopupMenuBaseItem.h in Headers */, | |
| 1645 | + 5D02540981378B2217BAF733944E0FCE /* QMUIPopupMenuButtonItem.h in Headers */, | |
| 1646 | + 67AEF863454B32D4576A0C5E4E563AEE /* QMUIPopupMenuItemProtocol.h in Headers */, | |
| 1647 | + 050B8E677AA0C42758A7F521A8C1E649 /* QMUIPopupMenuView.h in Headers */, | |
| 1648 | + FA0FDA087FD9EC9BA0A0555BCBCF094D /* QMUIRuntime.h in Headers */, | |
| 1649 | + F9D2D2AD2771453B9B7F886D8F71D61B /* QMUIScrollAnimator.h in Headers */, | |
| 1650 | + 3F1FBC1F4028E5D807B7B4AAF5B92FF0 /* QMUISearchBar.h in Headers */, | |
| 1651 | + 6BA5527AC6F91F6B602E7960525E1D8C /* QMUISearchController.h in Headers */, | |
| 1652 | + D12746B7226D68EB932B1626C3F0BBD4 /* QMUISegmentedControl.h in Headers */, | |
| 1653 | + 852F3EDB138458CC03FAC9CB579A3689 /* QMUISlider.h in Headers */, | |
| 1654 | + F0808213C221E49070DFD6EE7812627C /* QMUIStaticTableViewCellData.h in Headers */, | |
| 1655 | + 88F197599E02329BF382B8598E3B6F41 /* QMUIStaticTableViewCellDataSource.h in Headers */, | |
| 1656 | + 2CFC4963761A6DC980778E9B7860F1D9 /* QMUITabBarViewController.h in Headers */, | |
| 1657 | + 71F7535C1830D37A25B66777F348EE60 /* QMUITableView.h in Headers */, | |
| 1658 | + 044E63409CC434EE3F332CCC5CCC3FAB /* QMUITableViewCell.h in Headers */, | |
| 1659 | + 9FAFC618825B666DF1BDA17BBD322026 /* QMUITableViewHeaderFooterView.h in Headers */, | |
| 1660 | + 9FC72123B8CDB9464192715EF73E3ED4 /* QMUITableViewProtocols.h in Headers */, | |
| 1661 | + CA6FD80163E52B73050C55DA2711E52D /* QMUITestView.h in Headers */, | |
| 1662 | + F34C12FEC631A7FE314E0E962F36F43B /* QMUITextField.h in Headers */, | |
| 1663 | + 29F40F971E1CAB133C1E30B38797B3D0 /* QMUITextView.h in Headers */, | |
| 1664 | + 47A76A40567986AC0FF4BD5A3CC5AB4B /* QMUITips.h in Headers */, | |
| 1665 | + 8935ADAC0EC0470DDCF626B77464008B /* QMUIToastAnimator.h in Headers */, | |
| 1666 | + C244AAD0CD02E739238CD29FA40837BE /* QMUIToastBackgroundView.h in Headers */, | |
| 1667 | + DAD58CDD9301C38FC081CA26BCF109A3 /* QMUIToastContentView.h in Headers */, | |
| 1668 | + 3DDBEB5201B6CE4E2F113C5E281851F5 /* QMUIToastView.h in Headers */, | |
| 1669 | + 0850AB044FB7712332601C681BC5667E /* QMUIToolbarButton.h in Headers */, | |
| 1670 | + F1C1740DCFF9E490327923E34B3ABDA0 /* QMUIVisualEffectView.h in Headers */, | |
| 1671 | + 19992FFD293C94085B9B02E8AF335660 /* QMUIWeakObjectContainer.h in Headers */, | |
| 1672 | + 15EC11367BF3F29F4CF28E0072BAEAC0 /* QMUIZoomImageView.h in Headers */, | |
| 1673 | + EEC8E642F42B515E984D5CA0AB7A21EF /* UIActivityIndicatorView+QMUI.h in Headers */, | |
| 1674 | + 07D0A251FB1DEBF0F81F5BEDD397F1A1 /* UIBarItem+QMUI.h in Headers */, | |
| 1675 | + D0F54D5C79F53BF3DFED55A813D4166A /* UIBarItem+QMUIBadge.h in Headers */, | |
| 1676 | + B9AABA775CD41780F6205D728054AB60 /* UIBezierPath+QMUI.h in Headers */, | |
| 1677 | + 4DFBBCCFABFE4650F884093721F8AEEB /* UIButton+QMUI.h in Headers */, | |
| 1678 | + 532021B01899A661D97AF89D9EE3F75C /* UICollectionView+QMUI.h in Headers */, | |
| 1679 | + 153FA9CCC986D305084C3FF7499F56EB /* UICollectionView+QMUICellSizeKeyCache.h in Headers */, | |
| 1680 | + 47EA4681229C8D55809AC682B8F185EF /* UIColor+QMUI.h in Headers */, | |
| 1681 | + 173FA1F323A0C312FD0C2706CC74FBAC /* UIControl+QMUI.h in Headers */, | |
| 1682 | + 66F87778B8223B65E8153E4FFC4B2CF8 /* UIFont+QMUI.h in Headers */, | |
| 1683 | + A4F11AC308087D0F0AFEB49FCBBF8697 /* UIGestureRecognizer+QMUI.h in Headers */, | |
| 1684 | + AC2AA5412BC9EF77F9F8FEC818E23E6A /* UIImage+QMUI.h in Headers */, | |
| 1685 | + 549E21A28EF58BE2A186CD02A56784F1 /* UIImageView+QMUI.h in Headers */, | |
| 1686 | + EDC79068CA74F0022F89100C7FE77E78 /* UIInterface+QMUI.h in Headers */, | |
| 1687 | + 36E584FFF03074230E44817256D61776 /* UILabel+QMUI.h in Headers */, | |
| 1688 | + 9EC4ED76FB1B9CFE308D01B0601F5F56 /* UINavigationBar+QMUI.h in Headers */, | |
| 1689 | + 8C3B69994C085712D8967A966460E525 /* UINavigationBar+Transition.h in Headers */, | |
| 1690 | + 69E91DB2DCE38B2B710B216E5303868F /* UINavigationController+NavigationBarTransition.h in Headers */, | |
| 1691 | + 4E8A2A7588C77554290E52B011B2A406 /* UINavigationController+QMUI.h in Headers */, | |
| 1692 | + ACCE5E0D8166B49D99D32B9F90CABCEE /* UIScrollView+QMUI.h in Headers */, | |
| 1693 | + C9322F5C653D81D8DA67208957EA7993 /* UISearchBar+QMUI.h in Headers */, | |
| 1694 | + 65530772CD353580F33EDAAC088BE2F8 /* UITabBar+QMUI.h in Headers */, | |
| 1695 | + 6FD43F41E193CEBCB25087BC8BA77A29 /* UITabBarItem+QMUI.h in Headers */, | |
| 1696 | + EB165FA0CD5AA275D36FCCCB8D5F18D8 /* UITableView+QMUI.h in Headers */, | |
| 1697 | + 02E032D8A06EA8598600B3872E8337A8 /* UITableView+QMUICellHeightKeyCache.h in Headers */, | |
| 1698 | + F09A6362313341DF40029B2B1A3A8D3C /* UITableView+QMUIStaticCell.h in Headers */, | |
| 1699 | + CABF3D00033738EE079501804D193FC0 /* UITableViewCell+QMUI.h in Headers */, | |
| 1700 | + 5FEF200CF47A9022C30E788C3B7FBAB8 /* UITextField+QMUI.h in Headers */, | |
| 1701 | + 1DA7F6B29BAE3F8AC5EB95A83A5324CC /* UITextView+QMUI.h in Headers */, | |
| 1702 | + D362FBDA7EF11FBAC6372DF3289C8F6A /* UIView+QMUI.h in Headers */, | |
| 1703 | + 706F13F091BF72E30CDA026DCA56AF72 /* UIViewController+QMUI.h in Headers */, | |
| 1704 | + A991EEBAE37E682E1A6E7401B9D8DC75 /* UIWindow+QMUI.h in Headers */, | |
| 1705 | + ); | |
| 1706 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1707 | + }; | |
| 1708 | + 306E36D3B440DCDB2C07CDAF6B35EE5C /* Headers */ = { | |
| 1709 | + isa = PBXHeadersBuildPhase; | |
| 1710 | + buildActionMask = 2147483647; | |
| 1711 | + files = ( | |
| 1712 | + 4EBFB8D621D605AE00735306 /* CNLiveEmptyView.h in Headers */, | |
| 1713 | + 893A50D9E03C20D1A55341AB48637043 /* CNLiveEmptyView-umbrella.h in Headers */, | |
| 1714 | + ); | |
| 1715 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1716 | + }; | |
| 1717 | + 83895507D48FD28CA214D3DEFB6990E3 /* Headers */ = { | |
| 1718 | + isa = PBXHeadersBuildPhase; | |
| 1719 | + buildActionMask = 2147483647; | |
| 1720 | + files = ( | |
| 1721 | + 55A949806B22C97EAE000B1FE4475693 /* Pods-CNLiveEmptyView_Example-umbrella.h in Headers */, | |
| 1722 | + ); | |
| 1723 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1724 | + }; | |
| 1725 | + AF251415B5D66D38FD92D6E6C9E4E280 /* Headers */ = { | |
| 1726 | + isa = PBXHeadersBuildPhase; | |
| 1727 | + buildActionMask = 2147483647; | |
| 1728 | + files = ( | |
| 1729 | + 5B835A34D69F25B06E2D88CFC3B922C1 /* Pods-CNLiveEmptyView_Tests-umbrella.h in Headers */, | |
| 1730 | + ); | |
| 1731 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1732 | + }; | |
| 1733 | +/* End PBXHeadersBuildPhase section */ | |
| 1734 | + | |
| 1735 | +/* Begin PBXNativeTarget section */ | |
| 1736 | + 0CEBCCEEA24DC8482543FF12CB5E56AB /* QMUIKit */ = { | |
| 1737 | + isa = PBXNativeTarget; | |
| 1738 | + buildConfigurationList = 445069F4E0EFFCF884C201C3C440F323 /* Build configuration list for PBXNativeTarget "QMUIKit" */; | |
| 1739 | + buildPhases = ( | |
| 1740 | + 223EC8138AD94070D6327FDA0EA7D9C1 /* Headers */, | |
| 1741 | + 7DA63408EEFDA9CA708C08FC05E34D4E /* Sources */, | |
| 1742 | + A64EE208B69BBC46BC9E4B6BD4E9D4AB /* Frameworks */, | |
| 1743 | + B3C5FEE22E2E2B37E00DC98A579D2458 /* Resources */, | |
| 1744 | + ); | |
| 1745 | + buildRules = ( | |
| 1746 | + ); | |
| 1747 | + dependencies = ( | |
| 1748 | + ); | |
| 1749 | + name = QMUIKit; | |
| 1750 | + productName = QMUIKit; | |
| 1751 | + productReference = 3430509A8B18E41D42C8E93B541332EC /* QMUIKit.framework */; | |
| 1752 | + productType = "com.apple.product-type.framework"; | |
| 1753 | + }; | |
| 1754 | + 43B0DA3AA48198ACED5A3CF5259C774F /* Pods-CNLiveEmptyView_Example */ = { | |
| 1755 | + isa = PBXNativeTarget; | |
| 1756 | + buildConfigurationList = C29DF5FC00803D294A3F0B4EDF5FD285 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Example" */; | |
| 1757 | + buildPhases = ( | |
| 1758 | + 83895507D48FD28CA214D3DEFB6990E3 /* Headers */, | |
| 1759 | + 104983F9E8204C76786271A428A1AAE1 /* Sources */, | |
| 1760 | + A2FC4013BF043B705DCF81D0B1C5A370 /* Frameworks */, | |
| 1761 | + B7A4E1380A55FCBF008C60207F6CEC85 /* Resources */, | |
| 1762 | + ); | |
| 1763 | + buildRules = ( | |
| 1764 | + ); | |
| 1765 | + dependencies = ( | |
| 1766 | + 69B82AE6BA01B1C61C255B0F8B613324 /* PBXTargetDependency */, | |
| 1767 | + 5C232F0F15EE5482FFFCB5A679BC2AB2 /* PBXTargetDependency */, | |
| 1768 | + ); | |
| 1769 | + name = "Pods-CNLiveEmptyView_Example"; | |
| 1770 | + productName = "Pods-CNLiveEmptyView_Example"; | |
| 1771 | + productReference = A204DB48B7DC8BEF2C40984796A23B85 /* Pods_CNLiveEmptyView_Example.framework */; | |
| 1772 | + productType = "com.apple.product-type.framework"; | |
| 1773 | + }; | |
| 1774 | + D504282C30860CD6EC7218E45B4217CE /* CNLiveEmptyView */ = { | |
| 1775 | + isa = PBXNativeTarget; | |
| 1776 | + buildConfigurationList = 8DFBB612E5CD7C44194626B1D4D760AE /* Build configuration list for PBXNativeTarget "CNLiveEmptyView" */; | |
| 1777 | + buildPhases = ( | |
| 1778 | + 306E36D3B440DCDB2C07CDAF6B35EE5C /* Headers */, | |
| 1779 | + E9C83D8DA81BB239973B20021C974DCB /* Sources */, | |
| 1780 | + 7F04912144E20CF64C0E7431BF39CC3B /* Frameworks */, | |
| 1781 | + B125DD5E5F26A4415B418B3E3A7E44F3 /* Resources */, | |
| 1782 | + ); | |
| 1783 | + buildRules = ( | |
| 1784 | + ); | |
| 1785 | + dependencies = ( | |
| 1786 | + 6FC7F51A07DC97570293DB944BA72173 /* PBXTargetDependency */, | |
| 1787 | + ); | |
| 1788 | + name = CNLiveEmptyView; | |
| 1789 | + productName = CNLiveEmptyView; | |
| 1790 | + productReference = 9D3622F9AD5484F18ABFF1B11583736C /* CNLiveEmptyView.framework */; | |
| 1791 | + productType = "com.apple.product-type.framework"; | |
| 1792 | + }; | |
| 1793 | + EE9172C60A1F7C178B32B8B671772F4C /* Pods-CNLiveEmptyView_Tests */ = { | |
| 1794 | + isa = PBXNativeTarget; | |
| 1795 | + buildConfigurationList = 8AF892FF193E85F2DF5EB6A8F5E1FAF4 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Tests" */; | |
| 1796 | + buildPhases = ( | |
| 1797 | + AF251415B5D66D38FD92D6E6C9E4E280 /* Headers */, | |
| 1798 | + 0A80FD32D44D870C7A539CCE7CF3802D /* Sources */, | |
| 1799 | + 3FB64F9A0E890DA8CFA3FD2F765B67F7 /* Frameworks */, | |
| 1800 | + B5AAD4E6C69197AB53CE7520418428D4 /* Resources */, | |
| 1801 | + ); | |
| 1802 | + buildRules = ( | |
| 1803 | + ); | |
| 1804 | + dependencies = ( | |
| 1805 | + F3614C45BD17552B3CE190C34511063A /* PBXTargetDependency */, | |
| 1806 | + 3F5D74826E7C4F27F6DA44987F8900A3 /* PBXTargetDependency */, | |
| 1807 | + ); | |
| 1808 | + name = "Pods-CNLiveEmptyView_Tests"; | |
| 1809 | + productName = "Pods-CNLiveEmptyView_Tests"; | |
| 1810 | + productReference = 40DD84E4741483E717928ECD5BC7511A /* Pods_CNLiveEmptyView_Tests.framework */; | |
| 1811 | + productType = "com.apple.product-type.framework"; | |
| 1812 | + }; | |
| 1813 | +/* End PBXNativeTarget section */ | |
| 1814 | + | |
| 1815 | +/* Begin PBXProject section */ | |
| 1816 | + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { | |
| 1817 | + isa = PBXProject; | |
| 1818 | + attributes = { | |
| 1819 | + LastSwiftUpdateCheck = 0930; | |
| 1820 | + LastUpgradeCheck = 0930; | |
| 1821 | + }; | |
| 1822 | + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; | |
| 1823 | + compatibilityVersion = "Xcode 3.2"; | |
| 1824 | + developmentRegion = English; | |
| 1825 | + hasScannedForEncodings = 0; | |
| 1826 | + knownRegions = ( | |
| 1827 | + en, | |
| 1828 | + ); | |
| 1829 | + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; | |
| 1830 | + productRefGroup = 1FEC0F572FD5AF79CFC1F7A3B09E6802 /* Products */; | |
| 1831 | + projectDirPath = ""; | |
| 1832 | + projectRoot = ""; | |
| 1833 | + targets = ( | |
| 1834 | + D504282C30860CD6EC7218E45B4217CE /* CNLiveEmptyView */, | |
| 1835 | + 43B0DA3AA48198ACED5A3CF5259C774F /* Pods-CNLiveEmptyView_Example */, | |
| 1836 | + EE9172C60A1F7C178B32B8B671772F4C /* Pods-CNLiveEmptyView_Tests */, | |
| 1837 | + 0CEBCCEEA24DC8482543FF12CB5E56AB /* QMUIKit */, | |
| 1838 | + ); | |
| 1839 | + }; | |
| 1840 | +/* End PBXProject section */ | |
| 1841 | + | |
| 1842 | +/* Begin PBXResourcesBuildPhase section */ | |
| 1843 | + B125DD5E5F26A4415B418B3E3A7E44F3 /* Resources */ = { | |
| 1844 | + isa = PBXResourcesBuildPhase; | |
| 1845 | + buildActionMask = 2147483647; | |
| 1846 | + files = ( | |
| 1847 | + ); | |
| 1848 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1849 | + }; | |
| 1850 | + B3C5FEE22E2E2B37E00DC98A579D2458 /* Resources */ = { | |
| 1851 | + isa = PBXResourcesBuildPhase; | |
| 1852 | + buildActionMask = 2147483647; | |
| 1853 | + files = ( | |
| 1854 | + 9A8AA8E0A4C984E444249E750E9BB153 /* QMUIResources.bundle in Resources */, | |
| 1855 | + ); | |
| 1856 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1857 | + }; | |
| 1858 | + B5AAD4E6C69197AB53CE7520418428D4 /* Resources */ = { | |
| 1859 | + isa = PBXResourcesBuildPhase; | |
| 1860 | + buildActionMask = 2147483647; | |
| 1861 | + files = ( | |
| 1862 | + ); | |
| 1863 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1864 | + }; | |
| 1865 | + B7A4E1380A55FCBF008C60207F6CEC85 /* Resources */ = { | |
| 1866 | + isa = PBXResourcesBuildPhase; | |
| 1867 | + buildActionMask = 2147483647; | |
| 1868 | + files = ( | |
| 1869 | + ); | |
| 1870 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1871 | + }; | |
| 1872 | +/* End PBXResourcesBuildPhase section */ | |
| 1873 | + | |
| 1874 | +/* Begin PBXSourcesBuildPhase section */ | |
| 1875 | + 0A80FD32D44D870C7A539CCE7CF3802D /* Sources */ = { | |
| 1876 | + isa = PBXSourcesBuildPhase; | |
| 1877 | + buildActionMask = 2147483647; | |
| 1878 | + files = ( | |
| 1879 | + 8252B8D53EB29E381C87E3205F960BD5 /* Pods-CNLiveEmptyView_Tests-dummy.m in Sources */, | |
| 1880 | + ); | |
| 1881 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1882 | + }; | |
| 1883 | + 104983F9E8204C76786271A428A1AAE1 /* Sources */ = { | |
| 1884 | + isa = PBXSourcesBuildPhase; | |
| 1885 | + buildActionMask = 2147483647; | |
| 1886 | + files = ( | |
| 1887 | + F234F3607CA45F890D06C59FE40D990B /* Pods-CNLiveEmptyView_Example-dummy.m in Sources */, | |
| 1888 | + ); | |
| 1889 | + runOnlyForDeploymentPostprocessing = 0; | |
| 1890 | + }; | |
| 1891 | + 7DA63408EEFDA9CA708C08FC05E34D4E /* Sources */ = { | |
| 1892 | + isa = PBXSourcesBuildPhase; | |
| 1893 | + buildActionMask = 2147483647; | |
| 1894 | + files = ( | |
| 1895 | + F3A9BDE3BD542EF790D92853E2F3852E /* CAAnimation+QMUI.m in Sources */, | |
| 1896 | + CFB2546F3051476945E0E22D7DC158CB /* CALayer+QMUI.m in Sources */, | |
| 1897 | + B90121369921536553F2AF8CF0FE9ADB /* NSArray+QMUI.m in Sources */, | |
| 1898 | + 33EA7FEA3D7774816159CB71AEBAEBE5 /* NSAttributedString+QMUI.m in Sources */, | |
| 1899 | + 9759B25B95BAEDCA1AB89E676892E205 /* NSCharacterSet+QMUI.m in Sources */, | |
| 1900 | + 4A5A2CFF3B47B40715FE0278C404FAC9 /* NSNumber+QMUI.m in Sources */, | |
| 1901 | + 744C224A79AA914C6B3E99C4F509C8BB /* NSObject+QMUI.m in Sources */, | |
| 1902 | + 832C765B8B9112BCD3895BAD14C37651 /* NSObject+QMUIMultipleDelegates.m in Sources */, | |
| 1903 | + 2D43C5351A1A685DDEEE66107C53235E /* NSParagraphStyle+QMUI.m in Sources */, | |
| 1904 | + 9DD16B2565AE9078FDCE3EDA50E5B272 /* NSPointerArray+QMUI.m in Sources */, | |
| 1905 | + AC6368B1B0949F0526DF616A851DBC09 /* NSString+QMUI.m in Sources */, | |
| 1906 | + 13FB38CEF275F7051CEC1B444D774D53 /* NSURL+QMUI.m in Sources */, | |
| 1907 | + B3495CDD0AD0C8CB993828B2F0E5CEA4 /* QMUIAlbumViewController.m in Sources */, | |
| 1908 | + 20DA0D7D7AB9CD22E580A445DB63CFB5 /* QMUIAlertController.m in Sources */, | |
| 1909 | + 88088792874F872F956F1DFE43C7FB66 /* QMUIAsset.m in Sources */, | |
| 1910 | + FD661AE2F3DF12AEF67417289801DC01 /* QMUIAssetsGroup.m in Sources */, | |
| 1911 | + 40B265C93EFD57C26BA830BFB6C01DFD /* QMUIAssetsManager.m in Sources */, | |
| 1912 | + F842676001D4276D9BD0A59E50BFF564 /* QMUIButton.m in Sources */, | |
| 1913 | + B0B5B4810E8A64913EF2A61B1D4E85BA /* QMUICellHeightCache.m in Sources */, | |
| 1914 | + FDA15AE79A33E89B910C734CC77EC2DA /* QMUICellHeightKeyCache.m in Sources */, | |
| 1915 | + 2988F60D450EDD01CAFC7A2B404F4FFB /* QMUICellSizeKeyCache.m in Sources */, | |
| 1916 | + BE25465C00FF72FA736C5205BB395BDC /* QMUICollectionViewPagingLayout.m in Sources */, | |
| 1917 | + B111998DAD0B843628496CBFD83425AC /* QMUICommonTableViewController.m in Sources */, | |
| 1918 | + 56BA969B1BC37CA5BBAC4CDDC21311D2 /* QMUICommonViewController.m in Sources */, | |
| 1919 | + B0CDEF37F15EFFBE4C25EA4C22F65570 /* QMUIConfiguration.m in Sources */, | |
| 1920 | + FF32B88621280D983C8170716D4ABF38 /* QMUIDialogViewController.m in Sources */, | |
| 1921 | + 9ECA29620E33BE7DC43E85A199DEAC5C /* QMUIEmotionInputManager.m in Sources */, | |
| 1922 | + BABAA1A68AB5C8A49B4BA900E17B6CC0 /* QMUIEmotionView.m in Sources */, | |
| 1923 | + ECA29C22F773D04744CDD51FC952C465 /* QMUIEmptyView.m in Sources */, | |
| 1924 | + 62F02D594BAF20526CD9A916384E0F0C /* QMUIFillButton.m in Sources */, | |
| 1925 | + A737F3B0CCFBB9154D1BB8C63D565167 /* QMUIFloatLayoutView.m in Sources */, | |
| 1926 | + 7A15B0273F73F2880C98A6D104FC626C /* QMUIGhostButton.m in Sources */, | |
| 1927 | + 2D8F5964C8FD46DD91CEF2D0F45174BD /* QMUIGridView.m in Sources */, | |
| 1928 | + 102740DF85589ADA21E1D44EFF79CB01 /* QMUIHelper.m in Sources */, | |
| 1929 | + 11E6487A5F3B9282B041D17AD39E8C61 /* QMUIImagePickerCollectionViewCell.m in Sources */, | |
| 1930 | + 28DEC08B27687CA3F1A1B085AC933552 /* QMUIImagePickerHelper.m in Sources */, | |
| 1931 | + BA565BA76FCFCB64945ACDED9B93CF97 /* QMUIImagePickerPreviewViewController.m in Sources */, | |
| 1932 | + 4620F644A29CA3A2EB8EBA314DE1AB90 /* QMUIImagePickerViewController.m in Sources */, | |
| 1933 | + 520895FE5AEBACC85FA89B89E0136E25 /* QMUIImagePreviewView.m in Sources */, | |
| 1934 | + 44E4C9ECF14DB228C4E71C8F9698BF09 /* QMUIImagePreviewViewController.m in Sources */, | |
| 1935 | + 22FEF93591CBD77EF59769F22989BFBB /* QMUIImagePreviewViewTransitionAnimator.m in Sources */, | |
| 1936 | + 5BA1DFBE98E64004FBD396A4AE443C1F /* QMUIKeyboardManager.m in Sources */, | |
| 1937 | + 50B53D95649DAE81E417BC9D99F0249D /* QMUIKit-dummy.m in Sources */, | |
| 1938 | + 2CC19FFC5D76149C50904E9F794FF987 /* QMUILabel.m in Sources */, | |
| 1939 | + 332EC9C6470172E2495FE91909FF2928 /* QMUILinkButton.m in Sources */, | |
| 1940 | + CC10EC0EB014A3D30B3CDA1DCB6FDDAA /* QMUILogger+QMUIConfigurationTemplate.m in Sources */, | |
| 1941 | + 77FF50497123246A314F8EBA98EAA061 /* QMUILogger.m in Sources */, | |
| 1942 | + 8791E4C597174065E934BD7C0273E126 /* QMUILogItem.m in Sources */, | |
| 1943 | + 69A5AD03DCAEAF1C12928FA22D265CA4 /* QMUILogManagerViewController.m in Sources */, | |
| 1944 | + 66E60964D6F517B0BE73A88FEAF9BBB7 /* QMUILogNameManager.m in Sources */, | |
| 1945 | + B77D68881786F9A9FC30C0755381D806 /* QMUIMarqueeLabel.m in Sources */, | |
| 1946 | + F9226C34355B57114C3D6F9AAF6F0AB8 /* QMUIModalPresentationViewController.m in Sources */, | |
| 1947 | + 710EAF0A1E70CD1F1679A6BF3F8B02DB /* QMUIMoreOperationController.m in Sources */, | |
| 1948 | + 3653ED7806342BE5F8A05C9582EB80D9 /* QMUIMultipleDelegates.m in Sources */, | |
| 1949 | + 4A36A4490C86B074E81A312C21358ADE /* QMUINavigationBarScrollingAnimator.m in Sources */, | |
| 1950 | + 2F99DEDF912E7559053DC494256C8BA3 /* QMUINavigationBarScrollingSnapAnimator.m in Sources */, | |
| 1951 | + 8FD956A90C29DE86EA05E68061C053FD /* QMUINavigationButton.m in Sources */, | |
| 1952 | + 1BD18ED4A33DAFA8376315729D4397DD /* QMUINavigationController.m in Sources */, | |
| 1953 | + 60C76974A9C030A402DEFF224BE41660 /* QMUINavigationTitleView.m in Sources */, | |
| 1954 | + 83E45A7A3234F51819A2CAC4ED89FBC8 /* QMUIOrderedDictionary.m in Sources */, | |
| 1955 | + 3660A2C63C38B3DD723B7DDE4DCEBF24 /* QMUIPieProgressView.m in Sources */, | |
| 1956 | + 65C106ED57D54C46A9F854D8021D4C78 /* QMUIPopupContainerView.m in Sources */, | |
| 1957 | + 9802D820A75081777C37C806313AEB28 /* QMUIPopupMenuBaseItem.m in Sources */, | |
| 1958 | + 8C97CDAFA5EB1AFC0AA513EEC5DEBC4F /* QMUIPopupMenuButtonItem.m in Sources */, | |
| 1959 | + 7FB128420A4A4ED8BDB70CD777685117 /* QMUIPopupMenuView.m in Sources */, | |
| 1960 | + ECD3A22B4D9A51F3AC28B50275E65CC9 /* QMUIRuntime.m in Sources */, | |
| 1961 | + 7F1A31BBEB77E418A42FCF599A52E745 /* QMUIScrollAnimator.m in Sources */, | |
| 1962 | + 0AC25E08BE252BB0C3D490665EDFC9BE /* QMUISearchBar.m in Sources */, | |
| 1963 | + 6FD0A50CEF93610C162227563963F5B0 /* QMUISearchController.m in Sources */, | |
| 1964 | + DF359F1FE2F2D3EE15FD4BD213B41C60 /* QMUISegmentedControl.m in Sources */, | |
| 1965 | + 157C03F3421FFB239CD738F375E48AEC /* QMUISlider.m in Sources */, | |
| 1966 | + FF22F2C861272B58B6AE24675D631AA2 /* QMUIStaticTableViewCellData.m in Sources */, | |
| 1967 | + 13FE7F48E9386FFD83188B4661932414 /* QMUIStaticTableViewCellDataSource.m in Sources */, | |
| 1968 | + 99C98C01F61406D92655901AA2925E19 /* QMUITabBarViewController.m in Sources */, | |
| 1969 | + 982299F7CE7B9C852EBFCB0274B752D2 /* QMUITableView.m in Sources */, | |
| 1970 | + 82CD21D04DEBC58AC11489B3CA51EC74 /* QMUITableViewCell.m in Sources */, | |
| 1971 | + 1CDC21B9E043200000CD5F1F8B10D55B /* QMUITableViewHeaderFooterView.m in Sources */, | |
| 1972 | + ECECA9258E7100DE9A673D589A17569E /* QMUITestView.m in Sources */, | |
| 1973 | + D10C0446BBB889D2F8A8EEF03089BF84 /* QMUITextField.m in Sources */, | |
| 1974 | + E5ED2775B402369E9D4E335052C48BBB /* QMUITextView.m in Sources */, | |
| 1975 | + 7F42650A00ADCF08F874497F2C7B346D /* QMUITips.m in Sources */, | |
| 1976 | + 5E3329B4BD857374CF4A02D3E13F58CD /* QMUIToastAnimator.m in Sources */, | |
| 1977 | + A4DCC4709D1107C8EDC5F9F345AE2507 /* QMUIToastBackgroundView.m in Sources */, | |
| 1978 | + 5D0B43EF3A01B4ED1D6E95D735CBFDB5 /* QMUIToastContentView.m in Sources */, | |
| 1979 | + 2973D5C62592AFC992DCDA2014D09D56 /* QMUIToastView.m in Sources */, | |
| 1980 | + EE4F62A4240BCBE167D96733B91D3B10 /* QMUIToolbarButton.m in Sources */, | |
| 1981 | + FC88D3BC53A58A202BBCD4EC6D2FFBD4 /* QMUIVisualEffectView.m in Sources */, | |
| 1982 | + 50D9565433231D70240CDAEE680E923D /* QMUIWeakObjectContainer.m in Sources */, | |
| 1983 | + 96D387D27DA9F5DAF57B1204A9E2A543 /* QMUIZoomImageView.m in Sources */, | |
| 1984 | + 9AC141AD3DC86AA5340AAC5D3543B9E9 /* UIActivityIndicatorView+QMUI.m in Sources */, | |
| 1985 | + 4E8E73ABC1220EDA925B18902D685E37 /* UIBarItem+QMUI.m in Sources */, | |
| 1986 | + 818C50D7E6B4DF095BE48DB79295CCE4 /* UIBarItem+QMUIBadge.m in Sources */, | |
| 1987 | + FE4A80EF6D25188583FA623DB6A2070D /* UIBezierPath+QMUI.m in Sources */, | |
| 1988 | + FEEA7B72ADB1D693C1327B0DDA84D457 /* UIButton+QMUI.m in Sources */, | |
| 1989 | + C4152ABC678D29E92E1020B8AF3F2D29 /* UICollectionView+QMUI.m in Sources */, | |
| 1990 | + 762CC9AE3E7CC38C431C812B9DC4529C /* UICollectionView+QMUICellSizeKeyCache.m in Sources */, | |
| 1991 | + E1D93A820EFA5763DED0280AE91AD017 /* UIColor+QMUI.m in Sources */, | |
| 1992 | + 82292FDFBE053776B24EF57E6E66718C /* UIControl+QMUI.m in Sources */, | |
| 1993 | + 7570359A5639426A1D5AA5983B7C4D93 /* UIFont+QMUI.m in Sources */, | |
| 1994 | + 1C45B410E510B597E9E3C385FC9A502B /* UIGestureRecognizer+QMUI.m in Sources */, | |
| 1995 | + F31B75852FE0E93C82CFB5DB136C172B /* UIImage+QMUI.m in Sources */, | |
| 1996 | + 4DA2999292837880F1C89E27A847E132 /* UIImageView+QMUI.m in Sources */, | |
| 1997 | + 1DBA94B4887F15F24C138935B7E96561 /* UIInterface+QMUI.m in Sources */, | |
| 1998 | + 621A7BA7FB61F85AD3B2C4BA2BF61492 /* UILabel+QMUI.m in Sources */, | |
| 1999 | + EA588054EFC790AA86854BB3FD10BF12 /* UINavigationBar+QMUI.m in Sources */, | |
| 2000 | + 2AFC8B91CA4AF9D6D428A582170D1F74 /* UINavigationBar+Transition.m in Sources */, | |
| 2001 | + 90E62F1B64C4C5034065C607C993E7AF /* UINavigationController+NavigationBarTransition.m in Sources */, | |
| 2002 | + 71752476018D28D3D8E6865B3A9897EA /* UINavigationController+QMUI.m in Sources */, | |
| 2003 | + CAF46FED89B6B566AD1051D47B96D0FE /* UIScrollView+QMUI.m in Sources */, | |
| 2004 | + 71BB1890D413103A47A9676B3CB053FA /* UISearchBar+QMUI.m in Sources */, | |
| 2005 | + B5E29C44A500B3F81A1AC8187B067662 /* UITabBar+QMUI.m in Sources */, | |
| 2006 | + C69A1C4C79CA56557FD4A24F1760A326 /* UITabBarItem+QMUI.m in Sources */, | |
| 2007 | + 77E217E44F739491761A925A19227ED9 /* UITableView+QMUI.m in Sources */, | |
| 2008 | + 9397F665EC2B244B9230AB1CA7D73500 /* UITableView+QMUICellHeightKeyCache.m in Sources */, | |
| 2009 | + 980E625A4F2DC2E74E1BAA47A28D9162 /* UITableView+QMUIStaticCell.m in Sources */, | |
| 2010 | + 3F01EBB685AEA172BF7D2F0B6581DC0E /* UITableViewCell+QMUI.m in Sources */, | |
| 2011 | + 312C2FF77B73397245E537A4F942CB2D /* UITextField+QMUI.m in Sources */, | |
| 2012 | + 2377F6526BF4A4441972375D5C450441 /* UITextView+QMUI.m in Sources */, | |
| 2013 | + 504D90ED37E68352082C6D79B14D213C /* UIView+QMUI.m in Sources */, | |
| 2014 | + BC6EBDBB2E019C2A9612ADBF592CC382 /* UIViewController+QMUI.m in Sources */, | |
| 2015 | + 818DECEDE6CE8D1C44C3D1CE9A7306B1 /* UIWindow+QMUI.m in Sources */, | |
| 2016 | + ); | |
| 2017 | + runOnlyForDeploymentPostprocessing = 0; | |
| 2018 | + }; | |
| 2019 | + E9C83D8DA81BB239973B20021C974DCB /* Sources */ = { | |
| 2020 | + isa = PBXSourcesBuildPhase; | |
| 2021 | + buildActionMask = 2147483647; | |
| 2022 | + files = ( | |
| 2023 | + 004CAFA07A654BD6C43C2374A114FE16 /* CNLiveEmptyView-dummy.m in Sources */, | |
| 2024 | + 4EBFB8D721D605AE00735306 /* CNLiveEmptyView.m in Sources */, | |
| 2025 | + ); | |
| 2026 | + runOnlyForDeploymentPostprocessing = 0; | |
| 2027 | + }; | |
| 2028 | +/* End PBXSourcesBuildPhase section */ | |
| 2029 | + | |
| 2030 | +/* Begin PBXTargetDependency section */ | |
| 2031 | + 3F5D74826E7C4F27F6DA44987F8900A3 /* PBXTargetDependency */ = { | |
| 2032 | + isa = PBXTargetDependency; | |
| 2033 | + name = QMUIKit; | |
| 2034 | + target = 0CEBCCEEA24DC8482543FF12CB5E56AB /* QMUIKit */; | |
| 2035 | + targetProxy = C0CB3782696DB06EEAFB377165598512 /* PBXContainerItemProxy */; | |
| 2036 | + }; | |
| 2037 | + 5C232F0F15EE5482FFFCB5A679BC2AB2 /* PBXTargetDependency */ = { | |
| 2038 | + isa = PBXTargetDependency; | |
| 2039 | + name = QMUIKit; | |
| 2040 | + target = 0CEBCCEEA24DC8482543FF12CB5E56AB /* QMUIKit */; | |
| 2041 | + targetProxy = C57D8FAD6992FF1ACADBC51FF31BC6F2 /* PBXContainerItemProxy */; | |
| 2042 | + }; | |
| 2043 | + 69B82AE6BA01B1C61C255B0F8B613324 /* PBXTargetDependency */ = { | |
| 2044 | + isa = PBXTargetDependency; | |
| 2045 | + name = CNLiveEmptyView; | |
| 2046 | + target = D504282C30860CD6EC7218E45B4217CE /* CNLiveEmptyView */; | |
| 2047 | + targetProxy = 46F058EAB977557ABCB3DE72D010CA6F /* PBXContainerItemProxy */; | |
| 2048 | + }; | |
| 2049 | + 6FC7F51A07DC97570293DB944BA72173 /* PBXTargetDependency */ = { | |
| 2050 | + isa = PBXTargetDependency; | |
| 2051 | + name = QMUIKit; | |
| 2052 | + target = 0CEBCCEEA24DC8482543FF12CB5E56AB /* QMUIKit */; | |
| 2053 | + targetProxy = C6B9BE2FF54A29C003587600279BE96E /* PBXContainerItemProxy */; | |
| 2054 | + }; | |
| 2055 | + F3614C45BD17552B3CE190C34511063A /* PBXTargetDependency */ = { | |
| 2056 | + isa = PBXTargetDependency; | |
| 2057 | + name = "Pods-CNLiveEmptyView_Example"; | |
| 2058 | + target = 43B0DA3AA48198ACED5A3CF5259C774F /* Pods-CNLiveEmptyView_Example */; | |
| 2059 | + targetProxy = 7C343FB263765A3A80A624CFDF99735D /* PBXContainerItemProxy */; | |
| 2060 | + }; | |
| 2061 | +/* End PBXTargetDependency section */ | |
| 2062 | + | |
| 2063 | +/* Begin XCBuildConfiguration section */ | |
| 2064 | + 4AEC880577F1CA7A2CAD3B3D854366C4 /* Release */ = { | |
| 2065 | + isa = XCBuildConfiguration; | |
| 2066 | + baseConfigurationReference = 214FBE177F855DB8735D07488C0A2762 /* Pods-CNLiveEmptyView_Tests.release.xcconfig */; | |
| 2067 | + buildSettings = { | |
| 2068 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | |
| 2069 | + CODE_SIGN_IDENTITY = ""; | |
| 2070 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2071 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2072 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2073 | + CURRENT_PROJECT_VERSION = 1; | |
| 2074 | + DEFINES_MODULE = YES; | |
| 2075 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2076 | + DYLIB_CURRENT_VERSION = 1; | |
| 2077 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2078 | + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Info.plist"; | |
| 2079 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2080 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2081 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2082 | + MACH_O_TYPE = staticlib; | |
| 2083 | + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests.modulemap"; | |
| 2084 | + OTHER_LDFLAGS = ""; | |
| 2085 | + OTHER_LIBTOOLFLAGS = ""; | |
| 2086 | + PODS_ROOT = "$(SRCROOT)"; | |
| 2087 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | |
| 2088 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | |
| 2089 | + SDKROOT = iphoneos; | |
| 2090 | + SKIP_INSTALL = YES; | |
| 2091 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2092 | + VALIDATE_PRODUCT = YES; | |
| 2093 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2094 | + VERSION_INFO_PREFIX = ""; | |
| 2095 | + }; | |
| 2096 | + name = Release; | |
| 2097 | + }; | |
| 2098 | + 5B4CB420FB2900C558CE805FEE33DD84 /* Debug */ = { | |
| 2099 | + isa = XCBuildConfiguration; | |
| 2100 | + baseConfigurationReference = 42D89F1774203F4D0B5773774F363BA5 /* Pods-CNLiveEmptyView_Tests.debug.xcconfig */; | |
| 2101 | + buildSettings = { | |
| 2102 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | |
| 2103 | + CODE_SIGN_IDENTITY = ""; | |
| 2104 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2105 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2106 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2107 | + CURRENT_PROJECT_VERSION = 1; | |
| 2108 | + DEFINES_MODULE = YES; | |
| 2109 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2110 | + DYLIB_CURRENT_VERSION = 1; | |
| 2111 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2112 | + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Info.plist"; | |
| 2113 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2114 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2115 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2116 | + MACH_O_TYPE = staticlib; | |
| 2117 | + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Tests/Pods-CNLiveEmptyView_Tests.modulemap"; | |
| 2118 | + OTHER_LDFLAGS = ""; | |
| 2119 | + OTHER_LIBTOOLFLAGS = ""; | |
| 2120 | + PODS_ROOT = "$(SRCROOT)"; | |
| 2121 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | |
| 2122 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | |
| 2123 | + SDKROOT = iphoneos; | |
| 2124 | + SKIP_INSTALL = YES; | |
| 2125 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2126 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2127 | + VERSION_INFO_PREFIX = ""; | |
| 2128 | + }; | |
| 2129 | + name = Debug; | |
| 2130 | + }; | |
| 2131 | + 5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */ = { | |
| 2132 | + isa = XCBuildConfiguration; | |
| 2133 | + buildSettings = { | |
| 2134 | + ALWAYS_SEARCH_USER_PATHS = NO; | |
| 2135 | + CLANG_ANALYZER_NONNULL = YES; | |
| 2136 | + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | |
| 2137 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; | |
| 2138 | + CLANG_CXX_LIBRARY = "libc++"; | |
| 2139 | + CLANG_ENABLE_MODULES = YES; | |
| 2140 | + CLANG_ENABLE_OBJC_ARC = YES; | |
| 2141 | + CLANG_ENABLE_OBJC_WEAK = YES; | |
| 2142 | + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |
| 2143 | + CLANG_WARN_BOOL_CONVERSION = YES; | |
| 2144 | + CLANG_WARN_COMMA = YES; | |
| 2145 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | |
| 2146 | + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |
| 2147 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |
| 2148 | + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | |
| 2149 | + CLANG_WARN_EMPTY_BODY = YES; | |
| 2150 | + CLANG_WARN_ENUM_CONVERSION = YES; | |
| 2151 | + CLANG_WARN_INFINITE_RECURSION = YES; | |
| 2152 | + CLANG_WARN_INT_CONVERSION = YES; | |
| 2153 | + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |
| 2154 | + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |
| 2155 | + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |
| 2156 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |
| 2157 | + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |
| 2158 | + CLANG_WARN_STRICT_PROTOTYPES = YES; | |
| 2159 | + CLANG_WARN_SUSPICIOUS_MOVE = YES; | |
| 2160 | + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | |
| 2161 | + CLANG_WARN_UNREACHABLE_CODE = YES; | |
| 2162 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |
| 2163 | + CODE_SIGNING_ALLOWED = NO; | |
| 2164 | + CODE_SIGNING_REQUIRED = NO; | |
| 2165 | + COPY_PHASE_STRIP = NO; | |
| 2166 | + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | |
| 2167 | + ENABLE_NS_ASSERTIONS = NO; | |
| 2168 | + ENABLE_STRICT_OBJC_MSGSEND = YES; | |
| 2169 | + GCC_C_LANGUAGE_STANDARD = gnu11; | |
| 2170 | + GCC_NO_COMMON_BLOCKS = YES; | |
| 2171 | + GCC_PREPROCESSOR_DEFINITIONS = ( | |
| 2172 | + "POD_CONFIGURATION_RELEASE=1", | |
| 2173 | + "$(inherited)", | |
| 2174 | + ); | |
| 2175 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |
| 2176 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |
| 2177 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | |
| 2178 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |
| 2179 | + GCC_WARN_UNUSED_FUNCTION = YES; | |
| 2180 | + GCC_WARN_UNUSED_VARIABLE = YES; | |
| 2181 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2182 | + MTL_ENABLE_DEBUG_INFO = NO; | |
| 2183 | + MTL_FAST_MATH = YES; | |
| 2184 | + PRODUCT_NAME = "$(TARGET_NAME)"; | |
| 2185 | + STRIP_INSTALLED_PRODUCT = NO; | |
| 2186 | + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; | |
| 2187 | + SWIFT_VERSION = 4.2; | |
| 2188 | + SYMROOT = "${SRCROOT}/../build"; | |
| 2189 | + }; | |
| 2190 | + name = Release; | |
| 2191 | + }; | |
| 2192 | + 858D01EEFE984249A9581D18DBEA53F1 /* Debug */ = { | |
| 2193 | + isa = XCBuildConfiguration; | |
| 2194 | + buildSettings = { | |
| 2195 | + ALWAYS_SEARCH_USER_PATHS = NO; | |
| 2196 | + CLANG_ANALYZER_NONNULL = YES; | |
| 2197 | + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | |
| 2198 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; | |
| 2199 | + CLANG_CXX_LIBRARY = "libc++"; | |
| 2200 | + CLANG_ENABLE_MODULES = YES; | |
| 2201 | + CLANG_ENABLE_OBJC_ARC = YES; | |
| 2202 | + CLANG_ENABLE_OBJC_WEAK = YES; | |
| 2203 | + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |
| 2204 | + CLANG_WARN_BOOL_CONVERSION = YES; | |
| 2205 | + CLANG_WARN_COMMA = YES; | |
| 2206 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | |
| 2207 | + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |
| 2208 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |
| 2209 | + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | |
| 2210 | + CLANG_WARN_EMPTY_BODY = YES; | |
| 2211 | + CLANG_WARN_ENUM_CONVERSION = YES; | |
| 2212 | + CLANG_WARN_INFINITE_RECURSION = YES; | |
| 2213 | + CLANG_WARN_INT_CONVERSION = YES; | |
| 2214 | + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |
| 2215 | + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |
| 2216 | + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |
| 2217 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |
| 2218 | + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |
| 2219 | + CLANG_WARN_STRICT_PROTOTYPES = YES; | |
| 2220 | + CLANG_WARN_SUSPICIOUS_MOVE = YES; | |
| 2221 | + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | |
| 2222 | + CLANG_WARN_UNREACHABLE_CODE = YES; | |
| 2223 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |
| 2224 | + CODE_SIGNING_ALLOWED = NO; | |
| 2225 | + CODE_SIGNING_REQUIRED = NO; | |
| 2226 | + COPY_PHASE_STRIP = NO; | |
| 2227 | + DEBUG_INFORMATION_FORMAT = dwarf; | |
| 2228 | + ENABLE_STRICT_OBJC_MSGSEND = YES; | |
| 2229 | + ENABLE_TESTABILITY = YES; | |
| 2230 | + GCC_C_LANGUAGE_STANDARD = gnu11; | |
| 2231 | + GCC_DYNAMIC_NO_PIC = NO; | |
| 2232 | + GCC_NO_COMMON_BLOCKS = YES; | |
| 2233 | + GCC_OPTIMIZATION_LEVEL = 0; | |
| 2234 | + GCC_PREPROCESSOR_DEFINITIONS = ( | |
| 2235 | + "POD_CONFIGURATION_DEBUG=1", | |
| 2236 | + "DEBUG=1", | |
| 2237 | + "$(inherited)", | |
| 2238 | + ); | |
| 2239 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |
| 2240 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |
| 2241 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | |
| 2242 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |
| 2243 | + GCC_WARN_UNUSED_FUNCTION = YES; | |
| 2244 | + GCC_WARN_UNUSED_VARIABLE = YES; | |
| 2245 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2246 | + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | |
| 2247 | + MTL_FAST_MATH = YES; | |
| 2248 | + ONLY_ACTIVE_ARCH = YES; | |
| 2249 | + PRODUCT_NAME = "$(TARGET_NAME)"; | |
| 2250 | + STRIP_INSTALLED_PRODUCT = NO; | |
| 2251 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; | |
| 2252 | + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | |
| 2253 | + SWIFT_VERSION = 4.2; | |
| 2254 | + SYMROOT = "${SRCROOT}/../build"; | |
| 2255 | + }; | |
| 2256 | + name = Debug; | |
| 2257 | + }; | |
| 2258 | + 8A11E07EA56DC2D99F550CAD519ECC86 /* Debug */ = { | |
| 2259 | + isa = XCBuildConfiguration; | |
| 2260 | + baseConfigurationReference = BE6092B2EA6FB8EA45923D89A94F3BFC /* Pods-CNLiveEmptyView_Example.debug.xcconfig */; | |
| 2261 | + buildSettings = { | |
| 2262 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | |
| 2263 | + CODE_SIGN_IDENTITY = ""; | |
| 2264 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2265 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2266 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2267 | + CURRENT_PROJECT_VERSION = 1; | |
| 2268 | + DEFINES_MODULE = YES; | |
| 2269 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2270 | + DYLIB_CURRENT_VERSION = 1; | |
| 2271 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2272 | + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Info.plist"; | |
| 2273 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2274 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2275 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2276 | + MACH_O_TYPE = staticlib; | |
| 2277 | + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example.modulemap"; | |
| 2278 | + OTHER_LDFLAGS = ""; | |
| 2279 | + OTHER_LIBTOOLFLAGS = ""; | |
| 2280 | + PODS_ROOT = "$(SRCROOT)"; | |
| 2281 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | |
| 2282 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | |
| 2283 | + SDKROOT = iphoneos; | |
| 2284 | + SKIP_INSTALL = YES; | |
| 2285 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2286 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2287 | + VERSION_INFO_PREFIX = ""; | |
| 2288 | + }; | |
| 2289 | + name = Debug; | |
| 2290 | + }; | |
| 2291 | + 976F7CF15B5127448A72286E22DAF9B3 /* Release */ = { | |
| 2292 | + isa = XCBuildConfiguration; | |
| 2293 | + baseConfigurationReference = E9AC5617F0EB54AE3565859FC77D488F /* CNLiveEmptyView.xcconfig */; | |
| 2294 | + buildSettings = { | |
| 2295 | + CODE_SIGN_IDENTITY = ""; | |
| 2296 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2297 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2298 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2299 | + CURRENT_PROJECT_VERSION = 1; | |
| 2300 | + DEFINES_MODULE = YES; | |
| 2301 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2302 | + DYLIB_CURRENT_VERSION = 1; | |
| 2303 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2304 | + GCC_PREFIX_HEADER = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView-prefix.pch"; | |
| 2305 | + INFOPLIST_FILE = "Target Support Files/CNLiveEmptyView/Info.plist"; | |
| 2306 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2307 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2308 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2309 | + MODULEMAP_FILE = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView.modulemap"; | |
| 2310 | + PRODUCT_MODULE_NAME = CNLiveEmptyView; | |
| 2311 | + PRODUCT_NAME = CNLiveEmptyView; | |
| 2312 | + SDKROOT = iphoneos; | |
| 2313 | + SKIP_INSTALL = YES; | |
| 2314 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; | |
| 2315 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2316 | + VALIDATE_PRODUCT = YES; | |
| 2317 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2318 | + VERSION_INFO_PREFIX = ""; | |
| 2319 | + }; | |
| 2320 | + name = Release; | |
| 2321 | + }; | |
| 2322 | + AD18F172FFBAF5D938FF3C7CC1E61692 /* Release */ = { | |
| 2323 | + isa = XCBuildConfiguration; | |
| 2324 | + baseConfigurationReference = 00778AE6A4C57D8DB6DF4F714336FCC3 /* Pods-CNLiveEmptyView_Example.release.xcconfig */; | |
| 2325 | + buildSettings = { | |
| 2326 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | |
| 2327 | + CODE_SIGN_IDENTITY = ""; | |
| 2328 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2329 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2330 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2331 | + CURRENT_PROJECT_VERSION = 1; | |
| 2332 | + DEFINES_MODULE = YES; | |
| 2333 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2334 | + DYLIB_CURRENT_VERSION = 1; | |
| 2335 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2336 | + INFOPLIST_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Info.plist"; | |
| 2337 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2338 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2339 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2340 | + MACH_O_TYPE = staticlib; | |
| 2341 | + MODULEMAP_FILE = "Target Support Files/Pods-CNLiveEmptyView_Example/Pods-CNLiveEmptyView_Example.modulemap"; | |
| 2342 | + OTHER_LDFLAGS = ""; | |
| 2343 | + OTHER_LIBTOOLFLAGS = ""; | |
| 2344 | + PODS_ROOT = "$(SRCROOT)"; | |
| 2345 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | |
| 2346 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | |
| 2347 | + SDKROOT = iphoneos; | |
| 2348 | + SKIP_INSTALL = YES; | |
| 2349 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2350 | + VALIDATE_PRODUCT = YES; | |
| 2351 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2352 | + VERSION_INFO_PREFIX = ""; | |
| 2353 | + }; | |
| 2354 | + name = Release; | |
| 2355 | + }; | |
| 2356 | + C0E382E3D27F3C3636935313F65109B7 /* Debug */ = { | |
| 2357 | + isa = XCBuildConfiguration; | |
| 2358 | + baseConfigurationReference = E9AC5617F0EB54AE3565859FC77D488F /* CNLiveEmptyView.xcconfig */; | |
| 2359 | + buildSettings = { | |
| 2360 | + CODE_SIGN_IDENTITY = ""; | |
| 2361 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2362 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2363 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2364 | + CURRENT_PROJECT_VERSION = 1; | |
| 2365 | + DEFINES_MODULE = YES; | |
| 2366 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2367 | + DYLIB_CURRENT_VERSION = 1; | |
| 2368 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2369 | + GCC_PREFIX_HEADER = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView-prefix.pch"; | |
| 2370 | + INFOPLIST_FILE = "Target Support Files/CNLiveEmptyView/Info.plist"; | |
| 2371 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2372 | + IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |
| 2373 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2374 | + MODULEMAP_FILE = "Target Support Files/CNLiveEmptyView/CNLiveEmptyView.modulemap"; | |
| 2375 | + PRODUCT_MODULE_NAME = CNLiveEmptyView; | |
| 2376 | + PRODUCT_NAME = CNLiveEmptyView; | |
| 2377 | + SDKROOT = iphoneos; | |
| 2378 | + SKIP_INSTALL = YES; | |
| 2379 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; | |
| 2380 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2381 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2382 | + VERSION_INFO_PREFIX = ""; | |
| 2383 | + }; | |
| 2384 | + name = Debug; | |
| 2385 | + }; | |
| 2386 | + E3EA832D43C70C2BE7933A64748130FD /* Debug */ = { | |
| 2387 | + isa = XCBuildConfiguration; | |
| 2388 | + baseConfigurationReference = 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */; | |
| 2389 | + buildSettings = { | |
| 2390 | + CODE_SIGN_IDENTITY = ""; | |
| 2391 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2392 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2393 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2394 | + CURRENT_PROJECT_VERSION = 1; | |
| 2395 | + DEFINES_MODULE = YES; | |
| 2396 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2397 | + DYLIB_CURRENT_VERSION = 1; | |
| 2398 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2399 | + GCC_PREFIX_HEADER = "Target Support Files/QMUIKit/QMUIKit-prefix.pch"; | |
| 2400 | + INFOPLIST_FILE = "Target Support Files/QMUIKit/Info.plist"; | |
| 2401 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2402 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | |
| 2403 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2404 | + MODULEMAP_FILE = "Target Support Files/QMUIKit/QMUIKit.modulemap"; | |
| 2405 | + PRODUCT_MODULE_NAME = QMUIKit; | |
| 2406 | + PRODUCT_NAME = QMUIKit; | |
| 2407 | + SDKROOT = iphoneos; | |
| 2408 | + SKIP_INSTALL = YES; | |
| 2409 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; | |
| 2410 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2411 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2412 | + VERSION_INFO_PREFIX = ""; | |
| 2413 | + }; | |
| 2414 | + name = Debug; | |
| 2415 | + }; | |
| 2416 | + E568C344052526501B59C59388EBE3C6 /* Release */ = { | |
| 2417 | + isa = XCBuildConfiguration; | |
| 2418 | + baseConfigurationReference = 09DE4495D1599AE4F813CB26757138C6 /* QMUIKit.xcconfig */; | |
| 2419 | + buildSettings = { | |
| 2420 | + CODE_SIGN_IDENTITY = ""; | |
| 2421 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | |
| 2422 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | |
| 2423 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | |
| 2424 | + CURRENT_PROJECT_VERSION = 1; | |
| 2425 | + DEFINES_MODULE = YES; | |
| 2426 | + DYLIB_COMPATIBILITY_VERSION = 1; | |
| 2427 | + DYLIB_CURRENT_VERSION = 1; | |
| 2428 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | |
| 2429 | + GCC_PREFIX_HEADER = "Target Support Files/QMUIKit/QMUIKit-prefix.pch"; | |
| 2430 | + INFOPLIST_FILE = "Target Support Files/QMUIKit/Info.plist"; | |
| 2431 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | |
| 2432 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | |
| 2433 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | |
| 2434 | + MODULEMAP_FILE = "Target Support Files/QMUIKit/QMUIKit.modulemap"; | |
| 2435 | + PRODUCT_MODULE_NAME = QMUIKit; | |
| 2436 | + PRODUCT_NAME = QMUIKit; | |
| 2437 | + SDKROOT = iphoneos; | |
| 2438 | + SKIP_INSTALL = YES; | |
| 2439 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; | |
| 2440 | + TARGETED_DEVICE_FAMILY = "1,2"; | |
| 2441 | + VALIDATE_PRODUCT = YES; | |
| 2442 | + VERSIONING_SYSTEM = "apple-generic"; | |
| 2443 | + VERSION_INFO_PREFIX = ""; | |
| 2444 | + }; | |
| 2445 | + name = Release; | |
| 2446 | + }; | |
| 2447 | +/* End XCBuildConfiguration section */ | |
| 2448 | + | |
| 2449 | +/* Begin XCConfigurationList section */ | |
| 2450 | + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { | |
| 2451 | + isa = XCConfigurationList; | |
| 2452 | + buildConfigurations = ( | |
| 2453 | + 858D01EEFE984249A9581D18DBEA53F1 /* Debug */, | |
| 2454 | + 5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */, | |
| 2455 | + ); | |
| 2456 | + defaultConfigurationIsVisible = 0; | |
| 2457 | + defaultConfigurationName = Release; | |
| 2458 | + }; | |
| 2459 | + 445069F4E0EFFCF884C201C3C440F323 /* Build configuration list for PBXNativeTarget "QMUIKit" */ = { | |
| 2460 | + isa = XCConfigurationList; | |
| 2461 | + buildConfigurations = ( | |
| 2462 | + E3EA832D43C70C2BE7933A64748130FD /* Debug */, | |
| 2463 | + E568C344052526501B59C59388EBE3C6 /* Release */, | |
| 2464 | + ); | |
| 2465 | + defaultConfigurationIsVisible = 0; | |
| 2466 | + defaultConfigurationName = Release; | |
| 2467 | + }; | |
| 2468 | + 8AF892FF193E85F2DF5EB6A8F5E1FAF4 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Tests" */ = { | |
| 2469 | + isa = XCConfigurationList; | |
| 2470 | + buildConfigurations = ( | |
| 2471 | + 5B4CB420FB2900C558CE805FEE33DD84 /* Debug */, | |
| 2472 | + 4AEC880577F1CA7A2CAD3B3D854366C4 /* Release */, | |
| 2473 | + ); | |
| 2474 | + defaultConfigurationIsVisible = 0; | |
| 2475 | + defaultConfigurationName = Release; | |
| 2476 | + }; | |
| 2477 | + 8DFBB612E5CD7C44194626B1D4D760AE /* Build configuration list for PBXNativeTarget "CNLiveEmptyView" */ = { | |
| 2478 | + isa = XCConfigurationList; | |
| 2479 | + buildConfigurations = ( | |
| 2480 | + C0E382E3D27F3C3636935313F65109B7 /* Debug */, | |
| 2481 | + 976F7CF15B5127448A72286E22DAF9B3 /* Release */, | |
| 2482 | + ); | |
| 2483 | + defaultConfigurationIsVisible = 0; | |
| 2484 | + defaultConfigurationName = Release; | |
| 2485 | + }; | |
| 2486 | + C29DF5FC00803D294A3F0B4EDF5FD285 /* Build configuration list for PBXNativeTarget "Pods-CNLiveEmptyView_Example" */ = { | |
| 2487 | + isa = XCConfigurationList; | |
| 2488 | + buildConfigurations = ( | |
| 2489 | + 8A11E07EA56DC2D99F550CAD519ECC86 /* Debug */, | |
| 2490 | + AD18F172FFBAF5D938FF3C7CC1E61692 /* Release */, | |
| 2491 | + ); | |
| 2492 | + defaultConfigurationIsVisible = 0; | |
| 2493 | + defaultConfigurationName = Release; | |
| 2494 | + }; | |
| 2495 | +/* End XCConfigurationList section */ | |
| 2496 | + }; | |
| 2497 | + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; | |
| 2498 | +} | ... | ... |
Example/Pods/QMUIKit/LICENSE.TXT
0 → 100644
| 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 | +/***** | |
| 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 | ... | ... |