[
  {
    "path": ".gitignore",
    "content": "# Xcode\n\nbuild/\nDerivedData/\n*.DS_Store\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n*.moved-aside\n*.xccheckout\n*.xcscmblueprint\n*.hmap\n*.ipa\n*.dSYM.zip\n*.dSYM\n*._*\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageContentView.h",
    "content": "//\n//  CMPageContentView.h\n//  CMDisplayTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2018/1/15.\n//  Copyright © 2018年 Mac. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n#import \"CMPageTitleConfig.h\"\n\n\n@class CMPageContentView;\n@protocol CMPageContentViewDelegate <NSObject>\n\n@required\n\n/**\n 结束拖拽时，即手指离开屏幕时 会调用该代理方法\n @param scrollView 当前操作的scrollView\n @param decelerate 是否是减速\n */\n- (void)cm_pageContentViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate;\n\n\n/**\n 减速停止，即结束滚动时 会调用该代理方法\n\n @param index 结束滚动时，当前的index\n */\n- (void)cm_pageContentViewDidEndDeceleratingWithIndex:(NSInteger)index;\n\n\n/**\n 当滚动时调用\n\n @param progress 0~1 偏移的比例\n @param leftIndex 左侧下标\n @param rightIndex 右侧下标\n */\n- (void)cm_pageContentViewDidScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex;\n\n@end\n\n\n@interface CMPageContentView : UICollectionView\n\n/**delegate*/\n@property (nonatomic,weak) id <CMPageContentViewDelegate> cm_delegate;\n\n/**是否动画*/\n@property (nonatomic,assign) BOOL isAniming;\n\n/**\n 初始化方法\n\n @param frame frame\n @param layout layout\n @param config config 用于配置视图\n @return CMPageContentView对象\n */\n- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout Config:(CMPageTitleConfig *)config;\n\n\n/// 更新layout(不调用scrollViewDidScroll方法)\n/// @param layout collectionview 的layout布局\n/// @param animated 是否动画\n- (void)cm_setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated;\n\n\n/// 设置contentOffset(不调用scrollViewDidScroll方法)\n/// @param offset 偏移量\n- (void)cm_setContentOffset:(CGPoint)offset;\n\n@end\n\n\n\n\n@interface CMFlowLayout : UICollectionViewFlowLayout\n\n\n@end\n\n@interface CMPageContentCell : UICollectionViewCell\n\n\n@property (nonatomic,strong) UIView *cm_contentView;\n\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageContentView.m",
    "content": "//\n//  CMPageContentView.m\n//  CMDisplayTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2018/1/15.\n//  Copyright © 2018年 Mac. All rights reserved.\n//\n\n#import \"CMPageContentView.h\"\n@interface CMPageContentView ()<UICollectionViewDelegate,UICollectionViewDataSource>\n\n/**配置*/\n@property (nonatomic,strong) CMPageTitleConfig *config;\n\n@property (nonatomic,assign) BOOL scroll;\n\n@property (nonatomic,assign) BOOL isLandscape;\n\n@end\n\n@implementation CMPageContentView\n\n\n- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout Config:(CMPageTitleConfig *)config{\n    \n    if (self = [super initWithFrame:frame collectionViewLayout:layout]) {\n        self.config = config;\n        self.delegate = self;\n        self.dataSource = self;\n        [self registerClass:[CMPageContentCell class] forCellWithReuseIdentifier:NSStringFromClass(CMPageContentCell.class)];\n        self.pagingEnabled = YES;\n        self.showsHorizontalScrollIndicator = NO;\n        self.showsVerticalScrollIndicator = NO;\n        self.bounces = NO;\n        self.scrollEnabled = self.config.cm_slideGestureEnable;\n        self.backgroundColor = [UIColor colorWithWhite:1 alpha:0];\n        if (self.cm_navigationController && self.config.cm_slideGestureEnable) {\n            [self.panGestureRecognizer requireGestureRecognizerToFail:self.cm_navigationController.interactivePopGestureRecognizer];\n        }\n        \n        if (@available(iOS 11.0, *)) {\n            self.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;\n        }\n    }\n    return self;\n}\n\n\n- (void)cm_setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated {\n    \n    __weak typeof(self) weakSelf = self;\n    weakSelf.isAniming = YES;\n    [UIView animateWithDuration:0.1 animations:^{\n        [self setCollectionViewLayout:layout animated:animated completion:nil];\n    } completion:^(BOOL finished) {\n        weakSelf.isAniming = NO;\n    }];\n    \n    \n}\n\n- (void)cm_setContentOffset:(CGPoint)offset {\n    self.bounds = CGRectMake(offset.x, offset.y, self.bounds.size.width, self.bounds.size.height);\n}\n\n#pragma mark --- UICollectionViewDataSource\n\n- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {\n    \n    return 1;\n}\n\n- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {\n    \n    return self.config.cm_childControllers.count;\n}\n\n- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {\n    \n    CMPageContentCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:NSStringFromClass(CMPageContentCell.class) forIndexPath:indexPath];\n    \n    cell.backgroundColor = [UIColor whiteColor];\n    \n    cell.cm_contentView = [self.config.cm_childControllers[indexPath.row] view];\n    [self.config.cm_parentController addChildViewController:self.config.cm_childControllers[indexPath.row]];\n    [self.config.cm_childControllers[indexPath.row] didMoveToParentViewController:self.config.cm_parentController];\n    \n    return cell;\n}\n\n\n#pragma --- UIScrollViewDelegate\n\n-(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{\n    \n    if (self.cm_delegate) {\n        [self.cm_delegate cm_pageContentViewDidEndDragging:scrollView willDecelerate:decelerate];\n    }\n}\n\n/**\n scrollView减速完成\n */\n-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {\n    \n    CGFloat offSetX = scrollView.contentOffset.x;\n    NSInteger offSetInx = offSetX;\n    NSInteger screenWInt = self.cm_width;\n    NSInteger extre = offSetInx % screenWInt;\n    \n    if (extre > self.cm_width*0.5) {\n        //往右边移动\n        offSetX = offSetX + (self.cm_width - extre);\n        _isAniming = YES;\n        [self setContentOffset:CGPointMake(offSetX, 0) animated:YES];\n    } else if (extre < self.cm_width * 0.5 && extre > 0){\n        _isAniming = YES;\n        offSetX = offSetX - extre;\n        [self setContentOffset:CGPointMake(offSetX, 0) animated:YES];\n    }\n    \n    NSInteger index = offSetX / self.cm_width;\n    \n    if (self.cm_delegate) {\n        \n        [self.cm_delegate cm_pageContentViewDidEndDeceleratingWithIndex:index];\n        \n    }\n}\n\n\n\n- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView {\n    \n    _isAniming = NO;\n    \n}\n\n- (void)scrollViewDidScroll:(UIScrollView *)scrollView {\n    if (_isAniming || self.config.cm_childControllers.count == 0) return;\n    \n    if (self.cm_delegate&&(scrollView.isTracking || scrollView.isDragging || scrollView.isDecelerating)) {\n        CGFloat progress = scrollView.contentOffset.x / self.cm_width - floor(scrollView.contentOffset.x / self.cm_width);\n        NSUInteger leftIndex = floor(scrollView.contentOffset.x / self.cm_width);\n        NSUInteger rightIndex = leftIndex + 1;\n        [self.cm_delegate cm_pageContentViewDidScrollProgress:progress LeftIndex:leftIndex RightIndex:rightIndex];\n    }\n}\n\n@end\n\n\n\n\n@implementation CMFlowLayout\n\n-(void)prepareLayout {\n    [super prepareLayout];\n    self.minimumInteritemSpacing = 0;\n    self.minimumLineSpacing = 0;\n    \n    if (self.collectionView.bounds.size.height) {\n        self.itemSize = self.collectionView.bounds.size;\n    }\n    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;\n}\n\n- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {\n    return  YES;\n}\n\n@end\n\n@implementation CMPageContentCell\n\n- (void)setCm_contentView:(UIView *)cm_contentView {\n    \n    _cm_contentView = cm_contentView;\n    _cm_contentView.translatesAutoresizingMaskIntoConstraints = NO;\n    \n    [self.contentView addSubview:_cm_contentView];\n    \n    [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"H:|[view]|\" options:0 metrics:@{} views:@{@\"view\":_cm_contentView}]];\n    [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"V:|[view]|\" options:0 metrics:@{} views:@{@\"view\":_cm_contentView}]];\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleConfig.h",
    "content": "//\n//  CMPageTitleConfig.h\n//  CMPageTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2019/3/25.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n#import \"UIView+CMCommon.h\"\n\n\nNS_ASSUME_NONNULL_BEGIN\n\ntypedef NS_ENUM(NSUInteger,CMTitleColorGradientStyle) {\n    \n    /**颜色无渐变*/\n    CMTitleColorGradientStyle_None = 0,\n    \n    /**rgb颜色渐变*/\n    CMTitleColorGradientStyle_RGB = 1,\n    \n    /**填充色颜色渐变*/\n    CMTitleColorGradientStyle_Fill = 2,\n    \n};\n\ntypedef NS_OPTIONS(NSUInteger,CMPageTitleSwitchModeOptions) {\n    \n    /**字体放大*/\n    CMPageTitleSwitchMode_Scale = 1 << 0,\n    \n    /**下划线样式*/\n    CMPageTitleSwitchMode_Underline = 1 << 1,\n    \n    /**遮罩样式*/\n    CMPageTitleSwitchMode_Cover = 1 << 2,\n    \n    /**滑动切换时延迟，配合其他样式使用*/\n    CMPageTitleSwitchMode_Delay = 1 << 3\n    \n\n};\n\ntypedef NS_OPTIONS(NSUInteger, CMPageTitleAdditionalModeOptions) {\n    \n    /**标题栏下方的分割线*/\n    CMPageTitleAdditionalMode_Seperateline = 1 << 0,\n    \n    /**标题文字之间的分割线*/\n    CMPageTitleAdditionalMode_Splitter = 1 << 1\n    \n    \n};\n\ntypedef NS_ENUM(NSUInteger,CMPageTitleContentMode) {\n    /**左右边距与标题间距一致*/\n    CMPageTitleContentMode_Center,\n    \n    /**左右边距等于标题间距的一半*/\n    CMPageTitleContentMode_SpaceAround,\n    \n    /**左对齐*/\n    CMPageTitleContentMode_Left,\n    \n    /**右对齐*/\n    CMPageTitleContentMode_Right\n    \n};\n\ntypedef NS_ENUM(NSUInteger,CMPageTitleScaleGradientContentMode) {\n    /**居中*/\n    CMPageTitleScaleGradientContentMode_Center,\n    \n    /**上对其*/\n    CMPageTitleScaleGradientContentMode_Top,\n    \n    /**下对齐*/\n    CMPageTitleScaleGradientContentMode_Bottom,\n    \n};\n\n@interface CMPageTitleConfig : NSObject\n/**\n 颜色渐变样式\n 默认为 CMTitleColorGradientStyle_RGB\n */\n@property (nonatomic,assign) CMTitleColorGradientStyle cm_gradientStyle;\n\n/**\n 标题切换样式\n 默认为：0，无任何效果\n */\n@property (nonatomic,assign) CMPageTitleSwitchModeOptions cm_switchMode;\n\n/**\n 标题栏附加样式\n 默认为：0 无任何附加效果效果\n */\n@property (nonatomic,assign) CMPageTitleAdditionalModeOptions cm_additionalMode;\n\n/**\n 对齐方式\n默认值：CMPageTitleContentMode_Center\n */\n@property (nonatomic,assign) CMPageTitleContentMode cm_contentMode;\n\n/**\n 垂直方向上的对齐方式\n 只有属性cm_switchMode包含CMPageTitleSwitchMode_Scale下有效果\n 默认值：CMPageTitleVerticalContentMode_Center\n */\n@property (nonatomic,assign) CMPageTitleScaleGradientContentMode cm_scaleGradientContentMode;\n\n\n/**子视图控制器数组*/\n@property (nonatomic,copy) NSArray <UIViewController *>*cm_childControllers;\n\n\n/**标题数组\n 默认为cm_childControllers 的 title\n */\n@property (nonatomic,copy) NSArray <NSString *>*cm_titles;\n\n/**\n 标题正常字体\n 默认字体大小：[UIFont systemFontOfSize:15]\n */\n@property (nonatomic,strong) UIFont *cm_font;\n\n/**\n 标题选中字体\n 默认选中字体大小：cm_font的1.15倍\n */\n@property (nonatomic,strong) UIFont *cm_selectedFont;\n\n/**\n 视图的背景色\n 默认颜色：[UIColor whiteColor]\n */\n@property (nonatomic,strong) UIColor *cm_backgroundColor;\n\n/**\n 标题正常颜色\n 默认颜色：[UIColor blackColor]\n */\n@property (nonatomic,strong) UIColor *cm_normalColor;\n\n/**\n 标题选中颜色\n 默认颜色：[UIColor redColor]\n */\n@property (nonatomic,strong) UIColor *cm_selectedColor;\n\n/**\n 标题高度\n 默认高度：44\n */\n@property (nonatomic,assign) CGFloat cm_titleHeight;\n\n/**\n titileview在Y方向的位置\n 默认：0\n */\n@property (nonatomic,assign) CGFloat cm_titleTop;\n\n\n/**\n 是否支持侧滑\n 默认值：YES\n */\n@property (nonatomic,assign) BOOL cm_slideGestureEnable;\n\n/**\n 标题之间的间隔\n */\n@property (nonatomic,assign) CGFloat cm_titleMargin;\n\n/**\n 最小的标题间距\n 默认值为 20\n */\n@property (nonatomic,assign) CGFloat cm_minTitleMargin;\n\n/**\n 默认选择的index\n 默认选择第0个\n */\n@property (nonatomic,assign,getter=cm_selectedIndex) NSInteger cm_defaultIndex;\n\n/**\n 标题栏下方分割线的颜色\n 默认颜色：[UIColor grayColor]\n */\n@property (nonatomic,strong) UIColor *cm_seperaterLineColor;\n\n/**\n 标题分割线的高度\n 默认值：1px\n */\n@property (nonatomic,assign) CGFloat cm_seperateLineHeight;\n\n/**\n 标题之间的分割线颜色\n 默认为：[UIColor lightGrayColor]\n */\n@property (nonatomic,strong) UIColor *cm_splitterColor;\n\n/**\n 标题之间的分割线size\n 默认宽度：1px\n 默认高度：标题栏高度的一半\n */\n@property (nonatomic,assign) CGSize cm_splitterSize;\n\n/**\n 下划线和遮罩，在点击标题时，动画的时间间隔\n 默认值为：0.25\n 取值范围 0.25~0.8\n (超出范围会使用默认值)\n */\n@property (nonatomic,assign) CGFloat cm_animationDruction;\n\n\n/**右侧视图*/\n@property (nonatomic,strong) UIView *cm_rightView;\n\n/**\n 父视图控制器\n */\n@property (nonatomic,weak,readonly) UIViewController *cm_parentController;\n\n/**\n 全屏\n */\n@property (nonatomic,assign,getter=cm_isFullScreen) BOOL cm_fullScreen;\n\n\n#pragma mark --- 缩放效果\n\n/**\n 标题的缩放等级 默认为 1.15\n （若觉得该属性不方便，可以使用cm_selectedFont配合cm_font属性进行设置）\n */\n@property (nonatomic,assign) CGFloat cm_scale;\n\n/**\n 标题宽度\n */\n@property (nonatomic,strong,readonly)  NSArray * _Nonnull cm_titleWidths;\n\n/**\n 标题的总宽度 + 左右边距 + 所有的标题最小间距\n */\n@property (nonatomic,assign,readonly) CGFloat cm_minContentWidth;\n\n\n/**\n 所有标题的总宽度\n */\n@property (nonatomic,assign,readonly) CGFloat cm_titlesWidth;\n\n#pragma mark --- 下划线效果\n\n/**\n 下划线视图是否圆角\n 默认值:NO\n */\n@property (nonatomic,assign) BOOL cm_underlineBorder;\n\n\n/**\n 下划线高度\n 默认值：2\n */\n@property (nonatomic,assign) CGFloat cm_underlineHeight;\n\n/**\n 下划线宽度\n 默认跟随文字宽度\n 设置该属性后下划线会固定使用该宽度\n */\n@property (nonatomic,assign) CGFloat cm_underlineWidth;\n\n/**\n 下划线跟随文字宽度 * 比例\n 比例范围 0 ~ 1.3\n 超出 1.3 按 1.0 处理\n */\n@property (nonatomic,assign) CGFloat cm_underlineWidthScale;\n\n\n/**\n 下划线颜色\n 默认跟随标题的选中颜色\n */\n@property (nonatomic,strong) UIColor *cm_underlineColor;\n\n\n\n/**\n 是否延长\n 默认值：NO\n 具体效果可以看github效果展示\n */\n@property (nonatomic,assign) BOOL cm_underlineStretch;\n\n\n\n\n#pragma mark --- 遮罩效果\n\n/**\n \n 遮罩颜色\n */\n@property (nonatomic,strong) UIColor *cm_coverColor;\n\n/**\n 遮罩圆角半径\n 默认为 cover高度的一半\n */\n@property (nonatomic,assign) CGFloat cm_coverRadius;\n\n\n/**\n 遮罩固定宽度 未做最大最小限制\n 请根据实际情况妥善设置\n */\n@property (nonatomic,assign) CGFloat cm_coverWidth;\n\n/**\n 遮罩垂直方向边距 未做最大最小限制\n 请根据实际情况妥善设置\n */\n@property (nonatomic,assign) CGFloat cm_coverVerticalMargin;\n\n/**\n 遮罩水平方向边距 未做最大最小限制\n 请根据实际情况妥善设置\n */\n@property (nonatomic,assign) CGFloat cm_coverHorizontalMargin;\n\n\n\n\n/**\n 获得某个颜色的rgba的值\n \n @param color 颜色对象\n @return 返回rgba颜色值数组\n */\nCG_EXTERN NSArray* CMColorGetRGBA(UIColor *color);\n\n/**\n 获得某个颜色的r值\n \n @param color 颜色对象\n @return 返回r的值\n */\nCG_EXTERN CGFloat CMColorGetR(UIColor *color);\n\n/**\n 获得某个颜色的g值\n \n @param color 颜色对象\n @return 返回g的值\n */\nCG_EXTERN CGFloat CMColorGetG(UIColor *color);\n\n/**\n 获得某个颜色的b值\n \n @param color 颜色对象\n @return 返回b的值\n */\nCG_EXTERN CGFloat CMColorGetB(UIColor *color);\n\n/**\n 获得某个颜色的a值\n \n @param color 颜色对象\n @return 返回a的值\n */\nCG_EXTERN CGFloat CMColorGetA(UIColor *color);\n\n/**\n 获得指定font的字符串宽度\n \n @param string 目标字符串\n @param font 目标字符串对应的font\n @return 返回该字符串的宽度\n */\nCG_EXTERN CGFloat CMStringWidth(NSString *string ,UIFont *font);\n\n//宏定义单利的定义\n+ (instancetype)defaultConfig;\n+(instancetype) alloc __attribute__((unavailable(\"please call class method +(instancetype)defaultConfig instead\")));\n+(instancetype) new __attribute__((unavailable(\"please call class method +(instancetype)defaultConfig instead\")));\n-(instancetype) copy __attribute__((unavailable(\"please call class method +(instancetype)defaultConfig instead\")));\n-(instancetype) mutableCopy __attribute__((unavailable(\"please call class method +(instancetype)defaultConfig instead\")));\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleConfig.m",
    "content": "//\n//  CMPageTitlem\n//  CMPageTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2019/3/25.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n\n#import \"CMPageTitleConfig.h\"\n#import \"CMPageTitleViewMacro.h\"\n@interface CMPageTitleConfig ()\n\n/**视图宽度*/\n@property (nonatomic,strong) NSNumber *cm_pageTitleViewWidth;\n\n@end\n\n@implementation CMPageTitleConfig\n\n#pragma mark -- setter\n\n- (void)setCm_childControllers:(NSArray *)cm_childControllers {\n    \n    _cm_childControllers = cm_childControllers;\n    \n    self.cm_titles = [_cm_childControllers valueForKey:@\"title\"];\n    \n}\n\n- (void)setCm_titles:(NSArray *)cm_titles {\n    \n    _cm_titles = cm_titles;\n    \n    if (_cm_titles.count) {\n        NSMutableArray *mArray = [NSMutableArray array];\n        for (NSString *string in cm_titles) {\n            [mArray addObject:@(CMStringWidth(string, self.cm_font))];\n        }\n        [self setValue:[mArray copy] forKey:NSStringFromSelector(@selector(cm_titleWidths))];\n        \n        NSNumber *cm_titlesWidth = [self.cm_titleWidths valueForKeyPath:@\"@sum.floatValue\"];\n        \n        [self setValue:cm_titlesWidth forKey:NSStringFromSelector(@selector(cm_titlesWidth))];\n    }\n    \n}\n\n- (void)setCm_selectedFont:(UIFont *)cm_selectedFont {\n    \n    _cm_selectedFont = cm_selectedFont;\n    \n    self.cm_scale = self.cm_font.pointSize ? cm_selectedFont.pointSize / self.cm_font.pointSize : self.cm_scale;\n    \n    \n}\n\n- (void)setCm_pageTitleViewWidth:(NSNumber *)cm_pageTitleViewWidth {\n    \n    _cm_pageTitleViewWidth = cm_pageTitleViewWidth;\n    \n    if (self.cm_minContentWidth > _cm_pageTitleViewWidth.floatValue) {\n        //如果理论最小宽度已经大于视图宽度，对齐样式自动变成居中样式\n        if (self.cm_contentMode == CMPageTitleContentMode_Left || self.cm_contentMode == CMPageTitleContentMode_Right) {\n            self.cm_contentMode = CMPageTitleContentMode_Center;\n            \n        }\n    }\n    \n}\n\n- (void)setCm_underlineWidthScale:(CGFloat)cm_underlineWidthScale {\n    _cm_underlineWidthScale = cm_underlineWidthScale;\n    \n    _cm_underlineWidthScale = fabs(_cm_underlineWidthScale) > 1.3 || _cm_underlineWidthScale == 0 ? 1 :fabs(_cm_underlineWidthScale) ;\n    \n}\n\n- (void)setCm_defaultIndex:(NSInteger)cm_defaultIndex {\n    _cm_defaultIndex = cm_defaultIndex;\n    \n    _cm_defaultIndex = _cm_defaultIndex < self.cm_titles.count ? _cm_defaultIndex : 0;\n    \n    \n}\n\n- (void)setCm_animationDruction:(CGFloat)cm_animationDruction {\n    \n    _cm_animationDruction = (cm_animationDruction >= 0.25 && cm_animationDruction <= 0.8 ) ? cm_animationDruction : 0.25 ;\n\n}\n\n- (void)setCm_contentMode:(CMPageTitleContentMode)cm_contentMode {\n    _cm_contentMode = cm_contentMode;\n    NSUInteger count = self.cm_contentMode == CMPageTitleContentMode_Center ? self.cm_titles.count + 1 : self.cm_titles.count;\n    [self setValue:@(self.cm_titlesWidth + count * self.cm_minTitleMargin) forKey:NSStringFromSelector(@selector(cm_minContentWidth))];\n    \n    _cm_contentMode = cm_contentMode;\n    \n    if (cm_contentMode == CMPageTitleContentMode_Left) {\n        //左对齐\n        \n        _cm_titleMargin = _cm_titleMargin ?: self.cm_minTitleMargin;\n        \n    } else if (cm_contentMode == CMPageTitleContentMode_Right) {\n        //右对齐\n        \n        _cm_titleMargin = _cm_titleMargin ?: self.cm_minTitleMargin;\n        \n    }else if (cm_contentMode == CMPageTitleContentMode_Center ) {\n        \n        if (self.cm_titlesWidth  >= self.cm_pageTitleViewWidth.floatValue) {\n            _cm_titleMargin = _cm_titleMargin ?: self.cm_minTitleMargin;\n            \n        } else {\n            \n            NSUInteger count =  self.cm_titles.count + 1 ;\n            \n            CGFloat titleMargin = (self.cm_pageTitleViewWidth.floatValue - self.cm_titlesWidth )/count;\n            \n            _cm_titleMargin = titleMargin < self.cm_minTitleMargin ? self.cm_minTitleMargin : titleMargin;\n            \n        }\n    } else if (cm_contentMode == CMPageTitleContentMode_SpaceAround) {\n        \n        \n        if (self.cm_titlesWidth  >= self.cm_pageTitleViewWidth.floatValue) {\n            _cm_titleMargin = _cm_titleMargin ?: self.cm_minTitleMargin;\n            \n        }else {\n            \n            NSUInteger count =  self.cm_titles.count;\n            \n            CGFloat titleMargin = (self.cm_pageTitleViewWidth.floatValue - self.cm_titlesWidth )/count;\n            \n            _cm_titleMargin = titleMargin;\n            \n        }\n        \n    }\n    \n}\n\n- (void)setCm_rightView:(UIView *)cm_rightView {\n    _cm_rightView = cm_rightView;\n    \n    if (_cm_rightView.cm_height > self.cm_titleHeight) {\n        _cm_rightView.cm_height = self.cm_titleHeight;\n    }\n    \n}\n\n\n\n+ (instancetype)defaultConfig{\n    \n    \n    return [[super alloc]initWithDefaultConfig];\n}\n\n\n- (instancetype)initWithDefaultConfig {\n    \n    \n    if (self = [super init]) {\n        \n        self.cm_titleHeight = 44;\n        \n        self.cm_font = [UIFont systemFontOfSize:15];\n        \n        self.cm_backgroundColor = [UIColor whiteColor];\n        \n        self.cm_normalColor = [UIColor blackColor];\n        \n        self.cm_selectedColor = [UIColor redColor];\n        \n        _cm_defaultIndex = 0;\n        \n        self.cm_minTitleMargin = 20;\n        \n        self.cm_scale = 1.2;\n        \n        self.cm_animationDruction = 0.25;\n        \n        self.cm_contentMode = CMPageTitleContentMode_Center;\n        \n        self.cm_slideGestureEnable = YES;\n        \n        self.cm_underlineStretch = NO;\n        \n        self.cm_seperateLineHeight = 1.0 / [UIScreen mainScreen].scale;\n        \n        self.cm_seperaterLineColor = [UIColor lightGrayColor];\n        \n        self.cm_underlineColor = self.cm_selectedColor;\n        \n        self.cm_underlineWidthScale = 1;\n        \n        self.cm_underlineHeight = 2;\n        \n        self.cm_coverVerticalMargin = 5;\n        \n        self.cm_coverHorizontalMargin = 10;\n        \n        self.cm_splitterColor = [UIColor lightGrayColor];\n        \n        self.cm_splitterSize = CGSizeMake(1.0 / [UIScreen mainScreen].scale, 22);\n        \n        \n    }\n    return self;\n    \n}\n\n\n\n\nCG_EXTERN NSArray* CMColorGetRGBA(UIColor *color) {\n    \n    CGFloat red = 0.0;\n    CGFloat green = 0.0;\n    CGFloat blue = 0.0;\n    CGFloat alpha = 0.0;\n    [color getRed:&red green:&green blue:&blue alpha:&alpha];\n    return @[@(red), @(green), @(blue), @(alpha)];\n    \n}\n\nCG_EXTERN CGFloat CMColorGetR(UIColor *color) {\n    \n    return  [CMColorGetRGBA(color)[0] floatValue];\n    \n}\n\nCG_EXTERN CGFloat CMColorGetG(UIColor *color) {\n    \n    return  [CMColorGetRGBA(color)[1] floatValue];\n}\n\nCG_EXTERN CGFloat CMColorGetB(UIColor *color) {\n    \n    return  [CMColorGetRGBA(color)[2] floatValue];\n}\n\nCG_EXTERN CGFloat CMColorGetA(UIColor *color) {\n    \n    return  [CMColorGetRGBA(color)[3] floatValue];\n    \n}\n\nCG_EXTERN CGFloat CMStringWidth(NSString *string ,UIFont *font) {\n    \n    if ([string isKindOfClass:[NSNull class]] || string == nil || string.length == 0) {\n        NSException *exception = [NSException exceptionWithName:@\"CMStringWidth C Method Exception\" reason:@\"title的标题不能为空\" userInfo:nil];\n        [exception raise];\n    }\n    \n    CGFloat width = [string boundingRectWithSize:CGSizeMake(MAXFLOAT, 0) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading |  NSStringDrawingTruncatesLastVisibleLine attributes:@{NSFontAttributeName:font} context:nil].size.width ;\n    \n    return ceilf(width);\n}\n\n\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleContentView.h",
    "content": "//\n//  CMPageTitleContentView.h\n//  CMDisplayTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2018/1/15.\n//  Copyright © 2018年 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n#import \"CMPageTitleConfig.h\"\n@protocol CMPageTitleContentViewDelegate <NSObject>\n\n@required\n/**\n 当CMPageTitleContentView 中标题被点击会调用该代理方法\n\n @param index 当前点击的标题的index\n @param repeat 是否是重复点击\n */\n- (void)cm_pageTitleContentViewClickWithLastIndex:(NSUInteger)LastIndex Index:(NSUInteger)index Repeat:(BOOL)repeat;\n\n@end\n\n\n@interface CMPageTitleContentView : UIScrollView\n\n/**选中的标题*/\n@property (nonatomic,assign) NSInteger cm_selectedIndex;\n\n\n/**点击daili*/\n@property (nonatomic,weak) id <CMPageTitleContentViewDelegate> cm_delegate;\n\n\n/**\n 初始化方法\n\n @param config 配置对象\n @return CMPageTitleContentView对象\n */\n- (instancetype)initWithConfig:(CMPageTitleConfig *)config;\n\n\n/**\n \n 根据CMPageContentView对象的滚动情况，\n 调整CMPageTitleContentView对象的滚动情况\n \n @param progress 0~1 推拽比例\n @param leftIndex 左边的下标\n @param rightIndex 右边的下标\n */\n- (void)cm_pageTitleViewDidScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex;\n\n\n/**\n 根据CMPageContentView对象的滚动情况，\n 调整CMPageTitleContentView对象的滚动情况\n @param scrollView  CMPageContentView对象\n */\n- (void)cm_pageTitleContentViewAdjustPosition:(UIScrollView *)scrollView;\n\n\n- (void)cm_remodifyTitlePosition;\n\n@end\n\n\n\n\n@interface CMDisplayTitleLabel : UILabel\n\n@property (nonatomic,assign) CGFloat cm_progress;\n@property (nonatomic,strong) UIColor *cm_fillColor;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleContentView.m",
    "content": "//\n//  CMPageTitleContentView.m\n//  CMDisplayTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2018/1/15.\n//  Copyright © 2018年 CrabMan. All rights reserved.\n//\n\n#import \"CMPageTitleContentView.h\"\n@interface CMPageTitleContentView ()\n\n\n/**配置*/\n@property (nonatomic,strong) CMPageTitleConfig *config;\n\n/**选中的标题*/\n@property (nonatomic,strong) CMDisplayTitleLabel *selectedLabel;\n\n/**是否点击了标题*/\n@property (nonatomic,assign) BOOL isClickTitle;\n\n/**下划线*/\n@property (nonatomic,weak) UIView *underLine;\n\n/**遮罩*/\n@property (nonatomic,weak) UIView *titleCover;\n\n/**label数组*/\n@property (nonatomic,strong) NSMutableArray *titleLabels;\n\n/**上一次的偏移量*/\n@property (nonatomic,assign) CGFloat lastOffsetX;\n\n\n/**分割线视图数组*/\n@property (nonatomic,strong) NSArray *splitters;\n\n\n\n@end\n\n\n@implementation CMPageTitleContentView\n\n\n- (NSArray *)splitters {\n    \n    if (!_splitters) {\n        NSMutableArray *mArray = [NSMutableArray array];\n        \n        for (NSInteger i = 0 ; i < self.titleLabels.count - 1; i++) {\n            UIView *splitter = [UIView new];\n            splitter.backgroundColor = self.config.cm_splitterColor;\n            splitter.cm_size = CGSizeMake(self.config.cm_splitterSize.width, self.config.cm_splitterSize.height);\n            splitter.center = CGPointMake(CGRectGetMaxX([self.titleLabels[i] frame]) + self.config.cm_titleMargin * 0.5, self.config.cm_titleHeight * 0.5);\n            [self addSubview:splitter];\n            [mArray addObject:splitter];\n        }\n        _splitters = [mArray copy];\n    }\n    \n    return _splitters;\n}\n\n- (NSMutableArray *)titleLabels {\n    \n    if (!_titleLabels) {\n        _titleLabels = [NSMutableArray array];\n        \n        CGFloat labelX = 0;\n        CGFloat labelW = 0;\n        \n        for (int i = 0; i < self.config.cm_titles.count; i++) {\n            CMDisplayTitleLabel *label = [CMDisplayTitleLabel new];\n            label.textColor = self.config.cm_normalColor;\n            label.font = self.config.cm_font;\n            label.text = self.config.cm_titles[i];\n            label.lineBreakMode = NSLineBreakByWordWrapping;\n            label.translatesAutoresizingMaskIntoConstraints = NO;\n            \n            UILabel *lastLabel = [self.titleLabels lastObject];\n            if (i == 0 ) {\n                if (self.config.cm_contentMode == CMPageTitleContentMode_Right) {\n                    labelX = [[self.config valueForKey:@\"cm_pageTitleViewWidth\"] floatValue] - self.config.cm_titleMargin * self.config.cm_titles.count - self.config.cm_titlesWidth;\n                } else if (self.config.cm_contentMode == CMPageTitleContentMode_SpaceAround) {\n                    labelX = self.config.cm_titleMargin * 0.5;\n                } else {\n                    labelX =  self.config.cm_titleMargin;\n                }\n            } else {\n                labelX =  self.config.cm_titleMargin + CGRectGetMaxX(lastLabel.frame);\n            }\n            labelW = [self.config.cm_titleWidths[i] floatValue];\n            \n            [self addSubview:label];\n            \n            NSLayoutConstraint *leftConstraint = [NSLayoutConstraint constraintWithItem:label attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.titleLabels.lastObject ?: self attribute:self.titleLabels.lastObject ? NSLayoutAttributeRight : NSLayoutAttributeLeft multiplier:1 constant:labelX];\n            NSLayoutConstraint *centerYConstraint = [NSLayoutConstraint constraintWithItem:label attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem: self attribute: NSLayoutAttributeCenterY multiplier:1 constant:0];\n            \n            [NSLayoutConstraint activateConstraints:@[leftConstraint,centerYConstraint]];\n            \n            label.userInteractionEnabled = YES;\n            UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(clickLabel:)];\n            [label addGestureRecognizer:tap];\n            \n            [_titleLabels addObject:label];\n        }\n        \n        \n    }\n    return _titleLabels;\n}\n\n- (UIView *)underLine {\n    \n    if (!_underLine) {\n        UIView *underLine = [UIView new];\n        underLine.backgroundColor = self.config.cm_underlineColor;\n        underLine.layer.cornerRadius = self.config.cm_underlineBorder ? self.config.cm_underlineHeight * 0.5 : 0;\n        underLine.layer.masksToBounds = YES;\n        CGFloat underLineWidth = self.config.cm_underlineWidth ?: [self.titleLabels[self.config.cm_selectedIndex] cm_width] * self.config.cm_underlineWidthScale;\n        underLine.cm_height = self.config.cm_underlineHeight;\n        underLine.cm_bottom = self.config.cm_titleHeight;\n        underLine.cm_width  = underLineWidth;\n        underLine.cm_centerX = [self.titleLabels[self.config.cm_selectedIndex] cm_centerX];\n        _underLine = underLine;\n        [self addSubview:_underLine];\n\n    }\n    \n    return _underLine ;\n    \n}\n\n\n-(UIView *)titleCover {\n    \n    if (!_titleCover) {\n        \n        UIView *titleCover = [UIView new];\n        titleCover.backgroundColor = self.config.cm_coverColor ?: [UIColor colorWithWhite:0 alpha:0.3];\n        UILabel *label = self.titleLabels[self.config.cm_selectedIndex];\n        CGFloat width = [self.config.cm_titleWidths[self.config.cm_selectedIndex] floatValue];\n        CGFloat coverW = self.config.cm_coverWidth ? : width + 2 * self.config.cm_coverHorizontalMargin;\n        CGFloat coverH = label.font.pointSize + 2 * self.config.cm_coverVerticalMargin;\n        titleCover.layer.cornerRadius = self.config.cm_coverRadius ?: coverH * 0.5;\n        titleCover.cm_height = coverH;\n        titleCover.cm_width = coverW;\n        titleCover.cm_centerX = label.cm_centerX;\n        titleCover.cm_centerY = self.config.cm_titleHeight * 0.5;\n        _titleCover = titleCover;\n        [self insertSubview:_titleCover atIndex:0];\n\n    }\n    return _titleCover ;\n}\n\n- (void)setCm_selectedIndex:(NSInteger)cm_selectedIndex {\n    \n    _cm_selectedIndex = cm_selectedIndex;\n    \n    [self selectLabel:self.titleLabels[cm_selectedIndex]];\n    \n}\n\n\n\n#pragma mark --- Initial\n\n- (instancetype)initWithConfig:(CMPageTitleConfig *)config {\n    \n    if (self = [super init]) {\n        self.config = config;\n        \n        self.backgroundColor = self.config.cm_backgroundColor ? : [UIColor whiteColor];\n        self.showsVerticalScrollIndicator = NO;\n        self.showsHorizontalScrollIndicator = NO;\n        [self initSubViews];\n        if (self.cm_navigationController && self.config.cm_slideGestureEnable) {\n            [self.panGestureRecognizer requireGestureRecognizerToFail:self.cm_navigationController.interactivePopGestureRecognizer];\n        }\n    }\n    \n    return self;\n}\n\n\n- (void)layoutSubviews {\n    [super layoutSubviews];\n    [self modifyContentInset];\n    if (!self.selectedLabel && self.cm_delegate) {\n        [self clickLabel:nil];\n    }\n    \n}\n\n- (void)initSubViews {\n    \n    [self initContentSize];\n    [self initSplitters];\n    [self modifyContentInset];\n}\n\n- (void)modifyContentInset {\n    \n    self.contentInset = UIEdgeInsetsMake(0, 0, 0, (self.config.cm_rightView && self.config.cm_contentMode != CMPageTitleContentMode_Right)? (self.config.cm_titleMargin+self.config.cm_rightView.cm_width) : self.config.cm_titleMargin);\n    \n}\n\n\n- (void)initContentSize{\n    \n    \n    [self titleLabels];\n    \n    [self layoutIfNeeded];\n    \n    switch (self.config.cm_contentMode) {\n        case CMPageTitleContentMode_SpaceAround:\n            self.contentSize = CGSizeMake(CGRectGetMaxX([self.titleLabels.lastObject frame]) - self.config.cm_titleMargin * 0.5, 0);\n            \n            break;\n        case CMPageTitleContentMode_Left:\n            self.contentSize = self.bounds.size;\n            \n            break;\n        case CMPageTitleContentMode_Right:\n            self.contentSize = self.bounds.size;\n            \n            break;\n        case CMPageTitleContentMode_Center:\n            self.contentSize = CGSizeMake(CGRectGetMaxX([self.titleLabels.lastObject frame]), 0);\n            break;\n            \n        default:\n            break;\n    }\n    \n}\n\n- (void)initSplitters {\n    \n    if (self.config.cm_additionalMode & CMPageTitleAdditionalMode_Splitter) {\n        [self splitters];\n        \n    }\n    \n    \n}\n\n- (void)resetLayoutConstraintWithLabel:(UILabel *)label Scale:(CGFloat)scale{\n    \n    if (![self.titleLabels containsObject:label] ||\n        self.config.cm_scaleGradientContentMode == CMPageTitleScaleGradientContentMode_Center ||\n        !(self.config.cm_switchMode & CMPageTitleSwitchMode_Scale)) return;\n    \n    NSInteger index = [self.titleLabels indexOfObject:label];\n    \n    NSInteger selectedIndex = self.selectedLabel ? [self.titleLabels indexOfObject:self.selectedLabel] : -1;\n    \n    NSLayoutConstraint *centerYConstraint = self.constraints[index*2 + 1];\n    NSLayoutConstraint *selectedCenterYConstraint = self.selectedLabel ?  self.constraints[selectedIndex*2 + 1] : nil;\n    \n    switch (self.config.cm_scaleGradientContentMode) {\n            \n        case CMPageTitleScaleGradientContentMode_Bottom:\n            \n            centerYConstraint.constant = 0 - label.font.pointSize * 0.5 * (scale - 1);\n            selectedCenterYConstraint.constant = 0;\n            break;\n            \n        case CMPageTitleScaleGradientContentMode_Top:\n            \n            centerYConstraint.constant = label.font.pointSize * 0.5 * (scale - 1);\n            selectedCenterYConstraint.constant = 0;\n            break;\n            \n        default:\n            break;\n    }\n    \n}\n\n- (void)cm_pageTitleContentViewAdjustPosition:(UIScrollView *)scrollView {\n    \n    NSInteger centerIndex = floorf(scrollView.contentOffset.x / self.cm_width);\n    \n    [self setLabelTitleCenter:self.titleLabels[centerIndex] animated:YES];\n    \n}\n\n\n#pragma mark --- 样式视图\n\n- (void)setUnderLineWithLabel:(UILabel *)label {\n    \n    if (!(self.config.cm_switchMode & CMPageTitleSwitchMode_Underline)) return;\n    \n    [self underLine];\n    \n    CGFloat underLineWidth = self.config.cm_underlineWidth ?: label.cm_width * self.config.cm_underlineWidthScale;\n    [UIView animateWithDuration:self.config.cm_animationDruction animations:^{\n        self.underLine.cm_width = underLineWidth;\n        self.underLine.cm_centerX = label.cm_centerX;\n        \n    }];\n    \n    \n}\n\n/**遮罩样式*/\n- (void)setTitleCoverWithLabel:(UILabel *)label {\n    \n    if (!(self.config.cm_switchMode & CMPageTitleSwitchMode_Cover)) return;\n    \n    [self titleCover];\n    \n    NSUInteger index = [self.titleLabels indexOfObject:label];\n    CGFloat width = [self.config.cm_titleWidths[index] floatValue];\n    CGFloat coverW = self.config.cm_coverWidth ? : width + 2 * self.config.cm_coverHorizontalMargin;\n    [UIView animateWithDuration:self.config.cm_animationDruction animations:^{\n        self.titleCover.cm_width = coverW;\n        self.titleCover.cm_centerX = label.cm_centerX;\n    }];\n        \n    \n}\n\n\n/**label点击事件*/\n- (void)clickLabel:(UIGestureRecognizer *)tap {\n    \n    // 记录是否点击标题,通过这个属性防止标题二次偏移\n    _isClickTitle = YES;\n    \n    // 获取对应标题label\n    CMDisplayTitleLabel *label = tap ? (CMDisplayTitleLabel *)tap.view : self.titleLabels[self.config.cm_selectedIndex];\n    \n    if (self.cm_delegate) {\n        [self.cm_delegate cm_pageTitleContentViewClickWithLastIndex:self.cm_selectedIndex Index:[self.titleLabels indexOfObject:label] Repeat:label == self.selectedLabel];\n    }\n    \n    _cm_selectedIndex = [self.titleLabels indexOfObject:label];\n    \n    [self selectLabel:label];\n    \n    _isClickTitle = NO;\n    \n}\n\n- (void)cm_remodifyTitlePosition{\n\n    [self setLabelTitleCenter:self.selectedLabel animated:NO];\n    [self setUnderLineWithLabel:self.selectedLabel];\n\n}\n- (void)modifyTitlePosition:(CMDisplayTitleLabel *)label {\n    \n    [self setLabelTitleCenter:label animated:YES];\n    [self setTitleScaleCenter:label];\n    [self setTitleCoverWithLabel:label];\n    [self setUnderLineWithLabel:label];\n    \n}\n\n/**\n 选中标题Label的设置\n */\n- (void)selectLabel:(CMDisplayTitleLabel *)label {\n    \n    \n    if (_selectedLabel == label) return;\n    \n    [self modifyTitlePosition:label];\n    \n    _selectedLabel.textColor = self.config.cm_normalColor;\n    _selectedLabel.cm_progress = 0;\n\n    label.textColor = self.config.cm_selectedColor;\n    label.cm_fillColor = self.config.cm_selectedColor;\n    label.cm_progress = 0;\n//\n    _selectedLabel = (CMDisplayTitleLabel *)label;\n    _lastOffsetX = [self.titleLabels indexOfObject:label] * self.cm_width;\n    \n}\n\n\n- (void)setTitleScaleCenter:(UILabel *)label {\n    \n    if (!(self.config.cm_switchMode & CMPageTitleSwitchMode_Scale)) return;\n    \n    self.selectedLabel.cm_progress = 1;\n    self.selectedLabel.cm_fillColor = self.config.cm_selectedColor;\n    label.transform = CGAffineTransformMakeScale(self.config.cm_scale, self.config.cm_scale);\n    self.selectedLabel.transform = CGAffineTransformIdentity;\n    \n    [self resetLayoutConstraintWithLabel:label Scale:self.config.cm_scale];\n    \n}\n\n/**\n 让选中的按钮居中显示\n */\n- (void)setLabelTitleCenter:(UILabel *)label animated:(BOOL)animated {\n    \n    \n    if (self.contentSize.width <= self.cm_width) return;\n    \n    \n    CGFloat offsetX = label.center.x - self.cm_width * 0.5;\n    \n    offsetX = offsetX > 0 ? offsetX : 0;\n    \n    CGFloat maxOffsetX = self.contentSize.width - self.cm_width + self.contentInset.right;\n    \n    maxOffsetX = maxOffsetX ?:0;\n    \n    offsetX = offsetX > maxOffsetX ? maxOffsetX : offsetX;\n    \n    [self setContentOffset:CGPointMake(offsetX, 0) animated:animated];\n    \n    \n}\n\n\n\n\n- (void)cm_pageTitleViewDidScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex {\n    \n    [self modifyTitleScaleWithScrollProgress:progress LeftIndex:leftIndex RightIndex:rightIndex];\n    \n    [self modifyColorWithScrollProgress:progress LeftIndex:leftIndex RightIndex:rightIndex];\n    \n    [self modifyUnderlineWithScrollProgress:progress LeftIndex:leftIndex RightIndex:rightIndex];\n    \n    [self modifyCoverWithScrollProgress:progress LeftIndex:leftIndex RightIndex:rightIndex];\n    \n    self.lastOffsetX = leftIndex * self.cm_width + progress * self.cm_width;\n}\n\n\n\n#pragma mark --- 标题各效果渐变\n\n- (void)modifyColorWithScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex {\n    \n    if (_isClickTitle || rightIndex >= self.titleLabels.count) return;\n    \n    CMDisplayTitleLabel *rightLabel = self.titleLabels[rightIndex];\n    CMDisplayTitleLabel *leftLabel = self.titleLabels[leftIndex];\n    \n    CGFloat rightScale = progress;\n    \n    CGFloat leftScale = 1 - rightScale;\n    \n    if (self.config.cm_gradientStyle == CMTitleColorGradientStyle_RGB) {\n        \n        NSArray *endRGBA = CMColorGetRGBA(self.config.cm_selectedColor);\n        NSArray *startRGBA = CMColorGetRGBA(self.config.cm_normalColor);\n        \n        CGFloat deltaR = [endRGBA[0] floatValue] - [startRGBA[0] floatValue];\n        CGFloat deltaG = [endRGBA[1] floatValue] - [startRGBA[1] floatValue];\n        CGFloat deltaB = [endRGBA[2] floatValue] - [startRGBA[2] floatValue];\n        CGFloat deltaA = [endRGBA[3] floatValue] - [startRGBA[3] floatValue];\n        \n        \n        UIColor *rightColor = [UIColor colorWithRed:[startRGBA[0] floatValue] + rightScale *deltaR green:[startRGBA[1] floatValue] + rightScale *deltaG blue:[startRGBA[2] floatValue] + rightScale *deltaB alpha:[startRGBA[3] floatValue] + rightScale *deltaA];\n        \n        UIColor *leftColor = [UIColor colorWithRed:[startRGBA[0] floatValue] + leftScale * deltaR green:[startRGBA[1] floatValue] + leftScale *deltaG blue:[startRGBA[2] floatValue] + leftScale *deltaB alpha:[startRGBA[3] floatValue] + leftScale *deltaA];\n        \n        rightLabel.textColor = rightColor;\n        leftLabel.textColor = leftColor;\n        \n    }\n    \n    // 填充渐变\n    if (self.config.cm_gradientStyle == CMTitleColorGradientStyle_Fill) {\n        \n        rightLabel.textColor    = self.config.cm_normalColor;\n        rightLabel.cm_fillColor = self.config.cm_selectedColor;\n        rightLabel.cm_progress  = rightScale;\n        \n        leftLabel.textColor     = self.config.cm_selectedColor;\n        leftLabel.cm_fillColor  = self.config.cm_normalColor;\n        leftLabel.cm_progress   = rightScale;\n        \n    }\n    \n}\n\n\n- (void)modifyTitleScaleWithScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex {\n    \n    \n    if (!(self.config.cm_switchMode & CMPageTitleSwitchMode_Scale) || _isClickTitle || rightIndex >= self.titleLabels.count || self.config.cm_switchMode & CMPageTitleSwitchMode_Delay) return;\n    \n    CMDisplayTitleLabel *rightLabel = self.titleLabels[rightIndex];\n    CMDisplayTitleLabel *leftLabel = self.titleLabels[leftIndex];\n    \n    CGFloat rightScale = progress;\n    \n    CGFloat leftScale = 1 - rightScale;\n    \n    CGFloat scaleTransform = self.config.cm_scale;\n    \n    scaleTransform -= 1;\n    leftLabel.transform = CGAffineTransformMakeScale(leftScale * scaleTransform + 1, leftScale * scaleTransform + 1);\n    rightLabel.transform = CGAffineTransformMakeScale(rightScale * scaleTransform + 1, rightScale * scaleTransform +1);\n    \n    if (self.selectedLabel == leftLabel) {\n        \n        [self resetLayoutConstraintWithLabel:rightLabel Scale:round(rightScale * scaleTransform * 100)/100.0 + 1];\n    }\n    \n    if (self.selectedLabel == rightLabel) {\n        \n        [self resetLayoutConstraintWithLabel:leftLabel Scale:round(leftScale * scaleTransform * 100)/100.0 + 1];\n    }\n    \n    \n    \n}\n\n\n\n\n- (void)modifyCoverWithScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex {\n    \n    \n    //通过判断isClickTitle的属性来防止二次偏移\n    if (!(self.config.cm_switchMode & CMPageTitleSwitchMode_Cover) || _isClickTitle || rightIndex >= self.titleLabels.count|| self.config.cm_switchMode & CMPageTitleSwitchMode_Delay) return;\n    \n    CMDisplayTitleLabel *rightLabel = self.titleLabels[rightIndex];\n    CMDisplayTitleLabel *leftLabel = self.titleLabels[leftIndex];\n    \n    \n    CGFloat deltaX = self.config.cm_coverWidth ? rightLabel.cm_centerX - leftLabel.cm_centerX : rightLabel.cm_x - leftLabel.cm_x;\n    \n    CGFloat deltaWidth = self.config.cm_coverWidth ? 0 : rightLabel.cm_width - leftLabel.cm_width;\n    \n    \n    CGFloat newCenterX = progress * deltaX + leftLabel.cm_centerX ;\n    CGFloat newWidth = self.config.cm_coverWidth ? : (progress * deltaWidth + leftLabel.cm_width + 2*self.config.cm_coverHorizontalMargin);\n    self.titleCover.cm_centerX = newCenterX;\n    self.titleCover.cm_width = newWidth;\n    \n    \n}\n\n\n\n- (void)modifyUnderlineWithScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex {\n    \n    \n    if (!(self.config.cm_switchMode & CMPageTitleSwitchMode_Underline) || _isClickTitle || rightIndex >= self.titleLabels.count|| self.config.cm_switchMode & CMPageTitleSwitchMode_Delay) return;\n    \n    CMDisplayTitleLabel *rightLabel = self.titleLabels[rightIndex];\n    CMDisplayTitleLabel *leftLabel = self.titleLabels[leftIndex];\n    \n    \n    CGFloat rightLabelX = rightLabel.cm_x + (1 - self.config.cm_underlineWidthScale)*rightLabel.cm_width*0.5;\n    CGFloat leftLabelX = leftLabel.cm_x + (1 - self.config.cm_underlineWidthScale)*leftLabel.cm_width*0.5;\n    CGFloat rightLabelWidth = rightLabel.cm_width * self.config.cm_underlineWidthScale;\n    CGFloat leftLabelWidth = leftLabel.cm_width * self.config.cm_underlineWidthScale;\n    \n    if (!self.config.cm_underlineStretch) {\n        \n        CGFloat deltaX = self.config.cm_underlineWidth ? (rightLabel.cm_centerX - leftLabel.cm_centerX) : (rightLabelX - leftLabelX);\n        \n        CGFloat deltaWidth = self.config.cm_underlineWidth ? 0 : (rightLabelWidth - leftLabelWidth);\n        \n        CGFloat newOriginalX = self.config.cm_underlineWidth ? progress*deltaX + leftLabel.cm_centerX - self .config.cm_underlineWidth * 0.5: progress * deltaX + leftLabelX;\n        CGFloat newWidth = self.config.cm_underlineWidth ? : (progress * deltaWidth + leftLabelWidth);\n        \n        self.underLine.cm_x = newOriginalX;\n        self.underLine.cm_width = newWidth;\n        \n    } else {\n        \n        CGFloat rightLabelRight = rightLabel.cm_right - (rightLabel.cm_width - rightLabelWidth)*0.5;\n        CGFloat leftLabelRight = leftLabel.cm_right - (leftLabel.cm_width - leftLabelWidth)*0.5;\n        \n        if (progress <= 0.5) {\n            CGFloat deltaWidth =  self.config.cm_underlineWidth ? (rightLabel.cm_centerX - leftLabel.cm_centerX) : rightLabelRight - leftLabelRight;\n            \n            CGFloat originalWidth = self.config.cm_underlineWidth ?: leftLabelWidth;\n            \n            CGFloat newWidth = 2 * progress * deltaWidth + originalWidth;\n            \n            CGFloat originalX = self.config.cm_underlineWidth ? leftLabel.cm_centerX - self.config.cm_underlineWidth * 0.5 : leftLabelX;\n            \n            self.underLine.cm_width = newWidth;\n            self.underLine.cm_x = originalX;\n            \n            \n        } else {\n            \n            CGFloat deltaWidth = self.config.cm_underlineWidth ? (rightLabel.cm_centerX - leftLabel.cm_centerX) : rightLabelX - leftLabelX;\n            progress = 1- progress;\n            CGFloat newWidth = 2 * progress * deltaWidth + (self.config.cm_underlineWidth ?: rightLabelWidth);\n            CGFloat originalX = self.config.cm_underlineWidth ? rightLabel.cm_centerX + self.config.cm_underlineWidth * 0.5 - newWidth : rightLabelRight - newWidth;\n            \n            self.underLine.cm_x = originalX;\n            self.underLine.cm_width = newWidth;\n            \n        }\n    }\n    \n}\n\n\n\n@end\n\n\n\n@implementation CMDisplayTitleLabel\n\n-(void)drawRect:(CGRect)rect {\n    [super drawRect: rect];\n    \n    [_cm_fillColor set];\n    \n    rect.size.width = rect.size.width *_cm_progress;\n    \n    UIRectFillUsingBlendMode(rect, kCGBlendModeSourceIn);\n    \n}\n\n-(instancetype)initWithFrame:(CGRect)frame {\n    if (self = [super initWithFrame:frame] ) {\n        self.userInteractionEnabled = YES;\n        \n        self.textAlignment = NSTextAlignmentCenter;\n    }\n    return self;\n}\n\n- (void)setCm_progress:(CGFloat)cm_progress {\n    _cm_progress  = cm_progress;\n    \n    [self setNeedsDisplay];\n    \n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleView.h",
    "content": "//\n//  CMPageTitleView.h\n//  CMDisplayTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2018/1/15.\n//  Copyright © 2018年 Mac. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n#import \"CMPageTitleConfig.h\"\n\n@protocol CMPageTitleViewDelegate <NSObject>\n\n@optional\n/**\n 当标题被点击会或滚动选中后调用该代理方法\n \n @param index 当前选中的标题的index\n @param repeat 是否是重复点击\n */\n- (void)cm_pageTitleViewSelectedWithIndex:(NSInteger)index Repeat:(BOOL)repeat;\n\n\n/**\n 当标题被点击会调用该方法\n \n @param index 当前选中的标题的index\n @param repeat 是否是重复点击\n */\n- (void)cm_pageTitleViewClickWithIndex:(NSInteger)index Repeat:(BOOL)repeat;\n\n/**\n 当标题滚动选中后调用该代理方法\n \n @param index 当前选中的标题的index\n\n */\n- (void)cm_pageTitleViewScrollToIndex:(NSInteger)index;\n\n@end\n\n@interface CMPageTitleView : UIView\n\n/**\n 代理\n */\n@property (nonatomic,assign) id <CMPageTitleViewDelegate> delegate;\n\n/**\n 配置\n */\n@property (nonatomic,strong) CMPageTitleConfig *cm_config;\n\n\n\n\n/**重载配置*/\n- (void)cm_reloadConfig;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleView.m",
    "content": "//\n//  CMPageTitleView.m\n//  CMDisplayTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 2018/1/15.\n//  Copyright © 2018年 Mac. All rights reserved.\n//\n\n\n#import \"CMPageTitleView.h\"\n#import \"CMPageTitleContentView.h\"\n#import \"CMPageContentView.h\"\n#import \"CMPageTitleViewMacro.h\"\n#import <objc/runtime.h>\n\n@interface CMPageTitleView() <CMPageTitleContentViewDelegate,CMPageContentViewDelegate>\n\n@property (nonatomic,weak) CMPageTitleContentView *titleView;\n\n@property (nonatomic,weak) CMPageContentView *contentView;\n\n@property (nonatomic,weak) UIView *seperateline;\n\n@property (nonatomic,strong) UIViewController *parentController;\n\n@end\n\n@implementation CMPageTitleView\n\n- (UIView *)seperateline {\n    \n    if (!_seperateline) {\n        \n        UIView *seperateline = [[UIView alloc] init];\n        seperateline.backgroundColor = self.cm_config.cm_seperaterLineColor;\n        _seperateline = seperateline;\n        [self addSubview:_seperateline];\n    }\n    \n    return _seperateline;\n}\n\n- (CMPageTitleContentView *)titleView {\n    \n    if (!_titleView) {\n        CMPageTitleContentView *titleView = [[CMPageTitleContentView alloc] initWithConfig:self.cm_config];\n        titleView.cm_delegate = self;\n        _titleView = titleView;\n        \n        [self addSubview:_titleView];\n    }\n    return _titleView;\n}\n\n\n- (CMPageContentView *)contentView {\n    if (!_contentView) {\n        \n        CMFlowLayout *layout = [CMFlowLayout new];\n        layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;\n        CMPageContentView *contentView = [[CMPageContentView alloc] initWithFrame:CGRectZero collectionViewLayout:layout Config:self.cm_config];\n        contentView.cm_delegate = self;\n        _contentView = contentView;\n        [self addSubview:_contentView];\n        \n    }\n    return _contentView;\n}\n\n- (UIViewController *)parentController {\n    \n    for (UIView* next = [self superview]; next; next = next.superview) {\n        UIResponder *nextResponder = [next nextResponder];\n        if ([nextResponder isKindOfClass:[UIViewController class]]) {\n            return (UIViewController *)nextResponder;\n        }\n    }\n    return nil;\n}\n\n\n- (void)layoutSubviews {\n    \n    [super layoutSubviews];\n    [self initSubViews];\n    [self orientation];\n\n}\n\n- (void)orientation {\n    [self.contentView cm_setContentOffset:CGPointMake(self.titleView.cm_selectedIndex * self.contentView.cm_width, 0) ];\n    [self.titleView cm_remodifyTitlePosition];\n}\n\n- (void)cm_reloadConfig {\n    \n    [self.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];\n    \n    self.seperateline = nil;\n    self.titleView = nil;\n    self.contentView = nil;\n    \n    [self layoutSubviews];\n    \n    \n}\n\n\n- (void)initSubViews {\n    \n    CMPageErrorAssert(self.cm_config != nil, @\"cm_config属性不能为空\");\n    self.userInteractionEnabled = YES;\n    [self reviseConfig];\n    [self initVFLContraints];\n    \n}\n\n- (void)reviseConfig{\n    \n    CMPageErrorAssert((self.cm_config.cm_childControllers != nil || self.cm_config.cm_childControllers.count == 0 ), @\"cm_childControllers数组需赋值，且数组个数不为空\");\n    CMPageErrorAssert((self.cm_config.cm_titles != nil || self.cm_config.cm_titles.count == 0 ), @\"cm_titles数组需赋值，且数组个数不为空\");\n    [self.cm_config setValue:@(self.cm_width) forKey:@\"cm_pageTitleViewWidth\"];\n    [self.cm_config setValue:self.parentController forKey:@\"cm_parentController\"];\n    [self addMethodForParentController];\n    self.cm_config.cm_font = self.cm_config.cm_font;\n    self.cm_config.cm_titles = self.cm_config.cm_titles;\n    self.cm_config.cm_titleMargin = self.cm_config.cm_titleMargin;\n    self.cm_config.cm_contentMode = self.cm_config.cm_contentMode;\n    \n}\n\n- (void)initVFLContraints {\n    \n    self.contentView.translatesAutoresizingMaskIntoConstraints = NO;\n    self.titleView.translatesAutoresizingMaskIntoConstraints = NO;\n    self.seperateline.translatesAutoresizingMaskIntoConstraints = NO;\n    \n    [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"H:|[title]|\" options:0 metrics:@{}views:@{@\"title\":self.titleView}]];\n    [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"H:|[seperateline]|\" options:0 metrics:@{}views:@{@\"seperateline\":self.seperateline}]];\n    [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"H:|[content]|\" options:0 metrics:@{}views:@{@\"content\":self.contentView}]];\n    \n    \n    NSString *vf = self.cm_config.cm_fullScreen ? @\"V:|[content]|\" : @\"V:|-(==titleTop)-[title(==titleH)][seperateline(==seperateH)][content]|\";\n    \n    if (self.cm_config.cm_isFullScreen)\n        [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"V:|-(==titleTop)-[title(==titleH)][seperateline(==seperateH)]\" options:0 metrics:@{\n            @\"titleTop\":@(self.cm_config.cm_titleTop),\n            @\"titleH\":@(self.cm_config.cm_titleHeight),\n            @\"seperateH\":@((self.cm_config.cm_additionalMode&CMPageTitleAdditionalMode_Seperateline) ? self.cm_config.cm_seperateLineHeight : 0)}views:@{\n                @\"title\":self.titleView,\n                @\"seperateline\":self.seperateline}]];\n    \n    \n    [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:vf options:0 metrics:@{ @\"titleTop\":@(self.cm_config.cm_titleTop),@\"titleH\":@(self.cm_config.cm_titleHeight),@\"seperateH\":@((self.cm_config.cm_additionalMode&CMPageTitleAdditionalMode_Seperateline) ? self.cm_config.cm_seperateLineHeight : 0)}views:@{@\"title\":self.titleView,@\"seperateline\":self.seperateline,@\"content\":self.contentView}]];\n    \n    \n    if (self.cm_config.cm_rightView && self.cm_config.cm_contentMode != CMPageTitleContentMode_Right) {\n        \n        [self addSubview:self.cm_config.cm_rightView];\n        self.cm_config.cm_rightView.translatesAutoresizingMaskIntoConstraints = NO;\n        \n        [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"H:[rightView(==width)]|\" options:NSLayoutFormatAlignAllRight metrics:@{@\"width\":@(self.cm_config.cm_rightView.cm_width)}views:@{@\"rightView\":self.cm_config.cm_rightView}]];\n        [NSLayoutConstraint activateConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@\"V:|-(==mariginTop)-[rightView(==height)]\" options:0 metrics:@{@\"mariginTop\":@((self.cm_config.cm_titleHeight - self.cm_config.cm_rightView.cm_height)*0.5 +self.cm_config.cm_titleTop),@\"height\":@(self.cm_config.cm_rightView.cm_height)}views:@{@\"rightView\":self.cm_config.cm_rightView}]];\n    }\n}\n\n\n\n\n#pragma mark --- CMPageTitleContentViewDelegate\n\n- (void)cm_pageTitleContentViewClickWithLastIndex:(NSUInteger)LastIndex Index:(NSUInteger)index Repeat:(BOOL)repeat {\n    \n    if (self.delegate && [self.delegate respondsToSelector:@selector(cm_pageTitleViewSelectedWithIndex:Repeat:)])\n        [self.delegate cm_pageTitleViewSelectedWithIndex:index Repeat:repeat];\n    \n    if (self.delegate && [self.delegate respondsToSelector:@selector(cm_pageTitleViewClickWithIndex:Repeat:)])\n        [self.delegate cm_pageTitleViewClickWithIndex:index Repeat:repeat];\n    \n    if (!repeat)  [self.contentView setContentOffset:CGPointMake(index * self.cm_width, 0)];\n    if (!repeat) [self transtitonFromIndex:LastIndex TargetIndex:index];\n    \n}\n\n\n#pragma mark --- CMPageContentViewDelegate\n\n- (void)cm_pageContentViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {\n    [self.titleView cm_pageTitleContentViewAdjustPosition:scrollView];\n}\n\n- (void)cm_pageContentViewDidEndDeceleratingWithIndex:(NSInteger)index {\n    if (self.titleView.cm_selectedIndex == index) return;\n    [self transtitonFromIndex:self.titleView.cm_selectedIndex TargetIndex:index];\n    self.titleView.cm_selectedIndex = index;\n    if (self.delegate && [self.delegate respondsToSelector:@selector(cm_pageTitleViewSelectedWithIndex:Repeat:)])\n        [self.delegate cm_pageTitleViewSelectedWithIndex:index Repeat:NO];\n    \n    if (self.delegate &&  [self.delegate respondsToSelector:@selector(cm_pageTitleViewScrollToIndex:)])\n        [self.delegate cm_pageTitleViewScrollToIndex:index];\n    \n}\n\n\n- (void)cm_pageContentViewDidScrollProgress:(CGFloat)progress LeftIndex:(NSUInteger)leftIndex RightIndex:(NSUInteger)rightIndex {\n    \n    [self.titleView cm_pageTitleViewDidScrollProgress:progress LeftIndex:leftIndex RightIndex:rightIndex];\n    \n}\n\n\n\n\n\n\n\n- (BOOL)shouldAutomaticallyForwardAppearanceMethods{\n    \n    return NO;\n}\n\n- (void)endAppraranceFromIndex:(NSInteger)fromIndex TargetIndex:(NSInteger)targetIndex {\n    \n    NSInteger maxIndex = self.cm_config.cm_childControllers.count - 1;\n    \n    if ((fromIndex == maxIndex && targetIndex > maxIndex)|| (fromIndex == 0 && targetIndex<0)) return;\n    \n    UIViewController *fromController = self.cm_config.cm_childControllers[fromIndex];\n    UIViewController *targetController = self.cm_config.cm_childControllers[targetIndex];\n    \n    if (fromIndex != targetIndex)  [fromController endAppearanceTransition];\n    [targetController endAppearanceTransition];\n    \n}\n\n- (void)beginAppearanceFromIndex:(NSInteger)fromIndex TargetIndex:(NSInteger)targetIndex {\n    \n    NSInteger maxIndex = self.cm_config.cm_childControllers.count - 1;\n    if ((fromIndex == maxIndex && targetIndex > maxIndex)|| (fromIndex == 0 && targetIndex<0)) return;\n    \n    UIViewController *fromController = self.cm_config.cm_childControllers[fromIndex];\n    UIViewController *targetController = self.cm_config.cm_childControllers[targetIndex];\n    \n    if (fromIndex != targetIndex) [fromController beginAppearanceTransition:NO animated:NO];\n    [targetController beginAppearanceTransition:YES animated:NO];\n    \n}\n\n- (void)transtitonFromIndex:(NSInteger)fromIndex TargetIndex:(NSInteger)targetIndex {\n    [self beginAppearanceFromIndex:fromIndex TargetIndex:targetIndex];\n    [self endAppraranceFromIndex:fromIndex TargetIndex:targetIndex];\n}\n- (void)addMethodForParentController {\n    class_addMethod(self.cm_config.cm_parentController.class,NSSelectorFromString(@\"shouldAutomaticallyForwardAppearanceMethods\") , method_getImplementation(class_getInstanceMethod(self.class,NSSelectorFromString(@\"shouldAutomaticallyForwardAppearanceMethods\"))), \"v@:\");\n    \n}\n\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/CMPageTitleViewMacro.h",
    "content": "//\n//  CMPageTitleViewMacro.h\n//  CMPageTitleView\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by 智借iOS on 2019/5/9.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#ifndef CMPageTitleViewMacro_h\n#define CMPageTitleViewMacro_h\n\n// 过期提醒\n#define CMPageDeprecated(instead) NS_DEPRECATED(2_0, 2_0, 2_0, 2_0, instead)\n\n//断言\n#define CMPageErrorAssert(condition,message) NSAssert(condition,message)\n\n\n\n#endif /* CMPageTitleViewMacro_h */\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/UIView+CMCommon.h",
    "content": "//\n//  UIView+Common.h\n//  EBan\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n\n//  Created by CrabMan on 16/9/18.\n//  Copyright © 2016年 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface UIView (CMCommon)\n\n\n@property (nonatomic, assign) CGFloat cm_x;\n@property (nonatomic, assign) CGFloat cm_y;\n@property (nonatomic, assign) CGFloat cm_centerX;\n@property (nonatomic, assign) CGFloat cm_centerY;\n\n@property (nonatomic, assign) CGFloat cm_width;\n@property (nonatomic, assign) CGFloat cm_height;\n@property (nonatomic, assign) CGPoint cm_origin;\n@property (nonatomic, assign) CGSize  cm_size;\n\n@property (readonly) CGPoint cm_bottomLeft;\n@property (readonly) CGPoint cm_bottomRight;\n@property (readonly) CGPoint cm_topRight;\n\n@property CGFloat cm_top;\n@property CGFloat cm_left;\n\n@property CGFloat cm_bottom;\n@property CGFloat cm_right;\n\n/**当前所在的UINavigationConntroller*/\n@property (nonatomic,strong,readonly) UINavigationController *cm_navigationController;\n\n/**当前所在的UIViewController*/\n@property (nonatomic,strong,readonly) UINavigationController *cm_viewController;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Class/UIView+CMCommon.m",
    "content": "//\n//  UIView+Common.m\n//  EBan\n//\n//  GitHub 下载地址：https://github.com/CrabMen/CMPageTitleView\n//\n//  Created by CrabMan on 16/9/18.\n//  Copyright © 2016年 CrabMan. All rights reserved.\n//\n\n#import \"UIView+CMCommon.h\"\n\n@implementation UIView (CMCommon)\n\n\n- (CGFloat)cm_x{\n    return self.frame.origin.x;\n}\n\n- (void)setCm_x:(CGFloat)cm_x{\n    CGRect frame = self.frame;\n    frame.origin.x = cm_x;\n    self.frame = frame;\n}\n\n- (CGFloat)cm_y{\n    return self.frame.origin.y;\n}\n\n- (void)setCm_y:(CGFloat)cm_y{\n    CGRect frame = self.frame;\n    frame.origin.y = cm_y;\n    self.frame = frame;\n}\n\n\n- (CGFloat)cm_width{\n    return self.frame.size.width;\n}\n\n- (void)setCm_width:(CGFloat)cm_width{\n    CGRect frame = self.frame;\n    frame.size.width = cm_width;\n    self.frame = frame;\n}\n\n- (CGFloat)cm_height{\n    return self.frame.size.height;\n}\n\n- (void)setCm_height:(CGFloat)cm_height{\n    CGRect frame = self.frame;\n    frame.size.height = cm_height;\n    self.frame = frame;\n}\n\n\n- (CGFloat)cm_centerX{\n    return self.center.x;\n}\n\n- (void)setCm_centerX:(CGFloat)cm_centerX{\n    CGPoint center = self.center;\n    center.x = cm_centerX;\n    self.center = center;\n}\n\n- (CGFloat)cm_centerY{\n    return self.center.y;\n}\n\n- (void)setCm_centerY:(CGFloat)cm_centerY{\n    CGPoint center = self.center;\n    center.y = cm_centerY;\n    self.center = center;\n}\n\n- (CGPoint)cm_origin{\n    return self.frame.origin;\n}\n\n- (void)setCm_origin:(CGPoint)cm_origin{\n    CGRect frame = self.frame;\n    frame.origin = cm_origin;\n    self.frame = frame;\n}\n\n- (CGSize)cm_size{\n    return self.frame.size;\n}\n\n- (void)setCm_size:(CGSize)cm_size{\n    CGRect frame = self.frame;\n    frame.size = cm_size;\n    self.frame = frame;\n}\n\n// Query other frame locations\n- (CGPoint) cm_bottomRight{\n    CGFloat x = self.frame.origin.x + self.frame.size.width;\n    CGFloat y = self.frame.origin.y + self.frame.size.height;\n    return CGPointMake(x, y);\n}\n\n- (CGPoint) cm_bottomLeft{\n    CGFloat x = self.frame.origin.x;\n    CGFloat y = self.frame.origin.y + self.frame.size.height;\n    return CGPointMake(x, y);\n}\n\n- (CGPoint)cm_topRight{\n    CGFloat x = self.frame.origin.x + self.frame.size.width;\n    CGFloat y = self.frame.origin.y;\n    return CGPointMake(x, y);\n}\n\n// Retrieve and set top, bottom, left, right\n\n- (CGFloat) cm_top{\n    return self.frame.origin.y;\n}\n\n- (void) setCm_top:(CGFloat)cm_top{\n    CGRect newframe = self.frame;\n    newframe.origin.y = cm_top;\n    self.frame = newframe;\n}\n\n- (CGFloat)cm_left{\n    return self.frame.origin.x;\n}\n\n- (void)setCm_left:(CGFloat)cm_left{\n    CGRect newframe = self.frame;\n    newframe.origin.x = cm_left;\n    self.frame = newframe;\n}\n\n- (CGFloat)cm_bottom{\n    return self.frame.origin.y + self.frame.size.height;\n}\n\n- (void)setCm_bottom:(CGFloat)cm_bottom{\n    CGRect newframe = self.frame;\n    newframe.origin.y = cm_bottom - self.frame.size.height;\n    self.frame = newframe;\n}\n\n- (CGFloat)cm_right{\n    return self.frame.origin.x + self.frame.size.width;\n}\n\n- (void)setCm_right:(CGFloat)cm_right{\n    CGFloat delta = cm_right - (self.frame.origin.x + self.frame.size.width);\n    CGRect newframe = self.frame;\n    newframe.origin.x += delta ;\n    self.frame = newframe;\n}\n\n\n-(UINavigationController *)cm_navigationController {\n    return (self.cm_viewController ? (self.cm_viewController.navigationController ?: nil): nil);\n}\n\n- (UIViewController *)cm_viewController {\n    UIResponder *next = self.nextResponder;\n    do {\n        if ([next isKindOfClass:[UIViewController class]]) {\n            return (UIViewController *)next;\n        }\n        next = next.nextResponder;\n    }while(next != nil);\n    \n    return nil;\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Demo/CMChildTableController.h",
    "content": "//\n//  CMChildController.h\n//  CMPageTitleView\n//\n//  Created by 郭强 on 2019/12/14.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface CMChildTableController : UITableViewController\n\n@property (nonatomic,assign) CGFloat topInset;\n\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Demo/CMChildTableController.m",
    "content": "//\n//  CMChildController.m\n//  CMPageTitleView\n//\n//  Created by 郭强 on 2019/12/14.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import \"CMChildTableController.h\"\n#import <Masonry.h>\n#import \"MJRefresh.h\"\n@interface CMChildTableController ()\n\n@property(nonatomic,weak) UIButton *button;\n\n\n@end\n\n@implementation CMChildTableController\n\n- (void)setTopInset:(CGFloat)topInset {\n    \n    _topInset = topInset;\n    \n    if (topInset) {\n        self.tableView.contentInset = UIEdgeInsetsMake(44, 0, 0, 0);\n        if (@available(iOS 11.0, *)) {\n            self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;\n        } else {\n            self.automaticallyAdjustsScrollViewInsets = NO;\n        }\n    } else {\n        self.tableView.contentInset = UIEdgeInsetsZero;\n    }\n}\n\n\n- (UIButton *)button {\n    if (!_button) {\n        UIButton *button = [UIButton new];\n        [button setTitle:@\"跳转到详情\" forState:UIControlStateNormal];\n        [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];\n        button.layer.cornerRadius = 4;\n        button.backgroundColor = [UIColor lightGrayColor];\n        [button addTarget:self action:@selector(buttonnClickAction:) forControlEvents:UIControlEventTouchUpInside];\n        _button = button;\n        [self.view addSubview:_button];\n    }\n    return _button;\n    \n}\n\n- (void)buttonnClickAction:(UIButton *)sender {\n    \n    UIViewController *detailVC = [UIViewController new];\n    detailVC.title = @\"详情页\";\n    detailVC.view.backgroundColor = UIColor.redColor;\n    [self.parentViewController.navigationController pushViewController:detailVC animated:YES];\n}\n\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    NSLog(@\"viewDidLoad --- %@\",self.title);\n    \n    \n}\n\n- (void)viewWillAppear:(BOOL)animated {\n    [super viewWillAppear:animated];\n    NSLog(@\"viewWillAppear --- %@\",self.title);\n    \n    \n    if (self.topInset) {\n        self.tableView.contentInset = UIEdgeInsetsMake(44, 0, 0, 0);\n        self.tableView.mj_header = nil;\n    } else {\n        self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{\n                   dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{\n                       [self.tableView.mj_header endRefreshing];\n                       \n                   });\n               } ];\n        self.tableView.contentInset = UIEdgeInsetsZero;\n    }\n    \n    if (self.tableView.mj_header) {\n        [self.tableView.mj_header beginRefreshing];\n        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{\n            [self.tableView.mj_header endRefreshing];\n            \n        });\n    }\n    \n#warning --- scrollview下沉问题,请添加以下代码\n    \n    if (@available(iOS 11.0, *)) {\n        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;\n    } else {\n        self.automaticallyAdjustsScrollViewInsets = NO;\n    }\n    \n}\n\n- (void)viewWillDisappear:(BOOL)animated {\n    [super viewWillDisappear:animated];\n    NSLog(@\"viewWillDisappear --- %@\",self.title);\n    \n}\n\n- (void)viewDidAppear:(BOOL)animated {\n    [super viewWillAppear:animated];\n    NSLog(@\"viewDidAppear --- %@\",self.title);\n    \n}\n\n- (void)viewDidDisappear:(BOOL)animated {\n    [super viewWillDisappear:animated];\n    NSLog(@\"viewDidDisappear --- %@\",self.title);\n    \n}\n\n\n\n- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {\n    \n    \n    return 100;\n    \n}\n\n- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {\n    \n    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass(self.class)];\n    \n    if (!cell) {\n        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:NSStringFromClass(self.class)];\n    }\n    \n    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:NSStringFromClass(self.class)];\n    cell.textLabel.text = [NSString stringWithFormat:@\"-------> %@ -- 第%ld行 <------- \",self.title,indexPath.row];\n    cell.textLabel.font = [UIFont systemFontOfSize:18];\n    cell.textLabel.textColor = UIColor.blackColor;\n    cell.backgroundColor = [UIColor colorWithWhite:1 alpha:0];\n    return  cell;\n    \n}\n\n- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {\n    \n    UIViewController *detailVC = [UIViewController new];\n    detailVC.title = @\"详情页\";\n    detailVC.view.backgroundColor = UIColor.redColor;\n    [self.parentViewController.navigationController pushViewController:detailVC animated:YES];\n}\n\n\n/*\n #pragma mark - Navigation\n \n // In a storyboard-based application, you will often want to do a little preparation before navigation\n - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {\n // Get the new view controller using [segue destinationViewController].\n // Pass the selected object to the new view controller.\n }\n */\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Demo/CMMainTableController.h",
    "content": "//\n//  CMMainTableController.h\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2019/4/10.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface CMMainTableController : UITableViewController\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Demo/CMMainTableController.m",
    "content": "//\n//  CMMainTableController.m\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2019/4/10.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import \"CMMainTableController.h\"\n#import \"CMViewController.h\"\n@interface CMMainTableController ()\n\n/**样式数组*/\n@property (nonatomic,strong) NSArray *styleArray;\n\n/**组合效果*/\n@property (nonatomic,strong) NSArray *mixStyleArray;\n\n\n@end\n\n@implementation CMMainTableController\n\n\n-(NSArray *)styleArray {\n    if (!_styleArray) {\n        _styleArray =@[@{\n                           @\"title\":@\"基本样式\",\n                           @\"array\":@[\n                                   \n                                   @\"颜色效果 - RGB渐变\",\n                                   @\"颜色效果 - 填充渐变\",\n                                   @\"颜色效果 - 无渐变\",\n                                   \n                                   @\"切换样式 - 字体放大\",\n                                   @\"切换样式 - 下划线\",\n                                   @\"切换样式 - 遮罩\",\n                                   @\"切换样式 - 字体放大 - 延迟\",\n                                   @\"切换样式 - 下划线 - 延迟\",\n                                   @\"切换样式 - 遮罩 - 延迟\",\n                                   \n                                   @\"附加效果 - 标题栏下方分割线\",\n                                   @\"附加效果 - 标题文字之间分割线\",\n                                   \n                                   @\"对齐方式 -- 左对齐\",\n                                   @\"对齐方式 -- 右对齐\",\n                                   @\"对齐方式 -- 居中\",\n                                   @\"对齐方式 -- SpaceAround\",\n                                   \n                                   @\"字体放大效果时对其方式 -- 居中对齐（默认）\",\n                                   @\"字体放大效果时对其方式 -- 上对齐\",\n                                   @\"字体放大效果时对其方式 -- 下对齐\"\n                                   \n                                   ]},\n                       \n                       @{\n                           @\"title\":@\"组合样式\",\n                           @\"array\":@[\n                                   \n                                   @\"字体放大 - 颜色RGB渐变\",\n                                   @\"字体放大 - 颜色填充渐变\",\n                                   @\"字体放大 - 颜色无渐变\",\n                                   @\"字体放大(延迟) - 颜色RGB渐变\",\n                                   @\"字体放大(延迟) - 颜色填充渐变\",\n                                   @\"字体放大(延迟) - 颜色无渐变\",\n                                   \n                                   @\"下划线 - 颜色RGB渐变\",\n                                   @\"下划线 - 颜色填充渐变\",\n                                   @\"下划线 - 颜色无渐变\",\n                                   @\"下划线(延迟) - 颜色RGB渐变\",\n                                   @\"下划线(延迟) - 颜色填充渐变\",\n                                   @\"下划线(延迟) - 颜色无渐变\",\n                                   \n                                   @\"下划线（固定宽度）- 颜色RGB渐变\",\n                                   @\"下划线（固定宽度）- 颜色填充渐变\",\n                                   @\"下划线（固定宽度）- 颜色无渐变\",\n                                   @\"下划线（延迟 && 固定宽度）- 颜色RGB渐变\",\n                                   @\"下划线（延迟 && 固定宽度）- 颜色填充渐变\",\n                                   @\"下划线（延迟 && 固定宽度）- 颜色无渐变\",\n                                   \n                                   @\"下划线（比例宽度）- 颜色RGB渐变\",\n                                   @\"下划线（比例宽度）- 颜色填充渐变\",\n                                   @\"下划线（比例宽度）- 颜色无渐变\",\n                                   @\"下划线（延迟 && 比例宽度）- 颜色RGB渐变\",\n                                   @\"下划线（延迟 && 比例宽度）- 颜色填充渐变\",\n                                   @\"下划线（延迟 && 比例宽度）- 颜色无渐变\",\n                                   \n                                   @\"下划线（延展）- 颜色RGB渐变\",\n                                   @\"下划线（延展）- 颜色填充渐变\",\n                                   @\"下划线（延展）- 颜色无渐变\",\n                                   @\"下划线（延展 && 固定宽度）- 颜色RGB渐变\",\n                                   @\"下划线（延展 && 固定宽度）- 颜色填充渐变\",\n                                   @\"下划线（延展 && 固定宽度）- 颜色无渐变\",\n                                   @\"下划线（延展 && 比例宽度）- 颜色RGB渐变\",\n                                   @\"下划线（延展 && 比例宽度）- 颜色填充渐变\",\n                                   @\"下划线（延展 && 比例宽度）- 颜色无渐变\",\n                                   \n                                   @\"遮罩 - 颜色RGB渐变\",\n                                   @\"遮罩 - 颜色填充渐变\",\n                                   @\"遮罩 - 颜色无渐变\",\n                                   @\"遮罩(延迟) - 颜色RGB渐变\",\n                                   @\"遮罩(延迟) - 颜色填充渐变\",\n                                   @\"遮罩(延迟) - 颜色无渐变\",\n                                   \n                                   @\"遮罩（固定宽度）- 颜色RGB渐变\",\n                                   @\"遮罩（固定宽度）- 颜色填充渐变\",\n                                   @\"遮罩（固定宽度）- 颜色无渐变\",\n                                   @\"遮罩（延迟 && 固定宽度）- 颜色RGB渐变\",\n                                   @\"遮罩（延迟 && 固定宽度）- 颜色填充渐变\",\n                                   @\"遮罩（延迟 && 固定宽度）- 颜色无渐变\",\n                                   \n                                   @\"字体放大 && 下划线 - 颜色填充渐变\",\n                                   @\"字体放大 && 下划线 && 延迟 - 颜色无渐变\",\n                                   \n                                   @\"字体放大 && 下划线（延展）- 颜色填充渐变\",\n                                   @\"字体放大 && 下划线（延展 && 固定宽度 ）- 颜色填充渐变\",\n                                   @\"字体放大 && 下划线（延展 && 比例宽度 ）-颜色填充渐变\",\n                                   @\"字体放大 && 下划线（延展 && 放大时下对齐 ）-颜色填充渐变\",\n                                   @\"字体放大 && 下划线（延展 && 放大时下对齐 && 左对齐）-颜色填充渐变\",\n                                   \n                                   \n                                   ]\n                           },\n                       \n                       \n                       @{\n                           @\"title\":@\"其他样式\",\n                           @\"array\":@[\n                                   @\"标题栏背景色\",\n                                   @\"标题栏背景图片\",\n                                   @\"rightView\",\n                                   @\"全屏穿透样式\",\n                                   @\"全屏穿透样式(标题栏偏移)\",\n                                   @\"对齐方式(Space arround)\",\n                                   ]},\n                       \n                       ];\n        \n        \n        \n        \n    }\n    \n    return _styleArray;\n}\n\n\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    \n    \n    self.title = @\"CMPageTitleView\";\n    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@\"Cell\"];\n    \n}\n\n\n#pragma mark - Table view data source\n\n- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {\n    \n    \n    UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0,self.view.bounds.size.width, 40)];\n    header.backgroundColor = [UIColor lightGrayColor];\n    \n    UILabel *label = [[UILabel alloc] initWithFrame:header.bounds];\n    \n    label.textColor = [UIColor blackColor];\n    \n    label.font = [UIFont boldSystemFontOfSize:18];\n    \n    label.text = self.styleArray[section][@\"title\"];\n    \n    label.textAlignment = NSTextAlignmentCenter;\n    \n    [header addSubview:label];\n    \n    return header;\n    \n}\n\n- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {\n    \n    return 40;\n}\n\n- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {\n    \n    return self.styleArray.count;\n    \n}\n\n\n- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {\n    \n    \n    return [self.styleArray[section][@\"array\"] count];\n}\n\n\n- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {\n    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@\"Cell\" forIndexPath:indexPath];\n    \n    cell.textLabel.text = [NSString stringWithFormat:@\"%02ld-%02ld.%@\",indexPath.section,indexPath.row,self.styleArray[indexPath.section][@\"array\"][indexPath.row]];\n    cell.textLabel.numberOfLines = 0;\n    cell.textLabel.font = [UIFont systemFontOfSize:14];\n    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;\n    return cell;\n}\n\n- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {\n    CMViewController *vc = [CMViewController new];\n    SEL selector = NSSelectorFromString([NSString stringWithFormat:@\"style%02ld_%02ld\",indexPath.section,indexPath.row]);\n    [vc performSelector:selector];\n    \n    [self.navigationController pushViewController:vc animated:YES];\n}\n/*\n - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {\n UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:<#@\"reuseIdentifier\"#> forIndexPath:indexPath];\n \n // Configure the cell...\n \n return cell;\n }\n */\n\n/*\n // Override to support conditional editing of the table view.\n - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {\n // Return NO if you do not want the specified item to be editable.\n return YES;\n }\n */\n\n/*\n // Override to support editing the table view.\n - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {\n if (editingStyle == UITableViewCellEditingStyleDelete) {\n // Delete the row from the data source\n [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];\n } else if (editingStyle == UITableViewCellEditingStyleInsert) {\n // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view\n }\n }\n */\n\n/*\n // Override to support rearranging the table view.\n - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {\n }\n */\n\n/*\n // Override to support conditional rearranging of the table view.\n - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {\n // Return NO if you do not want the item to be re-orderable.\n return YES;\n }\n */\n\n/*\n #pragma mark - Navigation\n \n // In a storyboard-based application, you will often want to do a little preparation before navigation\n - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {\n // Get the new view controller using [segue destinationViewController].\n // Pass the selected object to the new view controller.\n }\n */\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Demo/CMViewController.h",
    "content": "//\n//  CMViewController.h\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2019/4/10.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface CMViewController : UIViewController\n\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Demo/CMViewController.m",
    "content": "//\n//  CMViewController.m\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2019/4/10.\n//  Copyright © 2019 CrabMan. All rights reserved.\n//\n\n#import \"CMViewController.h\"\n#import \"CMPageTitleView.h\"\n#import \"CMChildTableController.h\"\n#import \"Masonry.h\"\n\n//是否是刘海屏\n#define CM_NOTCH_SCREEN \\\n({BOOL isPhoneX = NO;\\\nif (@available(iOS 11.0, *)) {\\\nisPhoneX = [[UIApplication sharedApplication] delegate].window.safeAreaInsets.bottom > 0.0;\\\n}\\\n(isPhoneX);})\n\n#define CM_Interface_Portrait UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation)\n\n//屏幕尺寸\n#define CM_SCREEN_W   [UIScreen mainScreen].bounds.size.width\n#define CM_SCREEN_H  [UIScreen mainScreen].bounds.size.height\n\n\n//导航栏高度\n#define CM_NAVI_BAR_H (CM_Interface_Portrait ? (CM_NOTCH_SCREEN ? 88 : 64) : (CM_NOTCH_SCREEN ? 44 : 44))\n\n//电池条高度\n#define CM_STATUE_BAR_H (CM_Interface_Portrait ? (CM_NOTCH_SCREEN ? 44 : 20):0)\n\n//tabbar高度\n#define CM_TAB_BAR_H (CM_NOTCH_SCREEN ? 83.0f: 49.0)\n\n\n//随机色\n#define CM_RANDOM_COLOR [UIColor colorWithRed:arc4random_uniform(256)/255.0 green:arc4random_uniform(256)/255.0 blue:arc4random_uniform(256)/255.0 alpha:1.0]\n\n\n\n@interface CMViewController ()<CMPageTitleViewDelegate>\n\n/**视图控制器数组*/\n@property (nonatomic,copy) NSArray *childControllers;\n\n/**个数较少的视图控制器数组*/\n@property (nonatomic,strong) NSArray *lessChildControllers;\n\n@property (nonatomic,strong) NSArray *twoControllers;\n\n@property (nonatomic,weak) UIImageView *imageView;\n\n/**default notes*/\n@property (nonatomic,weak) CMPageTitleView *pageTitleView;\n\n/**default note*/\n@property (nonatomic,strong) UIImageView *rightView;\n\n\n@end\n\n@implementation CMViewController\n\n- (UIImageView *)rightView {\n    \n    if (!_rightView) {\n        _rightView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 60, 66)];\n        //        _rightView.alpha = 0.75;\n        _rightView.backgroundColor = UIColor.lightGrayColor;\n        _rightView.image = [UIImage imageNamed:@\"add\"];\n        _rightView.contentMode = UIViewContentModeScaleAspectFit;\n        _rightView.userInteractionEnabled = YES;\n        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGesture:)];\n        [_rightView addGestureRecognizer:tap];\n    }\n    return _rightView;\n}\n\n- (CMPageTitleView *)pageTitleView {\n    if (!_pageTitleView) {\n        CMPageTitleView *pageTitleView = [[CMPageTitleView alloc] init];\n        \n        _pageTitleView = pageTitleView;\n        [self.view addSubview:_pageTitleView];\n        \n    }\n    \n    return _pageTitleView;\n    \n}\n- (UIImageView *)imageView {\n    \n    if (!_imageView) {\n        UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@\"background_image\"]];\n        \n        _imageView = imageView;\n        \n        [self.view addSubview:_imageView];\n    }\n    \n    return _imageView;\n}\n\n- (NSArray *)lessChildControllers {\n    \n    return [self.childControllers subarrayWithRange:NSMakeRange(0, 3)];\n    \n    \n}\n\n\n- (NSArray *)twoControllers {\n    \n    return [self.childControllers subarrayWithRange:NSMakeRange(0, 2)];\n    \n    \n}\n\n- (NSArray *)childControllers {\n    \n    if (!_childControllers) {\n        CMChildTableController *vc0 = [CMChildTableController new];\n        CMChildTableController *vc1 = [CMChildTableController new];\n        CMChildTableController *vc2 = [CMChildTableController new];\n        CMChildTableController *vc3 = [CMChildTableController new];\n        CMChildTableController *vc4 = [CMChildTableController new];\n        CMChildTableController *vc5 = [CMChildTableController new];\n        CMChildTableController *vc6 = [CMChildTableController new];\n        CMChildTableController *vc7 = [CMChildTableController new];\n        CMChildTableController *vc8 = [CMChildTableController new];\n        CMChildTableController *vc9 = [CMChildTableController new];\n        CMChildTableController *vc10 = [CMChildTableController new];\n        \n        vc0.title = @\"推荐\";\n        vc1.title = @\"小视频\";\n        vc2.title = @\"视频\";\n        vc3.title = @\"懂车帝\";\n        vc4.title = @\"北京\";\n        vc5.title = @\"娱乐\";\n        vc6.title = @\"图片\";\n        vc7.title = @\"热点\";\n        vc8.title = @\"体育\";\n        vc9.title = @\"财经\";\n        vc10.title = @\"国际\";\n        \n        \n        vc0.view.backgroundColor = CM_RANDOM_COLOR;\n        vc1.view.backgroundColor = CM_RANDOM_COLOR;\n        vc2.view.backgroundColor = CM_RANDOM_COLOR;\n        vc3.view.backgroundColor = CM_RANDOM_COLOR;\n        vc4.view.backgroundColor = CM_RANDOM_COLOR;\n        vc5.view.backgroundColor = CM_RANDOM_COLOR;\n        vc6.view.backgroundColor = CM_RANDOM_COLOR;\n        vc7.view.backgroundColor = CM_RANDOM_COLOR;\n        vc8.view.backgroundColor = CM_RANDOM_COLOR;\n        vc9.view.backgroundColor = CM_RANDOM_COLOR;\n        vc10.view.backgroundColor = CM_RANDOM_COLOR;\n        \n        _childControllers =@[vc0,vc1,vc2,vc3,vc4,vc5,vc6,vc7];\n        \n    }\n    \n    return _childControllers;\n}\n\n- (void)viewWillAppear:(BOOL)animated {\n    [super viewWillAppear:animated];\n    \n    self.view.backgroundColor = [UIColor whiteColor];\n    \n    [self setReloadBarButtonItem];\n    \n    \n    if (@available(iOS 11.0, *)) {\n        self.automaticallyAdjustsScrollViewInsets = UIScrollViewContentInsetAdjustmentNever;\n    } else {\n        // Fallback on earlier versions\n        self.automaticallyAdjustsScrollViewInsets = NO;\n    }\n    \n    \n    [self.pageTitleView mas_remakeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n}\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    // Do any additional setup after loading the view.\n    \n}\n\n\n\n- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator{\n    [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];\n    \n    CGFloat naviH = (size.height > size.width ? (CM_NOTCH_SCREEN ? 88 : 64) : (CM_NOTCH_SCREEN ? 44 : 44));\n    [self.pageTitleView mas_remakeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.bottom.mas_equalTo(0);\n        make.top.mas_equalTo(naviH);\n    }];\n}\n\n- (void)setReloadBarButtonItem {\n    \n    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@\"刷新数据\" style:UIBarButtonItemStyleDone target:self action:@selector(reloadConfig:)];\n    \n    \n    \n}\n\n- (void)reloadConfig:(UIBarButtonItem *)sender {\n    \n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.lessChildControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    config.cm_contentMode = CMPageTitleContentMode_Left;\n    config.cm_additionalMode = CMPageTitleAdditionalMode_Seperateline;\n//    config.cm_scaleGradientContentMode = CMPageTitleScaleGradientContentMode_Bottom;\n    config.cm_scale = 1.3;\n    config.cm_defaultIndex = 1;\n    config.cm_selectedColor = UIColor.blueColor;\n    config.cm_underlineColor = UIColor.blueColor;\n    self.pageTitleView.cm_config = config;\n    \n    [self.lessChildControllers setValue:@(0) forKey:@\"topInset\"];\n    [self.pageTitleView cm_reloadConfig];\n    \n    \n}\n\n- (void)tapGesture:(UITapGestureRecognizer *)gesture {\n    \n    //do something ...\n    NSLog(@\"****右侧视图被点击****\");\n    \n}\n\n\n- (void)style00_00 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_01 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_02 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_03 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    //默认放大倍数是1.2\n    // 可以通过下方代码自定义\n    //    config.cm_font = [UIFont systemFontOfSize:16]\n    //    config.cm_selectedFont = [UIFont systemFontOfSize:18];\n    //或者\n    //    config.cm_font = [UIFont systemFontOfSize:16]\n    //    config.cm_scale = 1.3;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_04 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_05 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_06 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Delay ;\n    //默认放大倍数是1.2\n    // 可以通过下方代码自定义\n    //    config.cm_font = [UIFont systemFontOfSize:16]\n    //    config.cm_selectedFont = [UIFont systemFontOfSize:18];\n    //或者\n    //    config.cm_font = [UIFont systemFontOfSize:16]\n    //    config.cm_scale = 1.3;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_07 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_08 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_09 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_additionalMode = CMPageTitleAdditionalMode_Seperateline;\n    config.cm_seperateLineHeight = 2;\n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_10 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_additionalMode = CMPageTitleAdditionalMode_Splitter;\n    config.cm_splitterSize = CGSizeMake(1/[UIScreen mainScreen].scale, config.cm_titleHeight * 0.5);\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_11 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.lessChildControllers;\n    config.cm_contentMode = CMPageTitleContentMode_Left;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_12 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.lessChildControllers;\n    config.cm_contentMode = CMPageTitleContentMode_Right;\n    \n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style00_13 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.lessChildControllers;\n    \n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style00_14 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.lessChildControllers;\n    config.cm_contentMode = CMPageTitleContentMode_SpaceAround;\n    \n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style00_15 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    //    默认\n    //    config.cm_scaleGradientContentMode = CMPageTitleScaleGradientContentMode_Center;\n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_16 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    config.cm_scaleGradientContentMode = CMPageTitleScaleGradientContentMode_Top;\n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style00_17 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    \n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    config.cm_scaleGradientContentMode = CMPageTitleScaleGradientContentMode_Bottom;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n\n- (void)style01_00 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_01 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_02 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_03 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n}\n\n- (void)style01_04 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n    \n}\n\n- (void)style01_05 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_06 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n    \n}\n\n- (void)style01_07 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_08 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style01_09 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_10 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_11 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n}\n\n- (void)style01_12 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_13 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_14 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style01_15 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_16 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_17 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_18 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidthScale = 0.6;\n    \n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_19 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidthScale = 0.6;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_20 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidthScale = 0.6;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_21 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_underlineWidthScale = 0.6;\n    \n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_22 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_underlineWidthScale = 0.6;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_23 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_underlineWidthScale = 0.6;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_24 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    \n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_25 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_26 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_27 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_28 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_29 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidth = 10;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_30 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_underlineWidthScale = 1.3;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_31 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_underlineWidthScale = 1.3;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_32 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_underlineWidthScale = 1.3;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_33 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_34 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_35 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_36 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n}\n\n- (void)style01_37 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n    \n}\n\n- (void)style01_38 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n\n- (void)style01_39 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    config.cm_coverWidth = 56;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_40 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    config.cm_coverWidth = 56;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_41 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover;\n    config.cm_coverWidth = 56;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_42 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    config.cm_coverWidth = 56;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n}\n\n- (void)style01_43 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    config.cm_coverWidth = 56;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n    \n}\n\n- (void)style01_44 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Cover | CMPageTitleSwitchMode_Delay;\n    config.cm_coverWidth = 56;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n\n- (void)style01_45 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_46 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline | CMPageTitleSwitchMode_Delay;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_None;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_47 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    config.cm_underlineStretch = YES;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_48 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_underlineWidth = 10;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_49 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_underlineWidthScale = 0.6;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    \n    self.pageTitleView.cm_config = config;\n    \n    \n}\n\n- (void)style01_50 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    \n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    config.cm_scaleGradientContentMode = CMPageTitleScaleGradientContentMode_Bottom;\n    config.cm_scale = 1.3;\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style01_51 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.lessChildControllers;\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    config.cm_contentMode = CMPageTitleContentMode_Left;\n    config.cm_scaleGradientContentMode = CMPageTitleScaleGradientContentMode_Bottom;\n    config.cm_scale = 1.3;\n    \n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n- (void)style02_00 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    config.cm_backgroundColor = [UIColor colorWithWhite:0 alpha:0.3];\n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style02_01 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    config.cm_backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@\"background_image\"]];\n    \n    self.pageTitleView.cm_config = config;\n}\n\n- (void)style02_02 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_RGB;\n    config.cm_titleTop = 20;\n    config.cm_rightView = self.rightView;\n    self.pageTitleView.cm_config = config;\n}\n\n\n- (void)style02_03 {\n    \n\n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    self.pageTitleView.delegate = self;\n\n   CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n\n    config.cm_switchMode = CMPageTitleSwitchMode_Scale | CMPageTitleSwitchMode_Underline;\n    config.cm_underlineStretch = YES;\n    config.cm_fullScreen = YES;\n    config.cm_underlineWidthScale = 0.6;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    config.cm_scale = 1.3;\n    config.cm_additionalMode = CMPageTitleAdditionalMode_Seperateline;\n    config.cm_seperateLineHeight = 2;\n    config.cm_seperaterLineColor = [UIColor.lightGrayColor colorWithAlphaComponent:0.7];\n    config.cm_backgroundColor = [UIColor.whiteColor colorWithAlphaComponent:0.7];\n    \n    [self.childControllers setValue:@(config.cm_seperateLineHeight+config.cm_titleHeight) forKey:@\"topInset\"];\n\n    \n    self.pageTitleView.cm_config = config;\n    \n}\n\n\n- (void)style02_04 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    config.cm_backgroundColor = UIColor.clearColor;\n    config.cm_titleTop = 40;\n    config.cm_fullScreen = YES;\n    self.pageTitleView.cm_config = config;\n    \n}\n\n\n\n- (void)style02_05 {\n    \n    [self.pageTitleView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n    }];\n    self.pageTitleView.delegate = self;\n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.twoControllers;\n    config.cm_gradientStyle = CMTitleColorGradientStyle_Fill;\n    config.cm_switchMode = CMPageTitleSwitchMode_Underline;\n    config.cm_contentMode = CMPageTitleContentMode_SpaceAround;\n    config.cm_underlineWidth = CM_SCREEN_W * 0.5;\n    self.pageTitleView.cm_config = config;\n    \n}\n\n\n\n- (void)cm_pageTitleViewSelectedWithIndex:(NSInteger)index Repeat:(BOOL)repeat {\n    \n    NSLog(@\"第%ld个标题被选中；且%@是重复选中\\n当前视图的高度:%lf\",index,repeat?@\"\":@\"不\",self.pageTitleView.cm_config.cm_childControllers[index].view.cm_y);\n    \n    \n}\n\n- (void)cm_pageTitleViewClickWithIndex:(NSInteger)index Repeat:(BOOL)repeat {\n    \n    \n    NSLog(@\"第%ld个标题被点击；且%@是重复点击\",index,repeat?@\"\":@\"不\");\n    \n}\n\n\n- (void)cm_pageTitleViewScrollToIndex:(NSInteger)index {\n    \n    \n    NSLog(@\"当前滚动到第%ld个标题\",index);\n    \n}\n\n\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/AppDelegate.h",
    "content": "//\n//  AppDelegate.h\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2018/8/13.\n//  Copyright © 2018年 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface AppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n\n\n@end\n\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/AppDelegate.m",
    "content": "//\n//  AppDelegate.m\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2018/8/13.\n//  Copyright © 2018年 CrabMan. All rights reserved.\n//\n\n#import \"AppDelegate.h\"\n#import \"CMMainTableController.h\"\n@interface AppDelegate ()\n\n@end\n\n@implementation AppDelegate\n\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {\n    // Override point for customization after application launch.\n    \n    _window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];\n    \n    UINavigationController *rootVC = [[UINavigationController alloc] initWithRootViewController:[CMMainTableController new]];\n    rootVC.interactivePopGestureRecognizer.enabled = YES;\n    _window.rootViewController = rootVC;\n\n    [_window makeKeyAndVisible];\n    return YES;\n}\n\n\n- (void)applicationWillResignActive:(UIApplication *)application {\n    // 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.\n    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.\n}\n\n\n- (void)applicationDidEnterBackground:(UIApplication *)application {\n    // 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.\n    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n}\n\n\n- (void)applicationWillEnterForeground:(UIApplication *)application {\n    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.\n}\n\n\n- (void)applicationDidBecomeActive:(UIApplication *)application {\n    // 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.\n}\n\n\n- (void)applicationWillTerminate:(UIApplication *)application {\n    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n}\n\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"83.5x83.5\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ios-marketing\",\n      \"size\" : \"1024x1024\",\n      \"scale\" : \"1x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Assets.xcassets/add.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"添加.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Assets.xcassets/background_image.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"background_image.jpg\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"14490.70\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <device id=\"retina6_1\" orientation=\"portrait\">\n        <adaptation id=\"fullscreen\"/>\n    </device>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"14490.49\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"cgc-24-o5G\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"BvC-lT-foE\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"53\" y=\"375\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"14490.70\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"BYZ-38-t0r\">\n    <device id=\"retina6_1\" orientation=\"portrait\">\n        <adaptation id=\"fullscreen\"/>\n    </device>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"14490.49\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"tne-QT-ifu\">\n            <objects>\n                <viewController id=\"BYZ-38-t0r\" customClass=\"ViewController\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"vWM-KE-3TJ\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"FaY-Kh-9KK\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"8bC-Xf-vdC\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dkx-z0-nzr\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations~ipad</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView/Other/main.m",
    "content": "//\n//  main.m\n//  CMPageTitleView\n//\n//  Created by CrabMan on 2018/8/13.\n//  Copyright © 2018年 CrabMan. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n#import \"AppDelegate.h\"\n\nint main(int argc, char * argv[]) {\n    @autoreleasepool {\n        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));\n    }\n}\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 51;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t0401ED6B2488D66100A4129D /* CMChildTableController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0401ED692488D66000A4129D /* CMChildTableController.m */; };\n\t\t20598ED47AE57CA3A7346B2E /* Pods_CMPageTitleViewTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A3D90BC7D0E023236111CFB8 /* Pods_CMPageTitleViewTests.framework */; };\n\t\t3D58563707075CC0ECF6EB1C /* Pods_CMPageTitleView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8348F37DD152646043507B7D /* Pods_CMPageTitleView.framework */; };\n\t\t84EFD8C7E88418373356859D /* Pods_CMPageTitleViewUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A2648515C1D6D8734A20D40 /* Pods_CMPageTitleViewUITests.framework */; };\n\t\tB51FABE0225DD15C004117BD /* CMMainTableController.m in Sources */ = {isa = PBXBuildFile; fileRef = B51FABDF225DD15C004117BD /* CMMainTableController.m */; };\n\t\tB51FABE3225DD2E7004117BD /* CMViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B51FABE2225DD2E7004117BD /* CMViewController.m */; };\n\t\tB53D96F7224883C50092BDE3 /* CMPageTitleConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = B53D96F6224883C50092BDE3 /* CMPageTitleConfig.m */; };\n\t\tB5B8ACF62249CA2D00ABF82B /* UIView+CMCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B8ACF52249CA2D00ABF82B /* UIView+CMCommon.m */; };\n\t\tB5EBC9C821215A72000403B8 /* CMPageTitleContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EBC9B921215A72000403B8 /* CMPageTitleContentView.m */; };\n\t\tB5EBC9C921215A72000403B8 /* CMPageContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EBC9BA21215A72000403B8 /* CMPageContentView.m */; };\n\t\tB5EBC9CA21215A72000403B8 /* CMPageTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EBC9BB21215A72000403B8 /* CMPageTitleView.m */; };\n\t\tB5EBC9CB21215A72000403B8 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B5EBC9BE21215A72000403B8 /* Assets.xcassets */; };\n\t\tB5EBC9CD21215A72000403B8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B5EBC9C021215A72000403B8 /* LaunchScreen.storyboard */; };\n\t\tB5EBC9CE21215A72000403B8 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B5EBC9C221215A72000403B8 /* Main.storyboard */; };\n\t\tB5EBC9CF21215A72000403B8 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EBC9C421215A72000403B8 /* main.m */; };\n\t\tB5EBC9D021215A72000403B8 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EBC9C521215A72000403B8 /* AppDelegate.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\tB5EBC99821215A31000403B8 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = B5EBC97721215A2E000403B8 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = B5EBC97E21215A2F000403B8;\n\t\t\tremoteInfo = CMPageTitleView;\n\t\t};\n\t\tB5EBC9A321215A31000403B8 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = B5EBC97721215A2E000403B8 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = B5EBC97E21215A2F000403B8;\n\t\t\tremoteInfo = CMPageTitleView;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t0401ED692488D66000A4129D /* CMChildTableController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMChildTableController.m; sourceTree = \"<group>\"; };\n\t\t0401ED6A2488D66100A4129D /* CMChildTableController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMChildTableController.h; sourceTree = \"<group>\"; };\n\t\t1A2648515C1D6D8734A20D40 /* Pods_CMPageTitleViewUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CMPageTitleViewUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t6FB0CEAE97F306B2DE1A62A3 /* Pods-CMPageTitleViewUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-CMPageTitleViewUITests.release.xcconfig\"; path = \"Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t789334BA070C5D2F074F49C9 /* Pods-CMPageTitleViewUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-CMPageTitleViewUITests.debug.xcconfig\"; path = \"Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t7A7BA8CFD14D0A58CCF66114 /* Pods-CMPageTitleViewTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-CMPageTitleViewTests.release.xcconfig\"; path = \"Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t8348F37DD152646043507B7D /* Pods_CMPageTitleView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CMPageTitleView.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tA3D90BC7D0E023236111CFB8 /* Pods_CMPageTitleViewTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CMPageTitleViewTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tAA21FEDE81DFC732D1A8BAFC /* Pods-CMPageTitleView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-CMPageTitleView.debug.xcconfig\"; path = \"Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tB51FABDE225DD15C004117BD /* CMMainTableController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CMMainTableController.h; sourceTree = \"<group>\"; };\n\t\tB51FABDF225DD15C004117BD /* CMMainTableController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CMMainTableController.m; sourceTree = \"<group>\"; };\n\t\tB51FABE1225DD2E7004117BD /* CMViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CMViewController.h; sourceTree = \"<group>\"; };\n\t\tB51FABE2225DD2E7004117BD /* CMViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CMViewController.m; sourceTree = \"<group>\"; };\n\t\tB53D96F5224883C50092BDE3 /* CMPageTitleConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CMPageTitleConfig.h; sourceTree = \"<group>\"; };\n\t\tB53D96F6224883C50092BDE3 /* CMPageTitleConfig.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CMPageTitleConfig.m; sourceTree = \"<group>\"; };\n\t\tB5B8ACF42249CA2D00ABF82B /* UIView+CMCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = \"UIView+CMCommon.h\"; sourceTree = \"<group>\"; };\n\t\tB5B8ACF52249CA2D00ABF82B /* UIView+CMCommon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = \"UIView+CMCommon.m\"; sourceTree = \"<group>\"; };\n\t\tB5EBC97F21215A2F000403B8 /* CMPageTitleView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CMPageTitleView.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tB5EBC99721215A31000403B8 /* CMPageTitleViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CMPageTitleViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tB5EBC9A221215A31000403B8 /* CMPageTitleViewUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CMPageTitleViewUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tB5EBC9B621215A72000403B8 /* CMPageTitleContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMPageTitleContentView.h; sourceTree = \"<group>\"; };\n\t\tB5EBC9B721215A72000403B8 /* CMPageContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMPageContentView.h; sourceTree = \"<group>\"; };\n\t\tB5EBC9B821215A72000403B8 /* CMPageTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMPageTitleView.h; sourceTree = \"<group>\"; };\n\t\tB5EBC9B921215A72000403B8 /* CMPageTitleContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMPageTitleContentView.m; sourceTree = \"<group>\"; };\n\t\tB5EBC9BA21215A72000403B8 /* CMPageContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMPageContentView.m; sourceTree = \"<group>\"; };\n\t\tB5EBC9BB21215A72000403B8 /* CMPageTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMPageTitleView.m; sourceTree = \"<group>\"; };\n\t\tB5EBC9BD21215A72000403B8 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = \"<group>\"; };\n\t\tB5EBC9BE21215A72000403B8 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\tB5EBC9C121215A72000403B8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\tB5EBC9C321215A72000403B8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\tB5EBC9C421215A72000403B8 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\tB5EBC9C521215A72000403B8 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = \"<group>\"; };\n\t\tB5EBC9C621215A72000403B8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tB5EE93B922842CE60062F7C5 /* CMPageTitleViewMacro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CMPageTitleViewMacro.h; sourceTree = \"<group>\"; };\n\t\tD3EFDB73791EB7362E8D3E81 /* Pods-CMPageTitleViewTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-CMPageTitleViewTests.debug.xcconfig\"; path = \"Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tE71FFC097CA2E6BE0DF86E8A /* Pods-CMPageTitleView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-CMPageTitleView.release.xcconfig\"; path = \"Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.release.xcconfig\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tB5EBC97C21215A2F000403B8 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t3D58563707075CC0ECF6EB1C /* Pods_CMPageTitleView.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB5EBC99421215A31000403B8 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t20598ED47AE57CA3A7346B2E /* Pods_CMPageTitleViewTests.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB5EBC99F21215A31000403B8 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t84EFD8C7E88418373356859D /* Pods_CMPageTitleViewUITests.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t96799725F871B0D79FB4BEF9 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8348F37DD152646043507B7D /* Pods_CMPageTitleView.framework */,\n\t\t\t\tA3D90BC7D0E023236111CFB8 /* Pods_CMPageTitleViewTests.framework */,\n\t\t\t\t1A2648515C1D6D8734A20D40 /* Pods_CMPageTitleViewUITests.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA989CE2B24D8F6E64959D5F1 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tAA21FEDE81DFC732D1A8BAFC /* Pods-CMPageTitleView.debug.xcconfig */,\n\t\t\t\tE71FFC097CA2E6BE0DF86E8A /* Pods-CMPageTitleView.release.xcconfig */,\n\t\t\t\tD3EFDB73791EB7362E8D3E81 /* Pods-CMPageTitleViewTests.debug.xcconfig */,\n\t\t\t\t7A7BA8CFD14D0A58CCF66114 /* Pods-CMPageTitleViewTests.release.xcconfig */,\n\t\t\t\t789334BA070C5D2F074F49C9 /* Pods-CMPageTitleViewUITests.debug.xcconfig */,\n\t\t\t\t6FB0CEAE97F306B2DE1A62A3 /* Pods-CMPageTitleViewUITests.release.xcconfig */,\n\t\t\t);\n\t\t\tpath = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB51FABDD225DD0E1004117BD /* Demo */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t0401ED6A2488D66100A4129D /* CMChildTableController.h */,\n\t\t\t\t0401ED692488D66000A4129D /* CMChildTableController.m */,\n\t\t\t\tB51FABDE225DD15C004117BD /* CMMainTableController.h */,\n\t\t\t\tB51FABDF225DD15C004117BD /* CMMainTableController.m */,\n\t\t\t\tB51FABE1225DD2E7004117BD /* CMViewController.h */,\n\t\t\t\tB51FABE2225DD2E7004117BD /* CMViewController.m */,\n\t\t\t);\n\t\t\tpath = Demo;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB5EBC97621215A2E000403B8 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC98121215A2F000403B8 /* CMPageTitleView */,\n\t\t\t\tB5EBC98021215A2F000403B8 /* Products */,\n\t\t\t\tA989CE2B24D8F6E64959D5F1 /* Pods */,\n\t\t\t\t96799725F871B0D79FB4BEF9 /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB5EBC98021215A2F000403B8 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC97F21215A2F000403B8 /* CMPageTitleView.app */,\n\t\t\t\tB5EBC99721215A31000403B8 /* CMPageTitleViewTests.xctest */,\n\t\t\t\tB5EBC9A221215A31000403B8 /* CMPageTitleViewUITests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB5EBC98121215A2F000403B8 /* CMPageTitleView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC9B421215A72000403B8 /* Class */,\n\t\t\t\tB51FABDD225DD0E1004117BD /* Demo */,\n\t\t\t\tB5EBC9BC21215A72000403B8 /* Other */,\n\t\t\t);\n\t\t\tpath = CMPageTitleView;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB5EBC9B421215A72000403B8 /* Class */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC9B821215A72000403B8 /* CMPageTitleView.h */,\n\t\t\t\tB5EBC9BB21215A72000403B8 /* CMPageTitleView.m */,\n\t\t\t\tB5EE93B922842CE60062F7C5 /* CMPageTitleViewMacro.h */,\n\t\t\t\tB53D96F5224883C50092BDE3 /* CMPageTitleConfig.h */,\n\t\t\t\tB53D96F6224883C50092BDE3 /* CMPageTitleConfig.m */,\n\t\t\t\tB5EBC9B621215A72000403B8 /* CMPageTitleContentView.h */,\n\t\t\t\tB5EBC9B921215A72000403B8 /* CMPageTitleContentView.m */,\n\t\t\t\tB5EBC9B721215A72000403B8 /* CMPageContentView.h */,\n\t\t\t\tB5EBC9BA21215A72000403B8 /* CMPageContentView.m */,\n\t\t\t\tB5B8ACF42249CA2D00ABF82B /* UIView+CMCommon.h */,\n\t\t\t\tB5B8ACF52249CA2D00ABF82B /* UIView+CMCommon.m */,\n\t\t\t);\n\t\t\tpath = Class;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB5EBC9BC21215A72000403B8 /* Other */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC9C621215A72000403B8 /* Info.plist */,\n\t\t\t\tB5EBC9BD21215A72000403B8 /* AppDelegate.h */,\n\t\t\t\tB5EBC9BE21215A72000403B8 /* Assets.xcassets */,\n\t\t\t\tB5EBC9C021215A72000403B8 /* LaunchScreen.storyboard */,\n\t\t\t\tB5EBC9C221215A72000403B8 /* Main.storyboard */,\n\t\t\t\tB5EBC9C421215A72000403B8 /* main.m */,\n\t\t\t\tB5EBC9C521215A72000403B8 /* AppDelegate.m */,\n\t\t\t);\n\t\t\tpath = Other;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\tB5EBC97E21215A2F000403B8 /* CMPageTitleView */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = B5EBC9AB21215A31000403B8 /* Build configuration list for PBXNativeTarget \"CMPageTitleView\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tEA8E859A87F38CEC3EBB190B /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tB5EBC97B21215A2F000403B8 /* Sources */,\n\t\t\t\tB5EBC97C21215A2F000403B8 /* Frameworks */,\n\t\t\t\tB5EBC97D21215A2F000403B8 /* Resources */,\n\t\t\t\t13425E14AC1B19271209729D /* [CP] Embed Pods Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = CMPageTitleView;\n\t\t\tproductName = CMPageTitleView;\n\t\t\tproductReference = B5EBC97F21215A2F000403B8 /* CMPageTitleView.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\tB5EBC99621215A31000403B8 /* CMPageTitleViewTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = B5EBC9AE21215A31000403B8 /* Build configuration list for PBXNativeTarget \"CMPageTitleViewTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tBCBF7D2B3B6268AC9396A532 /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tB5EBC99321215A31000403B8 /* Sources */,\n\t\t\t\tB5EBC99421215A31000403B8 /* Frameworks */,\n\t\t\t\tB5EBC99521215A31000403B8 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tB5EBC99921215A31000403B8 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = CMPageTitleViewTests;\n\t\t\tproductName = CMPageTitleViewTests;\n\t\t\tproductReference = B5EBC99721215A31000403B8 /* CMPageTitleViewTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\tB5EBC9A121215A31000403B8 /* CMPageTitleViewUITests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = B5EBC9B121215A31000403B8 /* Build configuration list for PBXNativeTarget \"CMPageTitleViewUITests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t369B8B0CC80DC0B8EB0443E6 /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tB5EBC99E21215A31000403B8 /* Sources */,\n\t\t\t\tB5EBC99F21215A31000403B8 /* Frameworks */,\n\t\t\t\tB5EBC9A021215A31000403B8 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tB5EBC9A421215A31000403B8 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = CMPageTitleViewUITests;\n\t\t\tproductName = CMPageTitleViewUITests;\n\t\t\tproductReference = B5EBC9A221215A31000403B8 /* CMPageTitleViewUITests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.ui-testing\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tB5EBC97721215A2E000403B8 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 1020;\n\t\t\t\tORGANIZATIONNAME = CrabMan;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tB5EBC97E21215A2F000403B8 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.3.1;\n\t\t\t\t\t};\n\t\t\t\t\tB5EBC99621215A31000403B8 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.3.1;\n\t\t\t\t\t\tTestTargetID = B5EBC97E21215A2F000403B8;\n\t\t\t\t\t};\n\t\t\t\t\tB5EBC9A121215A31000403B8 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.3.1;\n\t\t\t\t\t\tTestTargetID = B5EBC97E21215A2F000403B8;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = B5EBC97A21215A2E000403B8 /* Build configuration list for PBXProject \"CMPageTitleView\" */;\n\t\t\tcompatibilityVersion = \"Xcode 9.3\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = B5EBC97621215A2E000403B8;\n\t\t\tproductRefGroup = B5EBC98021215A2F000403B8 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tB5EBC97E21215A2F000403B8 /* CMPageTitleView */,\n\t\t\t\tB5EBC99621215A31000403B8 /* CMPageTitleViewTests */,\n\t\t\t\tB5EBC9A121215A31000403B8 /* CMPageTitleViewUITests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tB5EBC97D21215A2F000403B8 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tB5EBC9CE21215A72000403B8 /* Main.storyboard in Resources */,\n\t\t\t\tB5EBC9CB21215A72000403B8 /* Assets.xcassets in Resources */,\n\t\t\t\tB5EBC9CD21215A72000403B8 /* LaunchScreen.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB5EBC99521215A31000403B8 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB5EBC9A021215A31000403B8 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t13425E14AC1B19271209729D /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks-${CONFIGURATION}-input-files.xcfilelist\",\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputFileListPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks-${CONFIGURATION}-output-files.xcfilelist\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${PODS_ROOT}/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t369B8B0CC80DC0B8EB0443E6 /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\",\n\t\t\t\t\"${PODS_ROOT}/Manifest.lock\",\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-CMPageTitleViewUITests-checkManifestLockResult.txt\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"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\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tBCBF7D2B3B6268AC9396A532 /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\",\n\t\t\t\t\"${PODS_ROOT}/Manifest.lock\",\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-CMPageTitleViewTests-checkManifestLockResult.txt\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"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\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tEA8E859A87F38CEC3EBB190B /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\",\n\t\t\t\t\"${PODS_ROOT}/Manifest.lock\",\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-CMPageTitleView-checkManifestLockResult.txt\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"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\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\tB5EBC97B21215A2F000403B8 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tB5B8ACF62249CA2D00ABF82B /* UIView+CMCommon.m in Sources */,\n\t\t\t\tB53D96F7224883C50092BDE3 /* CMPageTitleConfig.m in Sources */,\n\t\t\t\tB5EBC9CF21215A72000403B8 /* main.m in Sources */,\n\t\t\t\tB5EBC9C821215A72000403B8 /* CMPageTitleContentView.m in Sources */,\n\t\t\t\tB5EBC9D021215A72000403B8 /* AppDelegate.m in Sources */,\n\t\t\t\t0401ED6B2488D66100A4129D /* CMChildTableController.m in Sources */,\n\t\t\t\tB51FABE3225DD2E7004117BD /* CMViewController.m in Sources */,\n\t\t\t\tB51FABE0225DD15C004117BD /* CMMainTableController.m in Sources */,\n\t\t\t\tB5EBC9CA21215A72000403B8 /* CMPageTitleView.m in Sources */,\n\t\t\t\tB5EBC9C921215A72000403B8 /* CMPageContentView.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB5EBC99321215A31000403B8 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB5EBC99E21215A31000403B8 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\tB5EBC99921215A31000403B8 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = B5EBC97E21215A2F000403B8 /* CMPageTitleView */;\n\t\t\ttargetProxy = B5EBC99821215A31000403B8 /* PBXContainerItemProxy */;\n\t\t};\n\t\tB5EBC9A421215A31000403B8 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = B5EBC97E21215A2F000403B8 /* CMPageTitleView */;\n\t\t\ttargetProxy = B5EBC9A321215A31000403B8 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\tB5EBC9C021215A72000403B8 /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC9C121215A72000403B8 /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tB5EBC9C221215A72000403B8 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tB5EBC9C321215A72000403B8 /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\tB5EBC9A921215A31000403B8 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 11.3;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tB5EBC9AA21215A31000403B8 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 11.3;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tB5EBC9AC21215A31000403B8 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = AA21FEDE81DFC732D1A8BAFC /* Pods-CMPageTitleView.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tDEVELOPMENT_TEAM = HBW48U6989;\n\t\t\t\tGCC_PREFIX_HEADER = \"\";\n\t\t\t\tINFOPLIST_FILE = \"$(SRCROOT)/CMPageTitleView/Other/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"-all_load\",\n\t\t\t\t\t\"-Objc\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.CMPageTitleView.crabman;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tUSER_HEADER_SEARCH_PATHS = \"$(PODS_ROOT)/**\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tB5EBC9AD21215A31000403B8 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = E71FFC097CA2E6BE0DF86E8A /* Pods-CMPageTitleView.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tDEVELOPMENT_TEAM = HBW48U6989;\n\t\t\t\tGCC_PREFIX_HEADER = \"\";\n\t\t\t\tINFOPLIST_FILE = \"$(SRCROOT)/CMPageTitleView/Other/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"-all_load\",\n\t\t\t\t\t\"-Objc\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.CMPageTitleView.crabman;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tUSER_HEADER_SEARCH_PATHS = \"$(PODS_ROOT)/**\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tB5EBC9AF21215A31000403B8 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = D3EFDB73791EB7362E8D3E81 /* Pods-CMPageTitleViewTests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tINFOPLIST_FILE = CMPageTitleViewTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = CrabMan.CMPageTitleViewTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/CMPageTitleView.app/CMPageTitleView\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tB5EBC9B021215A31000403B8 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7A7BA8CFD14D0A58CCF66114 /* Pods-CMPageTitleViewTests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tINFOPLIST_FILE = CMPageTitleViewTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = CrabMan.CMPageTitleViewTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/CMPageTitleView.app/CMPageTitleView\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tB5EBC9B221215A31000403B8 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 789334BA070C5D2F074F49C9 /* Pods-CMPageTitleViewUITests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tINFOPLIST_FILE = CMPageTitleViewUITests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = CrabMan.CMPageTitleViewUITests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tTEST_TARGET_NAME = CMPageTitleView;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tB5EBC9B321215A31000403B8 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 6FB0CEAE97F306B2DE1A62A3 /* Pods-CMPageTitleViewUITests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tINFOPLIST_FILE = CMPageTitleViewUITests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = CrabMan.CMPageTitleViewUITests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tTEST_TARGET_NAME = CMPageTitleView;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\tB5EBC97A21215A2E000403B8 /* Build configuration list for PBXProject \"CMPageTitleView\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tB5EBC9A921215A31000403B8 /* Debug */,\n\t\t\t\tB5EBC9AA21215A31000403B8 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tB5EBC9AB21215A31000403B8 /* Build configuration list for PBXNativeTarget \"CMPageTitleView\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tB5EBC9AC21215A31000403B8 /* Debug */,\n\t\t\t\tB5EBC9AD21215A31000403B8 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tB5EBC9AE21215A31000403B8 /* Build configuration list for PBXNativeTarget \"CMPageTitleViewTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tB5EBC9AF21215A31000403B8 /* Debug */,\n\t\t\t\tB5EBC9B021215A31000403B8 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tB5EBC9B121215A31000403B8 /* Build configuration list for PBXNativeTarget \"CMPageTitleViewUITests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tB5EBC9B221215A31000403B8 /* Debug */,\n\t\t\t\tB5EBC9B321215A31000403B8 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = B5EBC97721215A2E000403B8 /* Project object */;\n}\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:CMPageTitleView.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>BuildSystemType</key>\n\t<string>Original</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:CMPageTitleView.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/CMPageTitleView.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>BuildSystemType</key>\n\t<string>Original</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Podfile",
    "content": "# Uncomment the next line to define a global platform for your project\n platform :ios, '9.0'\n\ntarget 'CMPageTitleView' do\n  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks\n   use_frameworks!\n\n  # Pods for CMPageTitleView\n\n  pod 'Masonry'\n  pod 'MJRefresh'\n  \ntarget 'CMPageTitleViewTests' do\n    inherit! :search_paths\n    # Pods for testing\n\n end\n\n  target 'CMPageTitleViewUITests' do\n    inherit! :search_paths\n    # Pods for testing\n  end\n\nend\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/LICENSE",
    "content": "Copyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h",
    "content": "//\n//  MJRefreshAutoFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshAutoFooter : MJRefreshFooter\n/** 是否自动刷新(默认为YES) */\n@property (assign, nonatomic, getter=isAutomaticallyRefresh) BOOL automaticallyRefresh;\n\n/** 当底部控件出现多少时就自动刷新(默认为1.0，也就是底部控件完全出现时，才会自动刷新) */\n@property (assign, nonatomic) CGFloat appearencePercentTriggerAutoRefresh MJRefreshDeprecated(\"请使用triggerAutomaticallyRefreshPercent属性\");\n\n/** 当底部控件出现多少时就自动刷新(默认为1.0，也就是底部控件完全出现时，才会自动刷新) */\n@property (assign, nonatomic) CGFloat triggerAutomaticallyRefreshPercent;\n\n/** 自动触发次数, 默认为 1, 仅在拖拽 ScrollView 时才生效,\n \n 如果为 -1, 则为无限触发\n */\n@property (nonatomic) NSInteger autoTriggerTimes;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m",
    "content": "//\n//  MJRefreshAutoFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoFooter.h\"\n\n@interface MJRefreshAutoFooter()\n/** 一个新的拖拽 */\n@property (nonatomic) BOOL triggerByDrag;\n@property (nonatomic) NSInteger leftTriggerTimes;\n@end\n\n@implementation MJRefreshAutoFooter\n\n#pragma mark - 初始化\n- (void)willMoveToSuperview:(UIView *)newSuperview\n{\n    [super willMoveToSuperview:newSuperview];\n    \n    if (newSuperview) { // 新的父控件\n        if (self.hidden == NO) {\n            self.scrollView.mj_insetB += self.mj_h;\n        }\n        \n        // 设置位置\n        self.mj_y = _scrollView.mj_contentH;\n    } else { // 被移除了\n        if (self.hidden == NO) {\n            self.scrollView.mj_insetB -= self.mj_h;\n        }\n    }\n}\n\n#pragma mark - 过期方法\n- (void)setAppearencePercentTriggerAutoRefresh:(CGFloat)appearencePercentTriggerAutoRefresh\n{\n    self.triggerAutomaticallyRefreshPercent = appearencePercentTriggerAutoRefresh;\n}\n\n- (CGFloat)appearencePercentTriggerAutoRefresh\n{\n    return self.triggerAutomaticallyRefreshPercent;\n}\n\n#pragma mark - 实现父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 默认底部控件100%出现时才会自动刷新\n    self.triggerAutomaticallyRefreshPercent = 1.0;\n    \n    // 设置为默认状态\n    self.automaticallyRefresh = YES;\n    \n    self.autoTriggerTimes = 1;\n}\n\n- (void)scrollViewContentSizeDidChange:(NSDictionary *)change\n{\n    [super scrollViewContentSizeDidChange:change];\n    \n    // 设置位置\n    self.mj_y = self.scrollView.mj_contentH + self.ignoredScrollViewContentInsetBottom;\n}\n\n- (void)scrollViewContentOffsetDidChange:(NSDictionary *)change\n{\n    [super scrollViewContentOffsetDidChange:change];\n    \n    if (self.state != MJRefreshStateIdle || !self.automaticallyRefresh || self.mj_y == 0) return;\n    \n    if (_scrollView.mj_insetT + _scrollView.mj_contentH > _scrollView.mj_h) { // 内容超过一个屏幕\n        // 这里的_scrollView.mj_contentH替换掉self.mj_y更为合理\n        if (_scrollView.mj_offsetY >= _scrollView.mj_contentH - _scrollView.mj_h + self.mj_h * self.triggerAutomaticallyRefreshPercent + _scrollView.mj_insetB - self.mj_h) {\n            // 防止手松开时连续调用\n            CGPoint old = [change[@\"old\"] CGPointValue];\n            CGPoint new = [change[@\"new\"] CGPointValue];\n            if (new.y <= old.y) return;\n            \n            if (_scrollView.isDragging) {\n                self.triggerByDrag = YES;\n            }\n            // 当底部刷新控件完全出现时，才刷新\n            [self beginRefreshing];\n        }\n    }\n}\n\n- (void)scrollViewPanStateDidChange:(NSDictionary *)change\n{\n    [super scrollViewPanStateDidChange:change];\n    \n    if (self.state != MJRefreshStateIdle) return;\n    \n    UIGestureRecognizerState panState = _scrollView.panGestureRecognizer.state;\n    \n    switch (panState) {\n        // 手松开\n        case UIGestureRecognizerStateEnded: {\n            if (_scrollView.mj_insetT + _scrollView.mj_contentH <= _scrollView.mj_h) {  // 不够一个屏幕\n                if (_scrollView.mj_offsetY >= - _scrollView.mj_insetT) { // 向上拽\n                    self.triggerByDrag = YES;\n                    [self beginRefreshing];\n                }\n            } else { // 超出一个屏幕\n                if (_scrollView.mj_offsetY >= _scrollView.mj_contentH + _scrollView.mj_insetB - _scrollView.mj_h) {\n                    self.triggerByDrag = YES;\n                    [self beginRefreshing];\n                }\n            }\n        }\n            break;\n            \n        case UIGestureRecognizerStateBegan: {\n            [self resetTriggerTimes];\n        }\n            break;\n            \n        default:\n            break;\n    }\n}\n\n- (BOOL)unlimitedTrigger {\n    return self.leftTriggerTimes == -1;\n}\n\n- (void)beginRefreshing\n{\n    if (self.triggerByDrag && self.leftTriggerTimes <= 0 && !self.unlimitedTrigger) {\n        return;\n    }\n    \n    [super beginRefreshing];\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    if (state == MJRefreshStateRefreshing) {\n        [self executeRefreshingCallback];\n    } else if (state == MJRefreshStateNoMoreData || state == MJRefreshStateIdle) {\n        if (self.triggerByDrag) {\n            if (!self.unlimitedTrigger) {\n                self.leftTriggerTimes -= 1;\n            }\n            self.triggerByDrag = NO;\n        }\n        \n        if (MJRefreshStateRefreshing == oldState) {\n            if (self.scrollView.pagingEnabled) {\n                CGPoint offset = self.scrollView.contentOffset;\n                offset.y -= self.scrollView.mj_insetB;\n                [UIView animateWithDuration:MJRefreshSlowAnimationDuration animations:^{\n                    self.scrollView.contentOffset = offset;\n                    \n                    if (self.endRefreshingAnimationBeginAction) {\n                        self.endRefreshingAnimationBeginAction();\n                    }\n                } completion:^(BOOL finished) {\n                    if (self.endRefreshingCompletionBlock) {\n                        self.endRefreshingCompletionBlock();\n                    }\n                }];\n                return;\n            }\n            \n            if (self.endRefreshingCompletionBlock) {\n                self.endRefreshingCompletionBlock();\n            }\n        }\n    }\n}\n\n- (void)resetTriggerTimes {\n    self.leftTriggerTimes = self.autoTriggerTimes;\n}\n\n- (void)setHidden:(BOOL)hidden\n{\n    BOOL lastHidden = self.isHidden;\n    \n    [super setHidden:hidden];\n    \n    if (!lastHidden && hidden) {\n        self.state = MJRefreshStateIdle;\n        \n        self.scrollView.mj_insetB -= self.mj_h;\n    } else if (lastHidden && !hidden) {\n        self.scrollView.mj_insetB += self.mj_h;\n        \n        // 设置位置\n        self.mj_y = _scrollView.mj_contentH;\n    }\n}\n\n- (void)setAutoTriggerTimes:(NSInteger)autoTriggerTimes {\n    _autoTriggerTimes = autoTriggerTimes;\n    self.leftTriggerTimes = autoTriggerTimes;\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h",
    "content": "//\n//  MJRefreshBackFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshBackFooter : MJRefreshFooter\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m",
    "content": "//\n//  MJRefreshBackFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackFooter.h\"\n\n@interface MJRefreshBackFooter()\n@property (assign, nonatomic) NSInteger lastRefreshCount;\n@property (assign, nonatomic) CGFloat lastBottomDelta;\n@end\n\n@implementation MJRefreshBackFooter\n\n#pragma mark - 初始化\n- (void)willMoveToSuperview:(UIView *)newSuperview\n{\n    [super willMoveToSuperview:newSuperview];\n    \n    [self scrollViewContentSizeDidChange:nil];\n}\n\n#pragma mark - 实现父类的方法\n- (void)scrollViewContentOffsetDidChange:(NSDictionary *)change\n{\n    [super scrollViewContentOffsetDidChange:change];\n    \n    // 如果正在刷新，直接返回\n    if (self.state == MJRefreshStateRefreshing) return;\n    \n    _scrollViewOriginalInset = self.scrollView.mj_inset;\n    \n    // 当前的contentOffset\n    CGFloat currentOffsetY = self.scrollView.mj_offsetY;\n    // 尾部控件刚好出现的offsetY\n    CGFloat happenOffsetY = [self happenOffsetY];\n    // 如果是向下滚动到看不见尾部控件，直接返回\n    if (currentOffsetY <= happenOffsetY) return;\n    \n    CGFloat pullingPercent = (currentOffsetY - happenOffsetY) / self.mj_h;\n    \n    // 如果已全部加载，仅设置pullingPercent，然后返回\n    if (self.state == MJRefreshStateNoMoreData) {\n        self.pullingPercent = pullingPercent;\n        return;\n    }\n    \n    if (self.scrollView.isDragging) {\n        self.pullingPercent = pullingPercent;\n        // 普通 和 即将刷新 的临界点\n        CGFloat normal2pullingOffsetY = happenOffsetY + self.mj_h;\n        \n        if (self.state == MJRefreshStateIdle && currentOffsetY > normal2pullingOffsetY) {\n            // 转为即将刷新状态\n            self.state = MJRefreshStatePulling;\n        } else if (self.state == MJRefreshStatePulling && currentOffsetY <= normal2pullingOffsetY) {\n            // 转为普通状态\n            self.state = MJRefreshStateIdle;\n        }\n    } else if (self.state == MJRefreshStatePulling) {// 即将刷新 && 手松开\n        // 开始刷新\n        [self beginRefreshing];\n    } else if (pullingPercent < 1) {\n        self.pullingPercent = pullingPercent;\n    }\n}\n\n- (void)scrollViewContentSizeDidChange:(NSDictionary *)change\n{\n    [super scrollViewContentSizeDidChange:change];\n    \n    // 内容的高度\n    CGFloat contentHeight = self.scrollView.mj_contentH + self.ignoredScrollViewContentInsetBottom;\n    // 表格的高度\n    CGFloat scrollHeight = self.scrollView.mj_h - self.scrollViewOriginalInset.top - self.scrollViewOriginalInset.bottom + self.ignoredScrollViewContentInsetBottom;\n    // 设置位置和尺寸\n    self.mj_y = MAX(contentHeight, scrollHeight);\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态来设置属性\n    if (state == MJRefreshStateNoMoreData || state == MJRefreshStateIdle) {\n        // 刷新完毕\n        if (MJRefreshStateRefreshing == oldState) {\n            [UIView animateWithDuration:MJRefreshSlowAnimationDuration animations:^{\n                if (self.endRefreshingAnimationBeginAction) {\n                    self.endRefreshingAnimationBeginAction();\n                }\n                \n                self.scrollView.mj_insetB -= self.lastBottomDelta;\n                // 自动调整透明度\n                if (self.isAutomaticallyChangeAlpha) self.alpha = 0.0;\n            } completion:^(BOOL finished) {\n                self.pullingPercent = 0.0;\n                \n                if (self.endRefreshingCompletionBlock) {\n                    self.endRefreshingCompletionBlock();\n                }\n            }];\n        }\n        \n        CGFloat deltaH = [self heightForContentBreakView];\n        // 刚刷新完毕\n        if (MJRefreshStateRefreshing == oldState && deltaH > 0 && self.scrollView.mj_totalDataCount != self.lastRefreshCount) {\n            self.scrollView.mj_offsetY = self.scrollView.mj_offsetY;\n        }\n    } else if (state == MJRefreshStateRefreshing) {\n        // 记录刷新前的数量\n        self.lastRefreshCount = self.scrollView.mj_totalDataCount;\n        \n        [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n            CGFloat bottom = self.mj_h + self.scrollViewOriginalInset.bottom;\n            CGFloat deltaH = [self heightForContentBreakView];\n            if (deltaH < 0) { // 如果内容高度小于view的高度\n                bottom -= deltaH;\n            }\n            self.lastBottomDelta = bottom - self.scrollView.mj_insetB;\n            self.scrollView.mj_insetB = bottom;\n            self.scrollView.mj_offsetY = [self happenOffsetY] + self.mj_h;\n        } completion:^(BOOL finished) {\n            [self executeRefreshingCallback];\n        }];\n    }\n}\n#pragma mark - 私有方法\n#pragma mark 获得scrollView的内容 超出 view 的高度\n- (CGFloat)heightForContentBreakView\n{\n    CGFloat h = self.scrollView.frame.size.height - self.scrollViewOriginalInset.bottom - self.scrollViewOriginalInset.top;\n    return self.scrollView.contentSize.height - h;\n}\n\n#pragma mark 刚好看到上拉刷新控件时的contentOffset.y\n- (CGFloat)happenOffsetY\n{\n    CGFloat deltaH = [self heightForContentBreakView];\n    if (deltaH > 0) {\n        return deltaH - self.scrollViewOriginalInset.top;\n    } else {\n        return - self.scrollViewOriginalInset.top;\n    }\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  MJRefreshComponent.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/4.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//  刷新控件的基类\n\n#import <UIKit/UIKit.h>\n#import \"MJRefreshConst.h\"\n#import \"UIView+MJExtension.h\"\n#import \"UIScrollView+MJExtension.h\"\n#import \"UIScrollView+MJRefresh.h\"\n#import \"NSBundle+MJRefresh.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n/** 刷新控件的状态 */\ntypedef NS_ENUM(NSInteger, MJRefreshState) {\n    /** 普通闲置状态 */\n    MJRefreshStateIdle = 1,\n    /** 松开就可以进行刷新的状态 */\n    MJRefreshStatePulling,\n    /** 正在刷新中的状态 */\n    MJRefreshStateRefreshing,\n    /** 即将刷新的状态 */\n    MJRefreshStateWillRefresh,\n    /** 所有数据加载完毕，没有更多的数据了 */\n    MJRefreshStateNoMoreData\n};\n\n/** 进入刷新状态的回调 */\ntypedef void (^MJRefreshComponentRefreshingBlock)(void) MJRefreshDeprecated(\"first deprecated in 3.3.0 - Use `MJRefreshComponentAction` instead\");\n/** 开始刷新后的回调(进入刷新状态后的回调) */\ntypedef void (^MJRefreshComponentBeginRefreshingCompletionBlock)(void) MJRefreshDeprecated(\"first deprecated in 3.3.0 - Use `MJRefreshComponentAction` instead\");\n/** 结束刷新后的回调 */\ntypedef void (^MJRefreshComponentEndRefreshingCompletionBlock)(void) MJRefreshDeprecated(\"first deprecated in 3.3.0 - Use `MJRefreshComponentAction` instead\");\n\n/** 刷新用到的回调类型 */\ntypedef void (^MJRefreshComponentAction)(void);\n\n/** 刷新控件的基类 */\n@interface MJRefreshComponent : UIView\n{\n    /** 记录scrollView刚开始的inset */\n    UIEdgeInsets _scrollViewOriginalInset;\n    /** 父控件 */\n    __weak UIScrollView *_scrollView;\n}\n#pragma mark - 刷新回调\n/** 正在刷新的回调 */\n@property (copy, nonatomic, nullable) MJRefreshComponentAction refreshingBlock;\n/** 设置回调对象和回调方法 */\n- (void)setRefreshingTarget:(id)target refreshingAction:(SEL)action;\n\n/** 回调对象 */\n@property (weak, nonatomic) id refreshingTarget;\n/** 回调方法 */\n@property (assign, nonatomic) SEL refreshingAction;\n/** 触发回调（交给子类去调用） */\n- (void)executeRefreshingCallback;\n\n#pragma mark - 刷新状态控制\n/** 进入刷新状态 */\n- (void)beginRefreshing;\n- (void)beginRefreshingWithCompletionBlock:(void (^)(void))completionBlock;\n/** 开始刷新后的回调(进入刷新状态后的回调) */\n@property (copy, nonatomic, nullable) MJRefreshComponentAction beginRefreshingCompletionBlock;\n/** 带动画的结束刷新的回调 */\n@property (copy, nonatomic, nullable) MJRefreshComponentAction endRefreshingAnimateCompletionBlock MJRefreshDeprecated(\"first deprecated in 3.3.0 - Use `endRefreshingAnimationBeginAction` instead\");\n@property (copy, nonatomic, nullable) MJRefreshComponentAction endRefreshingAnimationBeginAction;\n/** 结束刷新的回调 */\n@property (copy, nonatomic, nullable) MJRefreshComponentAction endRefreshingCompletionBlock;\n/** 结束刷新状态 */\n- (void)endRefreshing;\n- (void)endRefreshingWithCompletionBlock:(void (^)(void))completionBlock;\n/** 是否正在刷新 */\n@property (assign, nonatomic, readonly, getter=isRefreshing) BOOL refreshing;\n\n/** 刷新状态 一般交给子类内部实现 */\n@property (assign, nonatomic) MJRefreshState state;\n\n#pragma mark - 交给子类去访问\n/** 记录scrollView刚开始的inset */\n@property (assign, nonatomic, readonly) UIEdgeInsets scrollViewOriginalInset;\n/** 父控件 */\n@property (weak, nonatomic, readonly) UIScrollView *scrollView;\n\n#pragma mark - 交给子类们去实现\n/** 初始化 */\n- (void)prepare NS_REQUIRES_SUPER;\n/** 摆放子控件frame */\n- (void)placeSubviews NS_REQUIRES_SUPER;\n/** 当scrollView的contentOffset发生改变的时候调用 */\n- (void)scrollViewContentOffsetDidChange:(nullable NSDictionary *)change NS_REQUIRES_SUPER;\n/** 当scrollView的contentSize发生改变的时候调用 */\n- (void)scrollViewContentSizeDidChange:(nullable NSDictionary *)change NS_REQUIRES_SUPER;\n/** 当scrollView的拖拽状态发生改变的时候调用 */\n- (void)scrollViewPanStateDidChange:(nullable NSDictionary *)change NS_REQUIRES_SUPER;\n\n\n#pragma mark - 其他\n/** 拉拽的百分比(交给子类重写) */\n@property (assign, nonatomic) CGFloat pullingPercent;\n/** 根据拖拽比例自动切换透明度 */\n@property (assign, nonatomic, getter=isAutoChangeAlpha) BOOL autoChangeAlpha MJRefreshDeprecated(\"请使用automaticallyChangeAlpha属性\");\n/** 根据拖拽比例自动切换透明度 */\n@property (assign, nonatomic, getter=isAutomaticallyChangeAlpha) BOOL automaticallyChangeAlpha;\n@end\n\n@interface UILabel(MJRefresh)\n+ (instancetype)mj_label;\n- (CGFloat)mj_textWidth;\n@end\n\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  MJRefreshComponent.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/4.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshComponent.h\"\n#import \"MJRefreshConst.h\"\n\n@interface MJRefreshComponent()\n@property (strong, nonatomic) UIPanGestureRecognizer *pan;\n@end\n\n@implementation MJRefreshComponent\n#pragma mark - 初始化\n- (instancetype)initWithFrame:(CGRect)frame\n{\n    if (self = [super initWithFrame:frame]) {\n        // 准备工作\n        [self prepare];\n        \n        // 默认是普通状态\n        self.state = MJRefreshStateIdle;\n    }\n    return self;\n}\n\n- (void)prepare\n{\n    // 基本属性\n    self.autoresizingMask = UIViewAutoresizingFlexibleWidth;\n    self.backgroundColor = [UIColor clearColor];\n}\n\n- (void)layoutSubviews\n{\n    [self placeSubviews];\n    \n    [super layoutSubviews];\n}\n\n- (void)placeSubviews{}\n\n- (void)willMoveToSuperview:(UIView *)newSuperview\n{\n    [super willMoveToSuperview:newSuperview];\n    \n    // 如果不是UIScrollView，不做任何事情\n    if (newSuperview && ![newSuperview isKindOfClass:[UIScrollView class]]) return;\n    \n    // 旧的父控件移除监听\n    [self removeObservers];\n    \n    if (newSuperview) { // 新的父控件\n        // 记录UIScrollView\n        _scrollView = (UIScrollView *)newSuperview;\n        \n        // 设置宽度\n        self.mj_w = _scrollView.mj_w;\n        // 设置位置\n        self.mj_x = -_scrollView.mj_insetL;\n    \n        // 设置永远支持垂直弹簧效果\n        _scrollView.alwaysBounceVertical = YES;\n        // 记录UIScrollView最开始的contentInset\n        _scrollViewOriginalInset = _scrollView.mj_inset;\n        \n        // 添加监听\n        [self addObservers];\n    }\n}\n\n- (void)drawRect:(CGRect)rect\n{\n    [super drawRect:rect];\n    \n    if (self.state == MJRefreshStateWillRefresh) {\n        // 预防view还没显示出来就调用了beginRefreshing\n        self.state = MJRefreshStateRefreshing;\n    }\n}\n\n#pragma mark - KVO监听\n- (void)addObservers\n{\n    NSKeyValueObservingOptions options = NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld;\n    [self.scrollView addObserver:self forKeyPath:MJRefreshKeyPathContentOffset options:options context:nil];\n    [self.scrollView addObserver:self forKeyPath:MJRefreshKeyPathContentSize options:options context:nil];\n    self.pan = self.scrollView.panGestureRecognizer;\n    [self.pan addObserver:self forKeyPath:MJRefreshKeyPathPanState options:options context:nil];\n}\n\n- (void)removeObservers\n{\n    [self.superview removeObserver:self forKeyPath:MJRefreshKeyPathContentOffset];\n    [self.superview removeObserver:self forKeyPath:MJRefreshKeyPathContentSize];\n    [self.pan removeObserver:self forKeyPath:MJRefreshKeyPathPanState];\n    self.pan = nil;\n}\n\n- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context\n{\n    // 遇到这些情况就直接返回\n    if (!self.userInteractionEnabled) return;\n    \n    // 这个就算看不见也需要处理\n    if ([keyPath isEqualToString:MJRefreshKeyPathContentSize]) {\n        [self scrollViewContentSizeDidChange:change];\n    }\n    \n    // 看不见\n    if (self.hidden) return;\n    if ([keyPath isEqualToString:MJRefreshKeyPathContentOffset]) {\n        [self scrollViewContentOffsetDidChange:change];\n    } else if ([keyPath isEqualToString:MJRefreshKeyPathPanState]) {\n        [self scrollViewPanStateDidChange:change];\n    }\n}\n\n- (void)scrollViewContentOffsetDidChange:(NSDictionary *)change{}\n- (void)scrollViewContentSizeDidChange:(NSDictionary *)change{}\n- (void)scrollViewPanStateDidChange:(NSDictionary *)change{}\n\n#pragma mark - 公共方法\n#pragma mark 设置回调对象和回调方法\n- (void)setRefreshingTarget:(id)target refreshingAction:(SEL)action\n{\n    self.refreshingTarget = target;\n    self.refreshingAction = action;\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    _state = state;\n    \n    // 加入主队列的目的是等setState:方法调用完毕、设置完文字后再去布局子控件\n    MJRefreshDispatchAsyncOnMainQueue([self setNeedsLayout];)\n}\n\n#pragma mark 进入刷新状态\n- (void)beginRefreshing\n{\n    [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n        self.alpha = 1.0;\n    }];\n    self.pullingPercent = 1.0;\n    // 只要正在刷新，就完全显示\n    if (self.window) {\n        self.state = MJRefreshStateRefreshing;\n    } else {\n        // 预防正在刷新中时，调用本方法使得header inset回置失败\n        if (self.state != MJRefreshStateRefreshing) {\n            self.state = MJRefreshStateWillRefresh;\n            // 刷新(预防从另一个控制器回到这个控制器的情况，回来要重新刷新一下)\n            [self setNeedsDisplay];\n        }\n    }\n}\n\n- (void)beginRefreshingWithCompletionBlock:(void (^)(void))completionBlock\n{\n    self.beginRefreshingCompletionBlock = completionBlock;\n    \n    [self beginRefreshing];\n}\n\n#pragma mark 结束刷新状态\n- (void)endRefreshing\n{\n    MJRefreshDispatchAsyncOnMainQueue(self.state = MJRefreshStateIdle;)\n}\n\n- (void)endRefreshingWithCompletionBlock:(void (^)(void))completionBlock\n{\n    self.endRefreshingCompletionBlock = completionBlock;\n    \n    [self endRefreshing];\n}\n\n#pragma mark 是否正在刷新\n- (BOOL)isRefreshing\n{\n    return self.state == MJRefreshStateRefreshing || self.state == MJRefreshStateWillRefresh;\n}\n\n#pragma mark 自动切换透明度\n- (void)setAutoChangeAlpha:(BOOL)autoChangeAlpha\n{\n    self.automaticallyChangeAlpha = autoChangeAlpha;\n}\n\n- (BOOL)isAutoChangeAlpha\n{\n    return self.isAutomaticallyChangeAlpha;\n}\n\n- (void)setAutomaticallyChangeAlpha:(BOOL)automaticallyChangeAlpha\n{\n    _automaticallyChangeAlpha = automaticallyChangeAlpha;\n    \n    if (self.isRefreshing) return;\n    \n    if (automaticallyChangeAlpha) {\n        self.alpha = self.pullingPercent;\n    } else {\n        self.alpha = 1.0;\n    }\n}\n\n#pragma mark 根据拖拽进度设置透明度\n- (void)setPullingPercent:(CGFloat)pullingPercent\n{\n    _pullingPercent = pullingPercent;\n    \n    if (self.isRefreshing) return;\n    \n    if (self.isAutomaticallyChangeAlpha) {\n        self.alpha = pullingPercent;\n    }\n}\n\n#pragma mark - 内部方法\n- (void)executeRefreshingCallback\n{\n    MJRefreshDispatchAsyncOnMainQueue({\n        if (self.refreshingBlock) {\n            self.refreshingBlock();\n        }\n        if ([self.refreshingTarget respondsToSelector:self.refreshingAction]) {\n            MJRefreshMsgSend(MJRefreshMsgTarget(self.refreshingTarget), self.refreshingAction, self);\n        }\n        if (self.beginRefreshingCompletionBlock) {\n            self.beginRefreshingCompletionBlock();\n        }\n    })\n}\n\n#pragma mark - <<< Deprecation compatible function >>> -\n- (void)setEndRefreshingAnimateCompletionBlock:(MJRefreshComponentEndRefreshingCompletionBlock)endRefreshingAnimateCompletionBlock {\n    _endRefreshingAnimationBeginAction = endRefreshingAnimateCompletionBlock;\n}\n@end\n\n@implementation UILabel(MJRefresh)\n+ (instancetype)mj_label\n{\n    UILabel *label = [[self alloc] init];\n    label.font = MJRefreshLabelFont;\n    label.textColor = MJRefreshLabelTextColor;\n    label.autoresizingMask = UIViewAutoresizingFlexibleWidth;\n    label.textAlignment = NSTextAlignmentCenter;\n    label.backgroundColor = [UIColor clearColor];\n    return label;\n}\n\n- (CGFloat)mj_textWidth {\n    CGFloat stringWidth = 0;\n    CGSize size = CGSizeMake(MAXFLOAT, MAXFLOAT);\n    \n    if (self.attributedText) {\n        if (self.attributedText.length == 0) { return 0; }\n        stringWidth = [self.attributedText boundingRectWithSize:size\n                                                        options:NSStringDrawingUsesLineFragmentOrigin\n                                                        context:nil].size.width;\n    } else {\n        if (self.text.length == 0) { return 0; }\n        NSAssert(self.font != nil, @\"请检查 mj_label's `font` 是否设置正确\");\n        stringWidth = [self.text boundingRectWithSize:size\n                                              options:NSStringDrawingUsesLineFragmentOrigin\n                                           attributes:@{NSFontAttributeName:self.font}\n                                              context:nil].size.width;\n    }\n    return stringWidth;\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  MJRefreshFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/5.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//  上拉刷新控件\n\n#import \"MJRefreshComponent.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshFooter : MJRefreshComponent\n/** 创建footer */\n+ (instancetype)footerWithRefreshingBlock:(MJRefreshComponentAction)refreshingBlock;\n/** 创建footer */\n+ (instancetype)footerWithRefreshingTarget:(id)target refreshingAction:(SEL)action;\n\n/** 提示没有更多的数据 */\n- (void)endRefreshingWithNoMoreData;\n- (void)noticeNoMoreData MJRefreshDeprecated(\"使用endRefreshingWithNoMoreData\");\n\n/** 重置没有更多的数据（消除没有更多数据的状态） */\n- (void)resetNoMoreData;\n\n/** 忽略多少scrollView的contentInset的bottom */\n@property (assign, nonatomic) CGFloat ignoredScrollViewContentInsetBottom;\n\n/** 自动根据有无数据来显示和隐藏（有数据就显示，没有数据隐藏。默认是NO） */\n@property (assign, nonatomic, getter=isAutomaticallyHidden) BOOL automaticallyHidden MJRefreshDeprecated(\"已废弃此属性，开发者请自行控制footer的显示和隐藏\");\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  MJRefreshFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/5.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshFooter.h\"\n#include \"UIScrollView+MJRefresh.h\"\n\n@interface MJRefreshFooter()\n\n@end\n\n@implementation MJRefreshFooter\n#pragma mark - 构造方法\n+ (instancetype)footerWithRefreshingBlock:(MJRefreshComponentAction)refreshingBlock\n{\n    MJRefreshFooter *cmp = [[self alloc] init];\n    cmp.refreshingBlock = refreshingBlock;\n    return cmp;\n}\n+ (instancetype)footerWithRefreshingTarget:(id)target refreshingAction:(SEL)action\n{\n    MJRefreshFooter *cmp = [[self alloc] init];\n    [cmp setRefreshingTarget:target refreshingAction:action];\n    return cmp;\n}\n\n#pragma mark - 重写父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 设置自己的高度\n    self.mj_h = MJRefreshFooterHeight;\n    \n    // 默认不会自动隐藏\n//    self.automaticallyHidden = NO;\n}\n\n#pragma mark - 公共方法\n- (void)endRefreshingWithNoMoreData\n{\n    MJRefreshDispatchAsyncOnMainQueue(self.state = MJRefreshStateNoMoreData;)\n}\n\n- (void)noticeNoMoreData\n{\n    [self endRefreshingWithNoMoreData];\n}\n\n- (void)resetNoMoreData\n{\n    MJRefreshDispatchAsyncOnMainQueue(self.state = MJRefreshStateIdle;)\n}\n\n- (void)setAutomaticallyHidden:(BOOL)automaticallyHidden\n{\n    _automaticallyHidden = automaticallyHidden;\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  MJRefreshHeader.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/4.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//  下拉刷新控件:负责监控用户下拉的状态\n\n#import \"MJRefreshComponent.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshHeader : MJRefreshComponent\n/** 创建header */\n+ (instancetype)headerWithRefreshingBlock:(MJRefreshComponentAction)refreshingBlock;\n/** 创建header */\n+ (instancetype)headerWithRefreshingTarget:(id)target refreshingAction:(SEL)action;\n\n/** 这个key用来存储上一次下拉刷新成功的时间 */\n@property (copy, nonatomic) NSString *lastUpdatedTimeKey;\n/** 上一次下拉刷新成功的时间 */\n@property (strong, nonatomic, readonly, nullable) NSDate *lastUpdatedTime;\n\n/** 忽略多少scrollView的contentInset的top */\n@property (assign, nonatomic) CGFloat ignoredScrollViewContentInsetTop;\n\n/** 默认是关闭状态, 如果遇到 CollectionView 的动画异常问题可以尝试打开 */\n@property (nonatomic) BOOL isCollectionViewAnimationBug;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  MJRefreshHeader.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/4.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshHeader.h\"\n\nNSString * const MJRefreshHeaderRefreshing2IdleBoundsKey = @\"MJRefreshHeaderRefreshing2IdleBounds\";\nNSString * const MJRefreshHeaderRefreshingBoundsKey = @\"MJRefreshHeaderRefreshingBounds\";\n\n@interface MJRefreshHeader() <CAAnimationDelegate>\n@property (assign, nonatomic) CGFloat insetTDelta;\n@end\n\n@implementation MJRefreshHeader\n#pragma mark - 构造方法\n+ (instancetype)headerWithRefreshingBlock:(MJRefreshComponentAction)refreshingBlock\n{\n    MJRefreshHeader *cmp = [[self alloc] init];\n    cmp.refreshingBlock = refreshingBlock;\n    return cmp;\n}\n+ (instancetype)headerWithRefreshingTarget:(id)target refreshingAction:(SEL)action\n{\n    MJRefreshHeader *cmp = [[self alloc] init];\n    [cmp setRefreshingTarget:target refreshingAction:action];\n    return cmp;\n}\n\n#pragma mark - 覆盖父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 设置key\n    self.lastUpdatedTimeKey = MJRefreshHeaderLastUpdatedTimeKey;\n    \n    // 设置高度\n    self.mj_h = MJRefreshHeaderHeight;\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    // 设置y值(当自己的高度发生改变了，肯定要重新调整Y值，所以放到placeSubviews方法中设置y值)\n    self.mj_y = - self.mj_h - self.ignoredScrollViewContentInsetTop;\n}\n\n- (void)resetInset {\n    if (@available(iOS 11.0, *)) {\n    } else {\n        // 如果 iOS 10 及以下系统在刷新时, push 新的 VC, 等待刷新完成后回来, 会导致顶部 Insets.top 异常, 不能 resetInset, 检查一下这种特殊情况\n        if (!self.window) { return; }\n    }\n    \n    // sectionheader停留解决\n    CGFloat insetT = - self.scrollView.mj_offsetY > _scrollViewOriginalInset.top ? - self.scrollView.mj_offsetY : _scrollViewOriginalInset.top;\n    insetT = insetT > self.mj_h + _scrollViewOriginalInset.top ? self.mj_h + _scrollViewOriginalInset.top : insetT;\n    self.insetTDelta = _scrollViewOriginalInset.top - insetT;\n    // 避免 CollectionView 在使用根据 Autolayout 和 内容自动伸缩 Cell, 刷新时导致的 Layout 异常渲染问题\n    if (self.scrollView.mj_insetT != insetT) {\n        self.scrollView.mj_insetT = insetT;\n    }\n}\n\n- (void)scrollViewContentOffsetDidChange:(NSDictionary *)change\n{\n    [super scrollViewContentOffsetDidChange:change];\n    \n    // 在刷新的refreshing状态\n    if (self.state == MJRefreshStateRefreshing) {\n        [self resetInset];\n        return;\n    }\n    \n    // 跳转到下一个控制器时，contentInset可能会变\n    _scrollViewOriginalInset = self.scrollView.mj_inset;\n    \n    // 当前的contentOffset\n    CGFloat offsetY = self.scrollView.mj_offsetY;\n    // 头部控件刚好出现的offsetY\n    CGFloat happenOffsetY = - self.scrollViewOriginalInset.top;\n    \n    // 如果是向上滚动到看不见头部控件，直接返回\n    // >= -> >\n    if (offsetY > happenOffsetY) return;\n    \n    // 普通 和 即将刷新 的临界点\n    CGFloat normal2pullingOffsetY = happenOffsetY - self.mj_h;\n    CGFloat pullingPercent = (happenOffsetY - offsetY) / self.mj_h;\n    \n    if (self.scrollView.isDragging) { // 如果正在拖拽\n        self.pullingPercent = pullingPercent;\n        if (self.state == MJRefreshStateIdle && offsetY < normal2pullingOffsetY) {\n            // 转为即将刷新状态\n            self.state = MJRefreshStatePulling;\n        } else if (self.state == MJRefreshStatePulling && offsetY >= normal2pullingOffsetY) {\n            // 转为普通状态\n            self.state = MJRefreshStateIdle;\n        }\n    } else if (self.state == MJRefreshStatePulling) {// 即将刷新 && 手松开\n        // 开始刷新\n        [self beginRefreshing];\n    } else if (pullingPercent < 1) {\n        self.pullingPercent = pullingPercent;\n    }\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStateIdle) {\n        if (oldState != MJRefreshStateRefreshing) return;\n        \n        [self headerEndingAction];\n    } else if (state == MJRefreshStateRefreshing) {\n        [self headerRefreshingAction];\n    }\n}\n\n- (void)headerEndingAction {\n    // 保存刷新时间\n    [[NSUserDefaults standardUserDefaults] setObject:[NSDate date] forKey:self.lastUpdatedTimeKey];\n    [[NSUserDefaults standardUserDefaults] synchronize];\n    \n    // 默认使用 UIViewAnimation 动画\n    if (!self.isCollectionViewAnimationBug) {\n        // 恢复inset和offset\n        [UIView animateWithDuration:MJRefreshSlowAnimationDuration animations:^{\n            self.scrollView.mj_insetT += self.insetTDelta;\n            \n            if (self.endRefreshingAnimationBeginAction) {\n                self.endRefreshingAnimationBeginAction();\n            }\n            // 自动调整透明度\n            if (self.isAutomaticallyChangeAlpha) self.alpha = 0.0;\n        } completion:^(BOOL finished) {\n            self.pullingPercent = 0.0;\n            \n            if (self.endRefreshingCompletionBlock) {\n                self.endRefreshingCompletionBlock();\n            }\n        }];\n        \n        return;\n    }\n    \n    /**\n     这个解决方法的思路出自 https://github.com/CoderMJLee/MJRefresh/pull/844\n     修改了用+ [UIView animateWithDuration: animations:]实现的修改contentInset的动画\n     fix issue#225 https://github.com/CoderMJLee/MJRefresh/issues/225\n     另一种解法 pull#737 https://github.com/CoderMJLee/MJRefresh/pull/737\n     \n     同时, 处理了 Refreshing 中的动画替换.\n    */\n    \n    // 由于修改 Inset 会导致 self.pullingPercent 联动设置 self.alpha, 故提前获取 alpha 值, 后续用于还原 alpha 动画\n    CGFloat viewAlpha = self.alpha;\n    \n    self.scrollView.mj_insetT += self.insetTDelta;\n    // 禁用交互, 如果不禁用可能会引起渲染问题.\n    self.scrollView.userInteractionEnabled = NO;\n\n    //CAAnimation keyPath 不支持 contentInset 用Bounds的动画代替\n    CABasicAnimation *boundsAnimation = [CABasicAnimation animationWithKeyPath:@\"bounds\"];\n    boundsAnimation.fromValue = [NSValue valueWithCGRect:CGRectOffset(self.scrollView.bounds, 0, self.insetTDelta)];\n    boundsAnimation.duration = MJRefreshSlowAnimationDuration;\n    //在delegate里移除\n    boundsAnimation.removedOnCompletion = NO;\n    boundsAnimation.fillMode = kCAFillModeBoth;\n    boundsAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];\n    boundsAnimation.delegate = self;\n    [boundsAnimation setValue:MJRefreshHeaderRefreshing2IdleBoundsKey forKey:@\"identity\"];\n\n    [self.scrollView.layer addAnimation:boundsAnimation forKey:MJRefreshHeaderRefreshing2IdleBoundsKey];\n    \n    if (self.endRefreshingAnimationBeginAction) {\n        self.endRefreshingAnimationBeginAction();\n    }\n    // 自动调整透明度的动画\n    if (self.isAutomaticallyChangeAlpha) {\n        CABasicAnimation *opacityAnimation = [CABasicAnimation animationWithKeyPath:@\"opacity\"];\n        opacityAnimation.fromValue = @(viewAlpha);\n        opacityAnimation.toValue = @(0.0);\n        opacityAnimation.duration = MJRefreshSlowAnimationDuration;\n        opacityAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];\n        [self.layer addAnimation:opacityAnimation forKey:@\"MJRefreshHeaderRefreshing2IdleOpacity\"];\n\n        // 由于修改了 inset 导致, pullingPercent 被设置值, alpha 已经被提前修改为 0 了. 所以这里不用置 0, 但为了代码的严谨性, 不依赖其他的特殊实现方式, 这里还是置 0.\n        self.alpha = 0;\n    }\n}\n\n- (void)headerRefreshingAction {\n    // 默认使用 UIViewAnimation 动画\n    if (!self.isCollectionViewAnimationBug) {\n        MJRefreshDispatchAsyncOnMainQueue({\n            [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n                if (self.scrollView.panGestureRecognizer.state != UIGestureRecognizerStateCancelled) {\n                    CGFloat top = self.scrollViewOriginalInset.top + self.mj_h;\n                    // 增加滚动区域top\n                    self.scrollView.mj_insetT = top;\n                    // 设置滚动位置\n                    CGPoint offset = self.scrollView.contentOffset;\n                    offset.y = -top;\n                    [self.scrollView setContentOffset:offset animated:NO];\n                }\n            } completion:^(BOOL finished) {\n                [self executeRefreshingCallback];\n            }];\n        })\n        return;\n    }\n    \n    if (self.scrollView.panGestureRecognizer.state != UIGestureRecognizerStateCancelled) {\n        CGFloat top = self.scrollViewOriginalInset.top + self.mj_h;\n        // 禁用交互, 如果不禁用可能会引起渲染问题.\n        self.scrollView.userInteractionEnabled = NO;\n\n        // CAAnimation keyPath不支持 contentOffset 用Bounds的动画代替\n        CABasicAnimation *boundsAnimation = [CABasicAnimation animationWithKeyPath:@\"bounds\"];\n        CGRect bounds = self.scrollView.bounds;\n        bounds.origin.y = -top;\n        boundsAnimation.fromValue = [NSValue valueWithCGRect:self.scrollView.bounds];\n        boundsAnimation.toValue = [NSValue valueWithCGRect:bounds];\n        boundsAnimation.duration = MJRefreshFastAnimationDuration;\n        //在delegate里移除\n        boundsAnimation.removedOnCompletion = NO;\n        boundsAnimation.fillMode = kCAFillModeBoth;\n        boundsAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];\n        boundsAnimation.delegate = self;\n        [boundsAnimation setValue:MJRefreshHeaderRefreshingBoundsKey forKey:@\"identity\"];\n        [self.scrollView.layer addAnimation:boundsAnimation forKey:MJRefreshHeaderRefreshingBoundsKey];\n    } else {\n        [self executeRefreshingCallback];\n    }\n}\n\n#pragma mark - CAAnimationDelegate\n- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {\n    NSString *identity = [anim valueForKey:@\"identity\"];\n    if ([identity isEqualToString:MJRefreshHeaderRefreshing2IdleBoundsKey]) {\n        self.pullingPercent = 0.0;\n        self.scrollView.userInteractionEnabled = YES;\n        if (self.endRefreshingCompletionBlock) {\n            self.endRefreshingCompletionBlock();\n        }\n    } else if ([identity isEqualToString:MJRefreshHeaderRefreshingBoundsKey]) {\n        // 避免出现 end 先于 Refreshing 状态\n        if (self.state != MJRefreshStateIdle) {\n            CGFloat top = self.scrollViewOriginalInset.top + self.mj_h;\n            self.scrollView.mj_insetT = top;\n            // 设置最终滚动位置\n            CGPoint offset = self.scrollView.contentOffset;\n            offset.y = -top;\n            [self.scrollView setContentOffset:offset animated:NO];\n         }\n        self.scrollView.userInteractionEnabled = YES;\n        [self executeRefreshingCallback];\n    }\n    \n    if ([self.scrollView.layer animationForKey:MJRefreshHeaderRefreshing2IdleBoundsKey]) {\n        [self.scrollView.layer removeAnimationForKey:MJRefreshHeaderRefreshing2IdleBoundsKey];\n    }\n    \n    if ([self.scrollView.layer animationForKey:MJRefreshHeaderRefreshingBoundsKey]) {\n        [self.scrollView.layer removeAnimationForKey:MJRefreshHeaderRefreshingBoundsKey];\n    }\n}\n\n#pragma mark - 公共方法\n- (NSDate *)lastUpdatedTime\n{\n    return [[NSUserDefaults standardUserDefaults] objectForKey:self.lastUpdatedTimeKey];\n}\n\n- (void)setIgnoredScrollViewContentInsetTop:(CGFloat)ignoredScrollViewContentInsetTop {\n    _ignoredScrollViewContentInsetTop = ignoredScrollViewContentInsetTop;\n    \n    self.mj_y = - self.mj_h - _ignoredScrollViewContentInsetTop;\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h",
    "content": "//\n//  MJRefreshAutoGifFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoStateFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshAutoGifFooter : MJRefreshAutoStateFooter\n@property (weak, nonatomic, readonly) UIImageView *gifView;\n\n/** 设置state状态下的动画图片images 动画持续时间duration*/\n- (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state;\n- (void)setImages:(NSArray *)images forState:(MJRefreshState)state;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m",
    "content": "//\n//  MJRefreshAutoGifFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoGifFooter.h\"\n\n@interface MJRefreshAutoGifFooter()\n{\n    __unsafe_unretained UIImageView *_gifView;\n}\n/** 所有状态对应的动画图片 */\n@property (strong, nonatomic) NSMutableDictionary *stateImages;\n/** 所有状态对应的动画时间 */\n@property (strong, nonatomic) NSMutableDictionary *stateDurations;\n@end\n\n@implementation MJRefreshAutoGifFooter\n#pragma mark - 懒加载\n- (UIImageView *)gifView\n{\n    if (!_gifView) {\n        UIImageView *gifView = [[UIImageView alloc] init];\n        [self addSubview:_gifView = gifView];\n    }\n    return _gifView;\n}\n\n- (NSMutableDictionary *)stateImages\n{\n    if (!_stateImages) {\n        self.stateImages = [NSMutableDictionary dictionary];\n    }\n    return _stateImages;\n}\n\n- (NSMutableDictionary *)stateDurations\n{\n    if (!_stateDurations) {\n        self.stateDurations = [NSMutableDictionary dictionary];\n    }\n    return _stateDurations;\n}\n\n#pragma mark - 公共方法\n- (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state\n{\n    if (images == nil) return;\n    \n    self.stateImages[@(state)] = images;\n    self.stateDurations[@(state)] = @(duration);\n    \n    /* 根据图片设置控件的高度 */\n    UIImage *image = [images firstObject];\n    if (image.size.height > self.mj_h) {\n        self.mj_h = image.size.height;\n    }\n}\n\n- (void)setImages:(NSArray *)images forState:(MJRefreshState)state\n{\n    [self setImages:images duration:images.count * 0.1 forState:state];\n}\n\n#pragma mark - 实现父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 初始化间距\n    self.labelLeftInset = 20;\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.gifView.constraints.count) return;\n    \n    self.gifView.frame = self.bounds;\n    if (self.isRefreshingTitleHidden) {\n        self.gifView.contentMode = UIViewContentModeCenter;\n    } else {\n        self.gifView.contentMode = UIViewContentModeRight;\n        self.gifView.mj_w = self.mj_w * 0.5 - self.labelLeftInset - self.stateLabel.mj_textWidth * 0.5;\n    }\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStateRefreshing) {\n        NSArray *images = self.stateImages[@(state)];\n        if (images.count == 0) return;\n        [self.gifView stopAnimating];\n        \n        self.gifView.hidden = NO;\n        if (images.count == 1) { // 单张图片\n            self.gifView.image = [images lastObject];\n        } else { // 多张图片\n            self.gifView.animationImages = images;\n            self.gifView.animationDuration = [self.stateDurations[@(state)] doubleValue];\n            [self.gifView startAnimating];\n        }\n    } else if (state == MJRefreshStateNoMoreData || state == MJRefreshStateIdle) {\n        [self.gifView stopAnimating];\n        self.gifView.hidden = YES;\n    }\n}\n@end\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h",
    "content": "//\n//  MJRefreshAutoNormalFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoStateFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshAutoNormalFooter : MJRefreshAutoStateFooter\n@property (weak, nonatomic, readonly) UIActivityIndicatorView *loadingView;\n\n/** 菊花的样式 */\n@property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle MJRefreshDeprecated(\"first deprecated in 3.2.2 - Use `loadingView` property\");\n@end\n\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m",
    "content": "//\n//  MJRefreshAutoNormalFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoNormalFooter.h\"\n\n@interface MJRefreshAutoNormalFooter()\n@property (weak, nonatomic) UIActivityIndicatorView *loadingView;\n@end\n\n@implementation MJRefreshAutoNormalFooter\n#pragma mark - 懒加载子控件\n- (UIActivityIndicatorView *)loadingView\n{\n    if (!_loadingView) {\n        UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:_activityIndicatorViewStyle];\n        loadingView.hidesWhenStopped = YES;\n        [self addSubview:_loadingView = loadingView];\n    }\n    return _loadingView;\n}\n\n- (void)setActivityIndicatorViewStyle:(UIActivityIndicatorViewStyle)activityIndicatorViewStyle\n{\n    _activityIndicatorViewStyle = activityIndicatorViewStyle;\n    \n    [self.loadingView removeFromSuperview];\n    self.loadingView = nil;\n    [self setNeedsLayout];\n}\n#pragma mark - 重写父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000\n    if (@available(iOS 13.0, *)) {\n        _activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;\n        return;\n    }\n#endif\n        \n    _activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.loadingView.constraints.count) return;\n    \n    // 圈圈\n    CGFloat loadingCenterX = self.mj_w * 0.5;\n    if (!self.isRefreshingTitleHidden) {\n        loadingCenterX -= self.stateLabel.mj_textWidth * 0.5 + self.labelLeftInset;\n    }\n    CGFloat loadingCenterY = self.mj_h * 0.5;\n    self.loadingView.center = CGPointMake(loadingCenterX, loadingCenterY);\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStateNoMoreData || state == MJRefreshStateIdle) {\n        [self.loadingView stopAnimating];\n    } else if (state == MJRefreshStateRefreshing) {\n        [self.loadingView startAnimating];\n    }\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h",
    "content": "//\n//  MJRefreshAutoStateFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/6/13.\n//  Copyright © 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshAutoStateFooter : MJRefreshAutoFooter\n/** 文字距离圈圈、箭头的距离 */\n@property (assign, nonatomic) CGFloat labelLeftInset;\n/** 显示刷新状态的label */\n@property (weak, nonatomic, readonly) UILabel *stateLabel;\n\n/** 设置state状态下的文字 */\n- (void)setTitle:(NSString *)title forState:(MJRefreshState)state;\n\n/** 隐藏刷新状态的文字 */\n@property (assign, nonatomic, getter=isRefreshingTitleHidden) BOOL refreshingTitleHidden;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m",
    "content": "//\n//  MJRefreshAutoStateFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/6/13.\n//  Copyright © 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshAutoStateFooter.h\"\n\n@interface MJRefreshAutoStateFooter()\n{\n    /** 显示刷新状态的label */\n    __unsafe_unretained UILabel *_stateLabel;\n}\n/** 所有状态对应的文字 */\n@property (strong, nonatomic) NSMutableDictionary *stateTitles;\n@end\n\n@implementation MJRefreshAutoStateFooter\n#pragma mark - 懒加载\n- (NSMutableDictionary *)stateTitles\n{\n    if (!_stateTitles) {\n        self.stateTitles = [NSMutableDictionary dictionary];\n    }\n    return _stateTitles;\n}\n\n- (UILabel *)stateLabel\n{\n    if (!_stateLabel) {\n        [self addSubview:_stateLabel = [UILabel mj_label]];\n    }\n    return _stateLabel;\n}\n\n#pragma mark - 公共方法\n- (void)setTitle:(NSString *)title forState:(MJRefreshState)state\n{\n    if (title == nil) return;\n    self.stateTitles[@(state)] = title;\n    self.stateLabel.text = self.stateTitles[@(self.state)];\n}\n\n#pragma mark - 私有方法\n- (void)stateLabelClick\n{\n    if (self.state == MJRefreshStateIdle) {\n        [self beginRefreshing];\n    }\n}\n\n#pragma mark - 重写父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 初始化间距\n    self.labelLeftInset = MJRefreshLabelLeftInset;\n    \n    // 初始化文字\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshAutoFooterIdleText] forState:MJRefreshStateIdle];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshAutoFooterRefreshingText] forState:MJRefreshStateRefreshing];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshAutoFooterNoMoreDataText] forState:MJRefreshStateNoMoreData];\n    \n    // 监听label\n    self.stateLabel.userInteractionEnabled = YES;\n    [self.stateLabel addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(stateLabelClick)]];\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.stateLabel.constraints.count) return;\n    \n    // 状态标签\n    self.stateLabel.frame = self.bounds;\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    if (self.isRefreshingTitleHidden && state == MJRefreshStateRefreshing) {\n        self.stateLabel.text = nil;\n    } else {\n        self.stateLabel.text = self.stateTitles[@(state)];\n    }\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h",
    "content": "//\n//  MJRefreshBackGifFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackStateFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshBackGifFooter : MJRefreshBackStateFooter\n@property (weak, nonatomic, readonly) UIImageView *gifView;\n\n/** 设置state状态下的动画图片images 动画持续时间duration*/\n- (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state;\n- (void)setImages:(NSArray *)images forState:(MJRefreshState)state;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m",
    "content": "//\n//  MJRefreshBackGifFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackGifFooter.h\"\n\n@interface MJRefreshBackGifFooter()\n{\n    __unsafe_unretained UIImageView *_gifView;\n}\n/** 所有状态对应的动画图片 */\n@property (strong, nonatomic) NSMutableDictionary *stateImages;\n/** 所有状态对应的动画时间 */\n@property (strong, nonatomic) NSMutableDictionary *stateDurations;\n@end\n\n@implementation MJRefreshBackGifFooter\n#pragma mark - 懒加载\n- (UIImageView *)gifView\n{\n    if (!_gifView) {\n        UIImageView *gifView = [[UIImageView alloc] init];\n        [self addSubview:_gifView = gifView];\n    }\n    return _gifView;\n}\n\n- (NSMutableDictionary *)stateImages\n{\n    if (!_stateImages) {\n        self.stateImages = [NSMutableDictionary dictionary];\n    }\n    return _stateImages;\n}\n\n- (NSMutableDictionary *)stateDurations\n{\n    if (!_stateDurations) {\n        self.stateDurations = [NSMutableDictionary dictionary];\n    }\n    return _stateDurations;\n}\n\n#pragma mark - 公共方法\n- (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state\n{\n    if (images == nil) return;\n    \n    self.stateImages[@(state)] = images;\n    self.stateDurations[@(state)] = @(duration);\n    \n    /* 根据图片设置控件的高度 */\n    UIImage *image = [images firstObject];\n    if (image.size.height > self.mj_h) {\n        self.mj_h = image.size.height;\n    }\n}\n\n- (void)setImages:(NSArray *)images forState:(MJRefreshState)state\n{\n    [self setImages:images duration:images.count * 0.1 forState:state];\n}\n\n#pragma mark - 实现父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 初始化间距\n    self.labelLeftInset = 20;\n}\n\n- (void)setPullingPercent:(CGFloat)pullingPercent\n{\n    [super setPullingPercent:pullingPercent];\n    NSArray *images = self.stateImages[@(MJRefreshStateIdle)];\n    if (self.state != MJRefreshStateIdle || images.count == 0) return;\n    [self.gifView stopAnimating];\n    NSUInteger index =  images.count * pullingPercent;\n    if (index >= images.count) index = images.count - 1;\n    self.gifView.image = images[index];\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.gifView.constraints.count) return;\n    \n    self.gifView.frame = self.bounds;\n    if (self.stateLabel.hidden) {\n        self.gifView.contentMode = UIViewContentModeCenter;\n    } else {\n        self.gifView.contentMode = UIViewContentModeRight;\n        self.gifView.mj_w = self.mj_w * 0.5 - self.labelLeftInset - self.stateLabel.mj_textWidth * 0.5;\n    }\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStatePulling || state == MJRefreshStateRefreshing) {\n        NSArray *images = self.stateImages[@(state)];\n        if (images.count == 0) return;\n        \n        self.gifView.hidden = NO;\n        [self.gifView stopAnimating];\n        if (images.count == 1) { // 单张图片\n            self.gifView.image = [images lastObject];\n        } else { // 多张图片\n            self.gifView.animationImages = images;\n            self.gifView.animationDuration = [self.stateDurations[@(state)] doubleValue];\n            [self.gifView startAnimating];\n        }\n    } else if (state == MJRefreshStateIdle) {\n        self.gifView.hidden = NO;\n    } else if (state == MJRefreshStateNoMoreData) {\n        self.gifView.hidden = YES;\n    }\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h",
    "content": "//\n//  MJRefreshBackNormalFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackStateFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshBackNormalFooter : MJRefreshBackStateFooter\n@property (weak, nonatomic, readonly) UIImageView *arrowView;\n@property (weak, nonatomic, readonly) UIActivityIndicatorView *loadingView;\n\n/** 菊花的样式 */\n@property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle MJRefreshDeprecated(\"first deprecated in 3.2.2 - Use `loadingView` property\");\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m",
    "content": "//\n//  MJRefreshBackNormalFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackNormalFooter.h\"\n#import \"NSBundle+MJRefresh.h\"\n\n@interface MJRefreshBackNormalFooter()\n{\n    __unsafe_unretained UIImageView *_arrowView;\n}\n@property (weak, nonatomic) UIActivityIndicatorView *loadingView;\n@end\n\n@implementation MJRefreshBackNormalFooter\n#pragma mark - 懒加载子控件\n- (UIImageView *)arrowView\n{\n    if (!_arrowView) {\n        UIImageView *arrowView = [[UIImageView alloc] initWithImage:[NSBundle mj_arrowImage]];\n        [self addSubview:_arrowView = arrowView];\n    }\n    return _arrowView;\n}\n\n\n- (UIActivityIndicatorView *)loadingView\n{\n    if (!_loadingView) {\n        UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:_activityIndicatorViewStyle];\n        loadingView.hidesWhenStopped = YES;\n        [self addSubview:_loadingView = loadingView];\n    }\n    return _loadingView;\n}\n\n- (void)setActivityIndicatorViewStyle:(UIActivityIndicatorViewStyle)activityIndicatorViewStyle\n{\n    _activityIndicatorViewStyle = activityIndicatorViewStyle;\n    \n    [self.loadingView removeFromSuperview];\n    self.loadingView = nil;\n    [self setNeedsLayout];\n}\n#pragma mark - 重写父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000\n    if (@available(iOS 13.0, *)) {\n        _activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;\n        return;\n    }\n#endif\n        \n    _activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    // 箭头的中心点\n    CGFloat arrowCenterX = self.mj_w * 0.5;\n    if (!self.stateLabel.hidden) {\n        arrowCenterX -= self.labelLeftInset + self.stateLabel.mj_textWidth * 0.5;\n    }\n    CGFloat arrowCenterY = self.mj_h * 0.5;\n    CGPoint arrowCenter = CGPointMake(arrowCenterX, arrowCenterY);\n    \n    // 箭头\n    if (self.arrowView.constraints.count == 0) {\n        self.arrowView.mj_size = self.arrowView.image.size;\n        self.arrowView.center = arrowCenter;\n    }\n    \n    // 圈圈\n    if (self.loadingView.constraints.count == 0) {\n        self.loadingView.center = arrowCenter;\n    }\n    \n    self.arrowView.tintColor = self.stateLabel.textColor;\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStateIdle) {\n        if (oldState == MJRefreshStateRefreshing) {\n            self.arrowView.transform = CGAffineTransformMakeRotation(0.000001 - M_PI);\n            [UIView animateWithDuration:MJRefreshSlowAnimationDuration animations:^{\n                self.loadingView.alpha = 0.0;\n            } completion:^(BOOL finished) {\n                // 防止动画结束后，状态已经不是MJRefreshStateIdle\n                if (self.state != MJRefreshStateIdle) return;\n                \n                self.loadingView.alpha = 1.0;\n                [self.loadingView stopAnimating];\n                \n                self.arrowView.hidden = NO;\n            }];\n        } else {\n            self.arrowView.hidden = NO;\n            [self.loadingView stopAnimating];\n            [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n                self.arrowView.transform = CGAffineTransformMakeRotation(0.000001 - M_PI);\n            }];\n        }\n    } else if (state == MJRefreshStatePulling) {\n        self.arrowView.hidden = NO;\n        [self.loadingView stopAnimating];\n        [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n            self.arrowView.transform = CGAffineTransformIdentity;\n        }];\n    } else if (state == MJRefreshStateRefreshing) {\n        self.arrowView.hidden = YES;\n        [self.loadingView startAnimating];\n    } else if (state == MJRefreshStateNoMoreData) {\n        self.arrowView.hidden = YES;\n        [self.loadingView stopAnimating];\n    }\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h",
    "content": "//\n//  MJRefreshBackStateFooter.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/6/13.\n//  Copyright © 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackFooter.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshBackStateFooter : MJRefreshBackFooter\n/** 文字距离圈圈、箭头的距离 */\n@property (assign, nonatomic) CGFloat labelLeftInset;\n/** 显示刷新状态的label */\n@property (weak, nonatomic, readonly) UILabel *stateLabel;\n/** 设置state状态下的文字 */\n- (void)setTitle:(NSString *)title forState:(MJRefreshState)state;\n\n/** 获取state状态下的title */\n- (NSString *)titleForState:(MJRefreshState)state;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m",
    "content": "//\n//  MJRefreshBackStateFooter.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/6/13.\n//  Copyright © 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshBackStateFooter.h\"\n\n@interface MJRefreshBackStateFooter()\n{\n    /** 显示刷新状态的label */\n    __unsafe_unretained UILabel *_stateLabel;\n}\n/** 所有状态对应的文字 */\n@property (strong, nonatomic) NSMutableDictionary *stateTitles;\n@end\n\n@implementation MJRefreshBackStateFooter\n#pragma mark - 懒加载\n- (NSMutableDictionary *)stateTitles\n{\n    if (!_stateTitles) {\n        self.stateTitles = [NSMutableDictionary dictionary];\n    }\n    return _stateTitles;\n}\n\n- (UILabel *)stateLabel\n{\n    if (!_stateLabel) {\n        [self addSubview:_stateLabel = [UILabel mj_label]];\n    }\n    return _stateLabel;\n}\n\n#pragma mark - 公共方法\n- (void)setTitle:(NSString *)title forState:(MJRefreshState)state\n{\n    if (title == nil) return;\n    self.stateTitles[@(state)] = title;\n    self.stateLabel.text = self.stateTitles[@(self.state)];\n}\n\n- (NSString *)titleForState:(MJRefreshState)state {\n  return self.stateTitles[@(state)];\n}\n\n#pragma mark - 重写父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 初始化间距\n    self.labelLeftInset = MJRefreshLabelLeftInset;\n    \n    // 初始化文字\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshBackFooterIdleText] forState:MJRefreshStateIdle];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshBackFooterPullingText] forState:MJRefreshStatePulling];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshBackFooterRefreshingText] forState:MJRefreshStateRefreshing];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshBackFooterNoMoreDataText] forState:MJRefreshStateNoMoreData];\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.stateLabel.constraints.count) return;\n    \n    // 状态标签\n    self.stateLabel.frame = self.bounds;\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 设置状态文字\n    self.stateLabel.text = self.stateTitles[@(state)];\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h",
    "content": "//\n//  MJRefreshGifHeader.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshStateHeader.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshGifHeader : MJRefreshStateHeader\n@property (weak, nonatomic, readonly) UIImageView *gifView;\n\n/** 设置state状态下的动画图片images 动画持续时间duration*/\n- (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state;\n- (void)setImages:(NSArray *)images forState:(MJRefreshState)state;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m",
    "content": "//\n//  MJRefreshGifHeader.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshGifHeader.h\"\n\n@interface MJRefreshGifHeader()\n{\n    __unsafe_unretained UIImageView *_gifView;\n}\n/** 所有状态对应的动画图片 */\n@property (strong, nonatomic) NSMutableDictionary *stateImages;\n/** 所有状态对应的动画时间 */\n@property (strong, nonatomic) NSMutableDictionary *stateDurations;\n@end\n\n@implementation MJRefreshGifHeader\n#pragma mark - 懒加载\n- (UIImageView *)gifView\n{\n    if (!_gifView) { \n        UIImageView *gifView = [[UIImageView alloc] init]; \n        [self addSubview:_gifView = gifView]; \n    } \n    return _gifView; \n}\n\n- (NSMutableDictionary *)stateImages \n{ \n    if (!_stateImages) { \n        self.stateImages = [NSMutableDictionary dictionary]; \n    } \n    return _stateImages; \n}\n\n- (NSMutableDictionary *)stateDurations \n{ \n    if (!_stateDurations) { \n        self.stateDurations = [NSMutableDictionary dictionary]; \n    } \n    return _stateDurations; \n}\n\n#pragma mark - 公共方法\n- (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state \n{ \n    if (images == nil) return; \n    \n    self.stateImages[@(state)] = images; \n    self.stateDurations[@(state)] = @(duration); \n    \n    /* 根据图片设置控件的高度 */ \n    UIImage *image = [images firstObject]; \n    if (image.size.height > self.mj_h) { \n        self.mj_h = image.size.height; \n    } \n}\n\n- (void)setImages:(NSArray *)images forState:(MJRefreshState)state \n{ \n    [self setImages:images duration:images.count * 0.1 forState:state]; \n}\n\n#pragma mark - 实现父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 初始化间距\n    self.labelLeftInset = 20;\n}\n\n- (void)setPullingPercent:(CGFloat)pullingPercent\n{\n    [super setPullingPercent:pullingPercent];\n    NSArray *images = self.stateImages[@(MJRefreshStateIdle)];\n    if (self.state != MJRefreshStateIdle || images.count == 0) return;\n    // 停止动画\n    [self.gifView stopAnimating];\n    // 设置当前需要显示的图片\n    NSUInteger index =  images.count * pullingPercent;\n    if (index >= images.count) index = images.count - 1;\n    self.gifView.image = images[index];\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.gifView.constraints.count) return;\n    \n    self.gifView.frame = self.bounds;\n    if (self.stateLabel.hidden && self.lastUpdatedTimeLabel.hidden) {\n        self.gifView.contentMode = UIViewContentModeCenter;\n    } else {\n        self.gifView.contentMode = UIViewContentModeRight;\n        \n        CGFloat stateWidth = self.stateLabel.mj_textWidth;\n        CGFloat timeWidth = 0.0;\n        if (!self.lastUpdatedTimeLabel.hidden) {\n            timeWidth = self.lastUpdatedTimeLabel.mj_textWidth;\n        }\n        CGFloat textWidth = MAX(stateWidth, timeWidth);\n        self.gifView.mj_w = self.mj_w * 0.5 - textWidth * 0.5 - self.labelLeftInset;\n    }\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStatePulling || state == MJRefreshStateRefreshing) {\n        NSArray *images = self.stateImages[@(state)];\n        if (images.count == 0) return;\n        \n        [self.gifView stopAnimating];\n        if (images.count == 1) { // 单张图片\n            self.gifView.image = [images lastObject];\n        } else { // 多张图片\n            self.gifView.animationImages = images;\n            self.gifView.animationDuration = [self.stateDurations[@(state)] doubleValue];\n            [self.gifView startAnimating];\n        }\n    } else if (state == MJRefreshStateIdle) {\n        [self.gifView stopAnimating];\n    }\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h",
    "content": "//\n//  MJRefreshNormalHeader.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshStateHeader.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshNormalHeader : MJRefreshStateHeader\n@property (weak, nonatomic, readonly) UIImageView *arrowView;\n@property (weak, nonatomic, readonly) UIActivityIndicatorView *loadingView;\n\n\n/** 菊花的样式 */\n@property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle MJRefreshDeprecated(\"first deprecated in 3.2.2 - Use `loadingView` property\");\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m",
    "content": "//\n//  MJRefreshNormalHeader.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshNormalHeader.h\"\n#import \"NSBundle+MJRefresh.h\"\n\n@interface MJRefreshNormalHeader()\n{\n    __unsafe_unretained UIImageView *_arrowView;\n}\n@property (weak, nonatomic) UIActivityIndicatorView *loadingView;\n@end\n\n@implementation MJRefreshNormalHeader\n#pragma mark - 懒加载子控件\n- (UIImageView *)arrowView\n{\n    if (!_arrowView) {\n        UIImageView *arrowView = [[UIImageView alloc] initWithImage:[NSBundle mj_arrowImage]];\n        [self addSubview:_arrowView = arrowView];\n    }\n    return _arrowView;\n}\n\n- (UIActivityIndicatorView *)loadingView\n{\n    if (!_loadingView) {\n        UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:_activityIndicatorViewStyle];\n        loadingView.hidesWhenStopped = YES;\n        [self addSubview:_loadingView = loadingView];\n    }\n    return _loadingView;\n}\n\n#pragma mark - 公共方法\n- (void)setActivityIndicatorViewStyle:(UIActivityIndicatorViewStyle)activityIndicatorViewStyle\n{\n    _activityIndicatorViewStyle = activityIndicatorViewStyle;\n    \n    [self.loadingView removeFromSuperview];\n    self.loadingView = nil;\n    [self setNeedsLayout];\n}\n\n#pragma mark - 重写父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000\n    if (@available(iOS 13.0, *)) {\n        _activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;\n        return;\n    }\n#endif\n    \n    _activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    // 箭头的中心点\n    CGFloat arrowCenterX = self.mj_w * 0.5;\n    if (!self.stateLabel.hidden) {\n        CGFloat stateWidth = self.stateLabel.mj_textWidth;\n        CGFloat timeWidth = 0.0;\n        if (!self.lastUpdatedTimeLabel.hidden) {\n            timeWidth = self.lastUpdatedTimeLabel.mj_textWidth;\n        }\n        CGFloat textWidth = MAX(stateWidth, timeWidth);\n        arrowCenterX -= textWidth / 2 + self.labelLeftInset;\n    }\n    CGFloat arrowCenterY = self.mj_h * 0.5;\n    CGPoint arrowCenter = CGPointMake(arrowCenterX, arrowCenterY);\n    \n    // 箭头\n    if (self.arrowView.constraints.count == 0) {\n        self.arrowView.mj_size = self.arrowView.image.size;\n        self.arrowView.center = arrowCenter;\n    }\n        \n    // 圈圈\n    if (self.loadingView.constraints.count == 0) {\n        self.loadingView.center = arrowCenter;\n    }\n    \n    self.arrowView.tintColor = self.stateLabel.textColor;\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 根据状态做事情\n    if (state == MJRefreshStateIdle) {\n        if (oldState == MJRefreshStateRefreshing) {\n            self.arrowView.transform = CGAffineTransformIdentity;\n            \n            [UIView animateWithDuration:MJRefreshSlowAnimationDuration animations:^{\n                self.loadingView.alpha = 0.0;\n            } completion:^(BOOL finished) {\n                // 如果执行完动画发现不是idle状态，就直接返回，进入其他状态\n                if (self.state != MJRefreshStateIdle) return;\n                \n                self.loadingView.alpha = 1.0;\n                [self.loadingView stopAnimating];\n                self.arrowView.hidden = NO;\n            }];\n        } else {\n            [self.loadingView stopAnimating];\n            self.arrowView.hidden = NO;\n            [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n                self.arrowView.transform = CGAffineTransformIdentity;\n            }];\n        }\n    } else if (state == MJRefreshStatePulling) {\n        [self.loadingView stopAnimating];\n        self.arrowView.hidden = NO;\n        [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{\n            self.arrowView.transform = CGAffineTransformMakeRotation(0.000001 - M_PI);\n        }];\n    } else if (state == MJRefreshStateRefreshing) {\n        self.loadingView.alpha = 1.0; // 防止refreshing -> idle的动画完毕动作没有被执行\n        [self.loadingView startAnimating];\n        self.arrowView.hidden = YES;\n    }\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h",
    "content": "//\n//  MJRefreshStateHeader.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshHeader.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshStateHeader : MJRefreshHeader\n#pragma mark - 刷新时间相关\n/** 利用这个block来决定显示的更新时间文字 */\n@property (copy, nonatomic, nullable) NSString *(^lastUpdatedTimeText)(NSDate * _Nullable lastUpdatedTime);\n/** 显示上一次刷新时间的label */\n@property (weak, nonatomic, readonly) UILabel *lastUpdatedTimeLabel;\n\n#pragma mark - 状态相关\n/** 文字距离圈圈、箭头的距离 */\n@property (assign, nonatomic) CGFloat labelLeftInset;\n/** 显示刷新状态的label */\n@property (weak, nonatomic, readonly) UILabel *stateLabel;\n/** 设置state状态下的文字 */\n- (void)setTitle:(NSString *)title forState:(MJRefreshState)state;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m",
    "content": "//\n//  MJRefreshStateHeader.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/4/24.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshStateHeader.h\"\n\n@interface MJRefreshStateHeader()\n{\n    /** 显示上一次刷新时间的label */\n    __unsafe_unretained UILabel *_lastUpdatedTimeLabel;\n    /** 显示刷新状态的label */\n    __unsafe_unretained UILabel *_stateLabel;\n}\n/** 所有状态对应的文字 */\n@property (strong, nonatomic) NSMutableDictionary *stateTitles;\n@end\n\n@implementation MJRefreshStateHeader\n#pragma mark - 懒加载\n- (NSMutableDictionary *)stateTitles\n{\n    if (!_stateTitles) {\n        self.stateTitles = [NSMutableDictionary dictionary];\n    }\n    return _stateTitles;\n}\n\n- (UILabel *)stateLabel\n{\n    if (!_stateLabel) {\n        [self addSubview:_stateLabel = [UILabel mj_label]];\n    }\n    return _stateLabel;\n}\n\n- (UILabel *)lastUpdatedTimeLabel\n{\n    if (!_lastUpdatedTimeLabel) {\n        [self addSubview:_lastUpdatedTimeLabel = [UILabel mj_label]];\n    }\n    return _lastUpdatedTimeLabel;\n}\n\n#pragma mark - 公共方法\n- (void)setTitle:(NSString *)title forState:(MJRefreshState)state\n{\n    if (title == nil) return;\n    self.stateTitles[@(state)] = title;\n    self.stateLabel.text = self.stateTitles[@(self.state)];\n}\n\n#pragma mark key的处理\n- (void)setLastUpdatedTimeKey:(NSString *)lastUpdatedTimeKey\n{\n    [super setLastUpdatedTimeKey:lastUpdatedTimeKey];\n    \n    // 如果label隐藏了，就不用再处理\n    if (self.lastUpdatedTimeLabel.hidden) return;\n    \n    NSDate *lastUpdatedTime = [[NSUserDefaults standardUserDefaults] objectForKey:lastUpdatedTimeKey];\n    \n    // 如果有block\n    if (self.lastUpdatedTimeText) {\n        self.lastUpdatedTimeLabel.text = self.lastUpdatedTimeText(lastUpdatedTime);\n        return;\n    }\n    \n    if (lastUpdatedTime) {\n        // 1.获得年月日\n        NSCalendar *calendar = [NSCalendar calendarWithIdentifier:NSCalendarIdentifierGregorian];\n        NSUInteger unitFlags = NSCalendarUnitYear| NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute;\n        NSDateComponents *cmp1 = [calendar components:unitFlags fromDate:lastUpdatedTime];\n        NSDateComponents *cmp2 = [calendar components:unitFlags fromDate:[NSDate date]];\n        \n        // 2.格式化日期\n        NSDateFormatter *formatter = [[NSDateFormatter alloc] init];\n        BOOL isToday = NO;\n        if ([cmp1 day] == [cmp2 day]) { // 今天\n            formatter.dateFormat = @\" HH:mm\";\n            isToday = YES;\n        } else if ([cmp1 year] == [cmp2 year]) { // 今年\n            formatter.dateFormat = @\"MM-dd HH:mm\";\n        } else {\n            formatter.dateFormat = @\"yyyy-MM-dd HH:mm\";\n        }\n        NSString *time = [formatter stringFromDate:lastUpdatedTime];\n        \n        // 3.显示日期\n        self.lastUpdatedTimeLabel.text = [NSString stringWithFormat:@\"%@%@%@\",\n                                          [NSBundle mj_localizedStringForKey:MJRefreshHeaderLastTimeText],\n                                          isToday ? [NSBundle mj_localizedStringForKey:MJRefreshHeaderDateTodayText] : @\"\",\n                                          time];\n    } else {\n        self.lastUpdatedTimeLabel.text = [NSString stringWithFormat:@\"%@%@\",\n                                          [NSBundle mj_localizedStringForKey:MJRefreshHeaderLastTimeText],\n                                          [NSBundle mj_localizedStringForKey:MJRefreshHeaderNoneLastDateText]];\n    }\n}\n\n#pragma mark - 覆盖父类的方法\n- (void)prepare\n{\n    [super prepare];\n    \n    // 初始化间距\n    self.labelLeftInset = MJRefreshLabelLeftInset;\n    \n    // 初始化文字\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshHeaderIdleText] forState:MJRefreshStateIdle];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshHeaderPullingText] forState:MJRefreshStatePulling];\n    [self setTitle:[NSBundle mj_localizedStringForKey:MJRefreshHeaderRefreshingText] forState:MJRefreshStateRefreshing];\n}\n\n- (void)placeSubviews\n{\n    [super placeSubviews];\n    \n    if (self.stateLabel.hidden) return;\n    \n    BOOL noConstrainsOnStatusLabel = self.stateLabel.constraints.count == 0;\n    \n    if (self.lastUpdatedTimeLabel.hidden) {\n        // 状态\n        if (noConstrainsOnStatusLabel) self.stateLabel.frame = self.bounds;\n    } else {\n        CGFloat stateLabelH = self.mj_h * 0.5;\n        // 状态\n        if (noConstrainsOnStatusLabel) {\n            self.stateLabel.mj_x = 0;\n            self.stateLabel.mj_y = 0;\n            self.stateLabel.mj_w = self.mj_w;\n            self.stateLabel.mj_h = stateLabelH;\n        }\n        \n        // 更新时间\n        if (self.lastUpdatedTimeLabel.constraints.count == 0) {\n            self.lastUpdatedTimeLabel.mj_x = 0;\n            self.lastUpdatedTimeLabel.mj_y = stateLabelH;\n            self.lastUpdatedTimeLabel.mj_w = self.mj_w;\n            self.lastUpdatedTimeLabel.mj_h = self.mj_h - self.lastUpdatedTimeLabel.mj_y;\n        }\n    }\n}\n\n- (void)setState:(MJRefreshState)state\n{\n    MJRefreshCheckState\n    \n    // 设置状态文字\n    self.stateLabel.text = self.stateTitles[@(state)];\n    \n    // 重新设置key（重新显示时间）\n    self.lastUpdatedTimeKey = self.lastUpdatedTimeKey;\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/ko.lproj/Localizable.strings",
    "content": "\"MJRefreshHeaderIdleText\" = \"아래로 당겨 새로고침\";\n\"MJRefreshHeaderPullingText\" = \"놓으면 새로고침\";\n\"MJRefreshHeaderRefreshingText\" = \"로딩중...\";\n\n\"MJRefreshAutoFooterIdleText\" = \"탭 또는 위로 당겨 로드함\";\n\"MJRefreshAutoFooterRefreshingText\" = \"로딩중...\";\n\"MJRefreshAutoFooterNoMoreDataText\" = \"더이상 데이터 없음\";\n\n\"MJRefreshBackFooterIdleText\" = \"위로 당겨 더 로드 가능\";\n\"MJRefreshBackFooterPullingText\" = \"놓으면 더 로드됨.\";\n\"MJRefreshBackFooterRefreshingText\" = \"로딩중...\";\n\"MJRefreshBackFooterNoMoreDataText\" = \"더이상 데이터 없음\";\n\n\"MJRefreshHeaderLastTimeText\" = \"마지막 업데이트: \";\n\"MJRefreshHeaderDateTodayText\" = \"오늘\";\n\"MJRefreshHeaderNoneLastDateText\" = \"기록 없음\";\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings",
    "content": "\"MJRefreshHeaderIdleText\" = \"下拉可以刷新\";\n\"MJRefreshHeaderPullingText\" = \"鬆開立即刷新\";\n\"MJRefreshHeaderRefreshingText\" = \"正在刷新數據中...\";\n\n\"MJRefreshAutoFooterIdleText\" = \"點擊或上拉加載更多\";\n\"MJRefreshAutoFooterRefreshingText\" = \"正在加載更多的數據...\";\n\"MJRefreshAutoFooterNoMoreDataText\" = \"已經全部加載完畢\";\n\n\"MJRefreshBackFooterIdleText\" = \"上拉可以加載更多\";\n\"MJRefreshBackFooterPullingText\" = \"鬆開立即加載更多\";\n\"MJRefreshBackFooterRefreshingText\" = \"正在加載更多的數據...\";\n\"MJRefreshBackFooterNoMoreDataText\" = \"已經全部加載完畢\";\n\n\"MJRefreshHeaderLastTimeText\" = \"最後更新：\";\n\"MJRefreshHeaderDateTodayText\" = \"今天\";\n\"MJRefreshHeaderNoneLastDateText\" = \"無記錄\";\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefresh.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n\n#import \"UIScrollView+MJRefresh.h\"\n#import \"UIScrollView+MJExtension.h\"\n#import \"UIView+MJExtension.h\"\n\n#import \"MJRefreshNormalHeader.h\"\n#import \"MJRefreshGifHeader.h\"\n\n#import \"MJRefreshBackNormalFooter.h\"\n#import \"MJRefreshBackGifFooter.h\"\n#import \"MJRefreshAutoNormalFooter.h\"\n#import \"MJRefreshAutoGifFooter.h\""
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefreshConfig.h",
    "content": "//\n//  MJRefreshConfig.h\n//\n//  Created by Frank on 2018/11/27.\n//  Copyright © 2018 小码哥. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface MJRefreshConfig : NSObject\n\n/** 默认使用的语言版本, 默认为 nil. 将随系统的语言自动改变 */\n@property (copy, nonatomic, nullable) NSString *languageCode;\n\n/** @return Singleton Config instance */\n+ (instancetype)defaultConfig;\n\n- (instancetype)init NS_UNAVAILABLE;\n+ (instancetype)new NS_UNAVAILABLE;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m",
    "content": "//\n//  MJRefreshConfig.m\n//\n//  Created by Frank on 2018/11/27.\n//  Copyright © 2018 小码哥. All rights reserved.\n//\n\n#import \"MJRefreshConfig.h\"\n\n@implementation MJRefreshConfig\n\nstatic MJRefreshConfig *mj_RefreshConfig = nil;\n\n+ (instancetype)defaultConfig {\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        mj_RefreshConfig = [[self alloc] init];\n    });\n    return mj_RefreshConfig;\n}\n\n\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefreshConst.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n#import <UIKit/UIKit.h>\n#import <objc/message.h>\n\n// 弱引用\n#define MJWeakSelf __weak typeof(self) weakSelf = self;\n\n// 日志输出\n#ifdef DEBUG\n#define MJRefreshLog(...) NSLog(__VA_ARGS__)\n#else\n#define MJRefreshLog(...)\n#endif\n\n// 过期提醒\n#define MJRefreshDeprecated(DESCRIPTION) __attribute__((deprecated(DESCRIPTION)))\n\n// 运行时objc_msgSend\n#define MJRefreshMsgSend(...) ((void (*)(void *, SEL, UIView *))objc_msgSend)(__VA_ARGS__)\n#define MJRefreshMsgTarget(target) (__bridge void *)(target)\n\n// RGB颜色\n#define MJRefreshColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0]\n\n// 文字颜色\n#define MJRefreshLabelTextColor MJRefreshColor(90, 90, 90)\n\n// 字体大小\n#define MJRefreshLabelFont [UIFont boldSystemFontOfSize:14]\n\n// 常量\nUIKIT_EXTERN const CGFloat MJRefreshLabelLeftInset;\nUIKIT_EXTERN const CGFloat MJRefreshHeaderHeight;\nUIKIT_EXTERN const CGFloat MJRefreshFooterHeight;\nUIKIT_EXTERN const CGFloat MJRefreshFastAnimationDuration;\nUIKIT_EXTERN const CGFloat MJRefreshSlowAnimationDuration;\n\nUIKIT_EXTERN NSString *const MJRefreshKeyPathContentOffset;\nUIKIT_EXTERN NSString *const MJRefreshKeyPathContentSize;\nUIKIT_EXTERN NSString *const MJRefreshKeyPathContentInset;\nUIKIT_EXTERN NSString *const MJRefreshKeyPathPanState;\n\nUIKIT_EXTERN NSString *const MJRefreshHeaderLastUpdatedTimeKey;\n\nUIKIT_EXTERN NSString *const MJRefreshHeaderIdleText;\nUIKIT_EXTERN NSString *const MJRefreshHeaderPullingText;\nUIKIT_EXTERN NSString *const MJRefreshHeaderRefreshingText;\n\nUIKIT_EXTERN NSString *const MJRefreshAutoFooterIdleText;\nUIKIT_EXTERN NSString *const MJRefreshAutoFooterRefreshingText;\nUIKIT_EXTERN NSString *const MJRefreshAutoFooterNoMoreDataText;\n\nUIKIT_EXTERN NSString *const MJRefreshBackFooterIdleText;\nUIKIT_EXTERN NSString *const MJRefreshBackFooterPullingText;\nUIKIT_EXTERN NSString *const MJRefreshBackFooterRefreshingText;\nUIKIT_EXTERN NSString *const MJRefreshBackFooterNoMoreDataText;\n\nUIKIT_EXTERN NSString *const MJRefreshHeaderLastTimeText;\nUIKIT_EXTERN NSString *const MJRefreshHeaderDateTodayText;\nUIKIT_EXTERN NSString *const MJRefreshHeaderNoneLastDateText;\n\n// 状态检查\n#define MJRefreshCheckState \\\nMJRefreshState oldState = self.state; \\\nif (state == oldState) return; \\\n[super setState:state];\n\n// 异步主线程执行，不强持有Self\n#define MJRefreshDispatchAsyncOnMainQueue(x) \\\n__weak typeof(self) weakSelf = self; \\\ndispatch_async(dispatch_get_main_queue(), ^{ \\\ntypeof(weakSelf) self = weakSelf; \\\n{x} \\\n});\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/MJRefreshConst.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n#import <UIKit/UIKit.h>\n\nconst CGFloat MJRefreshLabelLeftInset = 25;\nconst CGFloat MJRefreshHeaderHeight = 54.0;\nconst CGFloat MJRefreshFooterHeight = 44.0;\nconst CGFloat MJRefreshFastAnimationDuration = 0.25;\nconst CGFloat MJRefreshSlowAnimationDuration = 0.4;\n\nNSString *const MJRefreshKeyPathContentOffset = @\"contentOffset\";\nNSString *const MJRefreshKeyPathContentInset = @\"contentInset\";\nNSString *const MJRefreshKeyPathContentSize = @\"contentSize\";\nNSString *const MJRefreshKeyPathPanState = @\"state\";\n\nNSString *const MJRefreshHeaderLastUpdatedTimeKey = @\"MJRefreshHeaderLastUpdatedTimeKey\";\n\nNSString *const MJRefreshHeaderIdleText = @\"MJRefreshHeaderIdleText\";\nNSString *const MJRefreshHeaderPullingText = @\"MJRefreshHeaderPullingText\";\nNSString *const MJRefreshHeaderRefreshingText = @\"MJRefreshHeaderRefreshingText\";\n\nNSString *const MJRefreshAutoFooterIdleText = @\"MJRefreshAutoFooterIdleText\";\nNSString *const MJRefreshAutoFooterRefreshingText = @\"MJRefreshAutoFooterRefreshingText\";\nNSString *const MJRefreshAutoFooterNoMoreDataText = @\"MJRefreshAutoFooterNoMoreDataText\";\n\nNSString *const MJRefreshBackFooterIdleText = @\"MJRefreshBackFooterIdleText\";\nNSString *const MJRefreshBackFooterPullingText = @\"MJRefreshBackFooterPullingText\";\nNSString *const MJRefreshBackFooterRefreshingText = @\"MJRefreshBackFooterRefreshingText\";\nNSString *const MJRefreshBackFooterNoMoreDataText = @\"MJRefreshBackFooterNoMoreDataText\";\n\nNSString *const MJRefreshHeaderLastTimeText = @\"MJRefreshHeaderLastTimeText\";\nNSString *const MJRefreshHeaderDateTodayText = @\"MJRefreshHeaderDateTodayText\";\nNSString *const MJRefreshHeaderNoneLastDateText = @\"MJRefreshHeaderNoneLastDateText\";"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h",
    "content": "//\n//  NSBundle+MJRefresh.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 16/6/13.\n//  Copyright © 2016年 小码哥. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface NSBundle (MJRefresh)\n+ (instancetype)mj_refreshBundle;\n+ (UIImage *)mj_arrowImage;\n+ (NSString *)mj_localizedStringForKey:(NSString *)key value:(nullable NSString *)value;\n+ (NSString *)mj_localizedStringForKey:(NSString *)key;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m",
    "content": "//\n//  NSBundle+MJRefresh.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 16/6/13.\n//  Copyright © 2016年 小码哥. All rights reserved.\n//\n\n#import \"NSBundle+MJRefresh.h\"\n#import \"MJRefreshComponent.h\"\n#import \"MJRefreshConfig.h\"\n\n@implementation NSBundle (MJRefresh)\n+ (instancetype)mj_refreshBundle\n{\n    static NSBundle *refreshBundle = nil;\n    if (refreshBundle == nil) {\n        // 这里不使用mainBundle是为了适配pod 1.x和0.x\n        refreshBundle = [NSBundle bundleWithPath:[[NSBundle bundleForClass:[MJRefreshComponent class]] pathForResource:@\"MJRefresh\" ofType:@\"bundle\"]];\n    }\n    return refreshBundle;\n}\n\n+ (UIImage *)mj_arrowImage\n{\n    static UIImage *arrowImage = nil;\n    if (arrowImage == nil) {\n        arrowImage = [[UIImage imageWithContentsOfFile:[[self mj_refreshBundle] pathForResource:@\"arrow@2x\" ofType:@\"png\"]] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];\n    }\n    return arrowImage;\n}\n\n+ (NSString *)mj_localizedStringForKey:(NSString *)key\n{\n    return [self mj_localizedStringForKey:key value:nil];\n}\n\n+ (NSString *)mj_localizedStringForKey:(NSString *)key value:(NSString *)value\n{\n    static NSBundle *bundle = nil;\n    if (bundle == nil) {\n        NSString *language = MJRefreshConfig.defaultConfig.languageCode;\n        // 如果配置中没有配置语言\n        if (!language) {\n            // （iOS获取的语言字符串比较不稳定）目前框架只处理en、zh-Hans、zh-Hant三种情况，其他按照系统默认处理\n            language = [NSLocale preferredLanguages].firstObject;\n        }\n        \n        if ([language hasPrefix:@\"en\"]) {\n            language = @\"en\";\n        } else if ([language hasPrefix:@\"zh\"]) {\n            if ([language rangeOfString:@\"Hans\"].location != NSNotFound) {\n                language = @\"zh-Hans\"; // 简体中文\n            } else { // zh-Hant\\zh-HK\\zh-TW\n                language = @\"zh-Hant\"; // 繁體中文\n            }\n        } else if ([language hasPrefix:@\"ko\"]) {\n            language = @\"ko\";\n        } else if ([language hasPrefix:@\"ru\"]) {\n            language = @\"ru\";\n        } else if ([language hasPrefix:@\"uk\"]) {\n            language = @\"uk\";\n        } else {\n            language = @\"en\";\n        }\n        \n        // 从MJRefresh.bundle中查找资源\n        bundle = [NSBundle bundleWithPath:[[NSBundle mj_refreshBundle] pathForResource:language ofType:@\"lproj\"]];\n    }\n    value = [bundle localizedStringForKey:key value:value table:nil];\n    return [[NSBundle mainBundle] localizedStringForKey:key value:value table:nil];\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  UIScrollView+Extension.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 14-5-28.\n//  Copyright (c) 2014年 小码哥. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface UIScrollView (MJExtension)\n@property (readonly, nonatomic) UIEdgeInsets mj_inset;\n\n@property (assign, nonatomic) CGFloat mj_insetT;\n@property (assign, nonatomic) CGFloat mj_insetB;\n@property (assign, nonatomic) CGFloat mj_insetL;\n@property (assign, nonatomic) CGFloat mj_insetR;\n\n@property (assign, nonatomic) CGFloat mj_offsetX;\n@property (assign, nonatomic) CGFloat mj_offsetY;\n\n@property (assign, nonatomic) CGFloat mj_contentW;\n@property (assign, nonatomic) CGFloat mj_contentH;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  UIScrollView+Extension.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 14-5-28.\n//  Copyright (c) 2014年 小码哥. All rights reserved.\n//\n\n#import \"UIScrollView+MJExtension.h\"\n#import <objc/runtime.h>\n\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wunguarded-availability-new\"\n\n@implementation UIScrollView (MJExtension)\n\nstatic BOOL respondsToAdjustedContentInset_;\n\n+ (void)initialize\n{\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        respondsToAdjustedContentInset_ = [self instancesRespondToSelector:@selector(adjustedContentInset)];\n    });\n}\n\n- (UIEdgeInsets)mj_inset\n{\n#ifdef __IPHONE_11_0\n    if (respondsToAdjustedContentInset_) {\n        return self.adjustedContentInset;\n    }\n#endif\n    return self.contentInset;\n}\n\n- (void)setMj_insetT:(CGFloat)mj_insetT\n{\n    UIEdgeInsets inset = self.contentInset;\n    inset.top = mj_insetT;\n#ifdef __IPHONE_11_0\n    if (respondsToAdjustedContentInset_) {\n        inset.top -= (self.adjustedContentInset.top - self.contentInset.top);\n    }\n#endif\n    self.contentInset = inset;\n}\n\n- (CGFloat)mj_insetT\n{\n    return self.mj_inset.top;\n}\n\n- (void)setMj_insetB:(CGFloat)mj_insetB\n{\n    UIEdgeInsets inset = self.contentInset;\n    inset.bottom = mj_insetB;\n#ifdef __IPHONE_11_0\n    if (respondsToAdjustedContentInset_) {\n        inset.bottom -= (self.adjustedContentInset.bottom - self.contentInset.bottom);\n    }\n#endif\n    self.contentInset = inset;\n}\n\n- (CGFloat)mj_insetB\n{\n    return self.mj_inset.bottom;\n}\n\n- (void)setMj_insetL:(CGFloat)mj_insetL\n{\n    UIEdgeInsets inset = self.contentInset;\n    inset.left = mj_insetL;\n#ifdef __IPHONE_11_0\n    if (respondsToAdjustedContentInset_) {\n        inset.left -= (self.adjustedContentInset.left - self.contentInset.left);\n    }\n#endif\n    self.contentInset = inset;\n}\n\n- (CGFloat)mj_insetL\n{\n    return self.mj_inset.left;\n}\n\n- (void)setMj_insetR:(CGFloat)mj_insetR\n{\n    UIEdgeInsets inset = self.contentInset;\n    inset.right = mj_insetR;\n#ifdef __IPHONE_11_0\n    if (respondsToAdjustedContentInset_) {\n        inset.right -= (self.adjustedContentInset.right - self.contentInset.right);\n    }\n#endif\n    self.contentInset = inset;\n}\n\n- (CGFloat)mj_insetR\n{\n    return self.mj_inset.right;\n}\n\n- (void)setMj_offsetX:(CGFloat)mj_offsetX\n{\n    CGPoint offset = self.contentOffset;\n    offset.x = mj_offsetX;\n    self.contentOffset = offset;\n}\n\n- (CGFloat)mj_offsetX\n{\n    return self.contentOffset.x;\n}\n\n- (void)setMj_offsetY:(CGFloat)mj_offsetY\n{\n    CGPoint offset = self.contentOffset;\n    offset.y = mj_offsetY;\n    self.contentOffset = offset;\n}\n\n- (CGFloat)mj_offsetY\n{\n    return self.contentOffset.y;\n}\n\n- (void)setMj_contentW:(CGFloat)mj_contentW\n{\n    CGSize size = self.contentSize;\n    size.width = mj_contentW;\n    self.contentSize = size;\n}\n\n- (CGFloat)mj_contentW\n{\n    return self.contentSize.width;\n}\n\n- (void)setMj_contentH:(CGFloat)mj_contentH\n{\n    CGSize size = self.contentSize;\n    size.height = mj_contentH;\n    self.contentSize = size;\n}\n\n- (CGFloat)mj_contentH\n{\n    return self.contentSize.height;\n}\n@end\n#pragma clang diagnostic pop\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  UIScrollView+MJRefresh.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/4.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//  给ScrollView增加下拉刷新、上拉刷新的功能\n\n#import <UIKit/UIKit.h>\n#import \"MJRefreshConst.h\"\n\n@class MJRefreshHeader, MJRefreshFooter;\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface UIScrollView (MJRefresh)\n/** 下拉刷新控件 */\n@property (strong, nonatomic, nullable) MJRefreshHeader *mj_header;\n@property (strong, nonatomic, nullable) MJRefreshHeader *header MJRefreshDeprecated(\"使用mj_header\");\n/** 上拉刷新控件 */\n@property (strong, nonatomic, nullable) MJRefreshFooter *mj_footer;\n@property (strong, nonatomic, nullable) MJRefreshFooter *footer MJRefreshDeprecated(\"使用mj_footer\");\n\n#pragma mark - other\n- (NSInteger)mj_totalDataCount;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  UIScrollView+MJRefresh.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 15/3/4.\n//  Copyright (c) 2015年 小码哥. All rights reserved.\n//\n\n#import \"UIScrollView+MJRefresh.h\"\n#import \"MJRefreshHeader.h\"\n#import \"MJRefreshFooter.h\"\n#import <objc/runtime.h>\n\n@implementation UIScrollView (MJRefresh)\n\n#pragma mark - header\nstatic const char MJRefreshHeaderKey = '\\0';\n- (void)setMj_header:(MJRefreshHeader *)mj_header\n{\n    if (mj_header != self.mj_header) {\n        // 删除旧的，添加新的\n        [self.mj_header removeFromSuperview];\n        [self insertSubview:mj_header atIndex:0];\n        \n        // 存储新的\n        objc_setAssociatedObject(self, &MJRefreshHeaderKey,\n                                 mj_header, OBJC_ASSOCIATION_RETAIN);\n    }\n}\n\n- (MJRefreshHeader *)mj_header\n{\n    return objc_getAssociatedObject(self, &MJRefreshHeaderKey);\n}\n\n#pragma mark - footer\nstatic const char MJRefreshFooterKey = '\\0';\n- (void)setMj_footer:(MJRefreshFooter *)mj_footer\n{\n    if (mj_footer != self.mj_footer) {\n        // 删除旧的，添加新的\n        [self.mj_footer removeFromSuperview];\n        [self insertSubview:mj_footer atIndex:0];\n        \n        // 存储新的\n        objc_setAssociatedObject(self, &MJRefreshFooterKey,\n                                 mj_footer, OBJC_ASSOCIATION_RETAIN);\n    }\n}\n\n- (MJRefreshFooter *)mj_footer\n{\n    return objc_getAssociatedObject(self, &MJRefreshFooterKey);\n}\n\n#pragma mark - 过期\n- (void)setFooter:(MJRefreshFooter *)footer\n{\n    self.mj_footer = footer;\n}\n\n- (MJRefreshFooter *)footer\n{\n    return self.mj_footer;\n}\n\n- (void)setHeader:(MJRefreshHeader *)header\n{\n    self.mj_header = header;\n}\n\n- (MJRefreshHeader *)header\n{\n    return self.mj_header;\n}\n\n#pragma mark - other\n- (NSInteger)mj_totalDataCount\n{\n    NSInteger totalCount = 0;\n    if ([self isKindOfClass:[UITableView class]]) {\n        UITableView *tableView = (UITableView *)self;\n\n        for (NSInteger section = 0; section < tableView.numberOfSections; section++) {\n            totalCount += [tableView numberOfRowsInSection:section];\n        }\n    } else if ([self isKindOfClass:[UICollectionView class]]) {\n        UICollectionView *collectionView = (UICollectionView *)self;\n\n        for (NSInteger section = 0; section < collectionView.numberOfSections; section++) {\n            totalCount += [collectionView numberOfItemsInSection:section];\n        }\n    }\n    return totalCount;\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h",
    "content": "// 代码地址: https://github.com/CoderMJLee/MJRefresh\n// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  UIView+Extension.h\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 14-5-28.\n//  Copyright (c) 2014年 小码哥. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface UIView (MJExtension)\n@property (assign, nonatomic) CGFloat mj_x;\n@property (assign, nonatomic) CGFloat mj_y;\n@property (assign, nonatomic) CGFloat mj_w;\n@property (assign, nonatomic) CGFloat mj_h;\n@property (assign, nonatomic) CGSize mj_size;\n@property (assign, nonatomic) CGPoint mj_origin;\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m",
    "content": "//  代码地址: https://github.com/CoderMJLee/MJRefresh\n//  代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000\n//  UIView+Extension.m\n//  MJRefreshExample\n//\n//  Created by MJ Lee on 14-5-28.\n//  Copyright (c) 2014年 小码哥. All rights reserved.\n//\n\n#import \"UIView+MJExtension.h\"\n\n@implementation UIView (MJExtension)\n- (void)setMj_x:(CGFloat)mj_x\n{\n    CGRect frame = self.frame;\n    frame.origin.x = mj_x;\n    self.frame = frame;\n}\n\n- (CGFloat)mj_x\n{\n    return self.frame.origin.x;\n}\n\n- (void)setMj_y:(CGFloat)mj_y\n{\n    CGRect frame = self.frame;\n    frame.origin.y = mj_y;\n    self.frame = frame;\n}\n\n- (CGFloat)mj_y\n{\n    return self.frame.origin.y;\n}\n\n- (void)setMj_w:(CGFloat)mj_w\n{\n    CGRect frame = self.frame;\n    frame.size.width = mj_w;\n    self.frame = frame;\n}\n\n- (CGFloat)mj_w\n{\n    return self.frame.size.width;\n}\n\n- (void)setMj_h:(CGFloat)mj_h\n{\n    CGRect frame = self.frame;\n    frame.size.height = mj_h;\n    self.frame = frame;\n}\n\n- (CGFloat)mj_h\n{\n    return self.frame.size.height;\n}\n\n- (void)setMj_size:(CGSize)mj_size\n{\n    CGRect frame = self.frame;\n    frame.size = mj_size;\n    self.frame = frame;\n}\n\n- (CGSize)mj_size\n{\n    return self.frame.size;\n}\n\n- (void)setMj_origin:(CGPoint)mj_origin\n{\n    CGRect frame = self.frame;\n    frame.origin = mj_origin;\n    self.frame = frame;\n}\n\n- (CGPoint)mj_origin\n{\n    return self.frame.origin;\n}\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/MJRefresh/README.md",
    "content": "## MJRefresh\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n![podversion](https://img.shields.io/cocoapods/v/MJRefresh.svg)\n\n* An easy way to use pull-to-refresh\n\n[📜✍🏻**Release Notes**: more details](https://github.com/CoderMJLee/MJRefresh/releases)\n\n## Contents\n* Getting Started\n    * [Features【Support what kinds of controls to refresh】](#Support_what_kinds_of_controls_to_refresh)\n    * [Installation【How to use MJRefresh】](#How_to_use_MJRefresh)\n    * [Who's using【More than hundreds of Apps are using MJRefresh】](#More_than_hundreds_of_Apps_are_using_MJRefresh)\n    * [Classes【The Class Structure Chart of MJRefresh】](#The_Class_Structure_Chart_of_MJRefresh)\n* Comment API\n\t* [MJRefreshComponent.h](#MJRefreshComponent.h)\n\t* [MJRefreshHeader.h](#MJRefreshHeader.h)\n\t* [MJRefreshFooter.h](#MJRefreshFooter.h)\n\t* [MJRefreshAutoFooter.h](#MJRefreshAutoFooter.h)\n* Examples\n    * [Reference](#Reference)\n    * [The drop-down refresh 01-Default](#The_drop-down_refresh_01-Default)\n    * [The drop-down refresh 02-Animation image](#The_drop-down_refresh_02-Animation_image)\n    * [The drop-down refresh 03-Hide the time](#The_drop-down_refresh_03-Hide_the_time)\n    * [The drop-down refresh 04-Hide status and time](#The_drop-down_refresh_04-Hide_status_and_time)\n    * [The drop-down refresh 05-DIY title](#The_drop-down_refresh_05-DIY_title)\n    * [The drop-down refresh 06-DIY the control of refresh](#The_drop-down_refresh_06-DIY_the_control_of_refresh)\n    * [The pull to refresh 01-Default](#The_pull_to_refresh_01-Default)\n    * [The pull to refresh 02-Animation image](#The_pull_to_refresh_02-Animation_image)\n    * [The pull to refresh 03-Hide the title of refresh status](#The_pull_to_refresh_03-Hide_the_title_of_refresh_status)\n    * [The pull to refresh 04-All loaded](#The_pull_to_refresh_04-All_loaded)\n    * [The pull to refresh 05-DIY title](#The_pull_to_refresh_05-DIY_title)\n    * [The pull to refresh 06-Hidden After loaded](#The_pull_to_refresh_06-Hidden_After_loaded)\n    * [The pull to refresh 07-Automatic back of the pull01](#The_pull_to_refresh_07-Automatic_back_of_the_pull01)\n    * [The pull to refresh 08-Automatic back of the pull02](#The_pull_to_refresh_08-Automatic_back_of_the_pull02)\n    * [The pull to refresh 09-DIY the control of refresh(Automatic refresh)](#The_pull_to_refresh_09-DIY_the_control_of_refresh(Automatic_refresh))\n    * [The pull to refresh 10-DIY the control of refresh(Automatic back)](#The_pull_to_refresh_10-DIY_the_control_of_refresh(Automatic_back))\n    * [UICollectionView01-The pull and drop-down refresh](#UICollectionView01-The_pull_and_drop-down_refresh)\n    * [WKWebView01-The drop-down refresh](#WKWebView01-The_drop-down_refresh)\n* [Hope](#Hope)\n\n## <a id=\"Support_what_kinds_of_controls_to_refresh\"></a>Support what kinds of controls to refresh\n* `UIScrollView`、`UITableView`、`UICollectionView`、`WKWebView`\n\n## <a id=\"How_to_use_MJRefresh\"></a>How to use MJRefresh\n* Installation with CocoaPods：`pod 'MJRefresh'`\n* Installation with [Carthage](https://github.com/Carthage/Carthage)：`github \"CoderMJLee/MJRefresh\"`\n* Manual import：\n    * Drag All files in the `MJRefresh` folder to project\n    * Import the main file：`#import \"MJRefresh.h\"`\n\n```objc\nBase                        Custom\nMJRefresh.bundle            MJRefresh.h\nMJRefreshConst.h            MJRefreshConst.m\nUIScrollView+MJExtension.h  UIScrollView+MJExtension.m\nUIScrollView+MJRefresh.h    UIScrollView+MJRefresh.m\nUIView+MJExtension.h        UIView+MJExtension.m\n```\n\n## <a id=\"More_than_hundreds_of_Apps_are_using_MJRefresh\"></a>More than hundreds of Apps are using MJRefresh\n<img src=\"http://images0.cnblogs.com/blog2015/497279/201506/141212365041650.png\" width=\"200\" height=\"300\">\n* More information of App can focus on：[M了个J-博客园](http://www.cnblogs.com/mjios/p/4409853.html)\n\n## <a id=\"The_Class_Structure_Chart_of_MJRefresh\"></a>The Class Structure Chart of MJRefresh\n![](http://images0.cnblogs.com/blog2015/497279/201506/132232456139177.png)\n- `The class of red text` in the chart：You can use them directly\n    - The drop-down refresh control types\n        - Normal：`MJRefreshNormalHeader`\n        - Gif：`MJRefreshGifHeader`\n    - The pull to refresh control types\n        - Auto refresh\n            - Normal：`MJRefreshAutoNormalFooter`\n            - Gif：`MJRefreshAutoGifFooter`\n        - Auto Back\n            - Normal：`MJRefreshBackNormalFooter`\n            - Gif：`MJRefreshBackGifFooter`\n- `The class of non-red text` in the chart：For inheritance，to use DIY the control of refresh\n- About how to DIY the control of refresh，You can refer the Class in below Chart<br>\n<img src=\"http://images0.cnblogs.com/blog2015/497279/201506/141358159107893.png\" width=\"30%\" height=\"30%\">\n\n## <a id=\"MJRefreshComponent.h\"></a>MJRefreshComponent.h\n```objc\n/** The Base Class of refresh control */\n@interface MJRefreshComponent : UIView\n#pragma mark -  Control the state of Refresh \n\n/** BeginRefreshing */\n- (void)beginRefreshing;\n/** EndRefreshing */\n- (void)endRefreshing; \n/** IsRefreshing */\n- (BOOL)isRefreshing;\n\n#pragma mark - Other\n/** According to the drag ratio to change alpha automatically */\n@property (assign, nonatomic, getter=isAutomaticallyChangeAlpha) BOOL automaticallyChangeAlpha;\n@end\n```\n\n## <a id=\"MJRefreshHeader.h\"></a>MJRefreshHeader.h\n```objc\n@interface MJRefreshHeader : MJRefreshComponent\n/** Creat header */\n+ (instancetype)headerWithRefreshingBlock:(MJRefreshComponentRefreshingBlock)refreshingBlock;\n/** Creat header */\n+ (instancetype)headerWithRefreshingTarget:(id)target refreshingAction:(SEL)action;\n\n/** This key is used to storage the time that the last time of drown-down successfully */\n@property (copy, nonatomic) NSString *lastUpdatedTimeKey;\n/** The last time of drown-down successfully */\n@property (strong, nonatomic, readonly) NSDate *lastUpdatedTime;\n\n/** Ignored scrollView contentInset top */\n@property (assign, nonatomic) CGFloat ignoredScrollViewContentInsetTop;\n@end\n```\n\n## <a id=\"MJRefreshFooter.h\"></a>MJRefreshFooter.h\n```objc\n@interface MJRefreshFooter : MJRefreshComponent\n/** Creat footer */\n+ (instancetype)footerWithRefreshingBlock:(MJRefreshComponentRefreshingBlock)refreshingBlock;\n/** Creat footer */\n+ (instancetype)footerWithRefreshingTarget:(id)target refreshingAction:(SEL)action;\n\n/** NoticeNoMoreData */\n- (void)noticeNoMoreData;\n/** ResetNoMoreData（Clear the status of NoMoreData ） */\n- (void)resetNoMoreData;\n\n/** Ignored scrollView contentInset bottom */\n@property (assign, nonatomic) CGFloat ignoredScrollViewContentInsetBottom;\n@end\n```\n\n## <a id=\"MJRefreshAutoFooter.h\"></a>MJRefreshAutoFooter.h\n```objc\n@interface MJRefreshAutoFooter : MJRefreshFooter\n/** Is Automatically Refresh(Default is Yes) */\n@property (assign, nonatomic, getter=isAutomaticallyRefresh) BOOL automaticallyRefresh;\n\n/** When there is much at the bottom of the control is automatically refresh(Default is 1.0，Is at the bottom of the control appears in full, will refresh automatically) */\n@property (assign, nonatomic) CGFloat triggerAutomaticallyRefreshPercent;\n@end\n```\n\n## <a id=\"Reference\"></a>Reference\n```objc\n* Due to there are more functions of this framework，Don't write specific text describe its usage\n* You can directly reference examples MJTableViewController、MJCollectionViewController、MJWebViewController，More intuitive and fast.\n```\n<img src=\"http://images0.cnblogs.com/blog2015/497279/201506/141345470048120.png\" width=\"30%\" height=\"30%\">\n\n## <a id=\"The_drop-down_refresh_01-Default\"></a>The drop-down refresh 01-Default\n\n```objc\nself.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{\n   //Call this Block When enter the refresh status automatically \n}];\n或\n// Set the callback（Once you enter the refresh status，then call the action of target，that is call [self loadNewData]）\nself.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingTarget:self refreshingAction:@selector(loadNewData)];\n\n// Enter the refresh status immediately\n[self.tableView.mj_header beginRefreshing];\n```\n![(下拉刷新01-普通)](http://images0.cnblogs.com/blog2015/497279/201506/141204343486151.gif)\n\n## <a id=\"The_drop-down_refresh_02-Animation_image\"></a>The drop-down refresh 02-Animation image\n```objc\n// Set the callback（一Once you enter the refresh status，then call the action of target，that is call [self loadNewData]）\nMJRefreshGifHeader *header = [MJRefreshGifHeader headerWithRefreshingTarget:self refreshingAction:@selector(loadNewData)];\n// Set the ordinary state of animated images\n[header setImages:idleImages forState:MJRefreshStateIdle];\n// Set the pulling state of animated images（Enter the status of refreshing as soon as loosen）\n[header setImages:pullingImages forState:MJRefreshStatePulling];\n// Set the refreshing state of animated images\n[header setImages:refreshingImages forState:MJRefreshStateRefreshing];\n// Set header\nself.tableView.mj_header = header;\n```\n![(下拉刷新02-动画图片)](http://images0.cnblogs.com/blog2015/497279/201506/141204402238389.gif)\n\n## <a id=\"The_drop-down_refresh_03-Hide_the_time\"></a>The drop-down refresh 03-Hide the time\n```objc\n// Hide the time\nheader.lastUpdatedTimeLabel.hidden = YES;\n```\n![(下拉刷新03-隐藏时间)](http://images0.cnblogs.com/blog2015/497279/201506/141204456132944.gif)\n\n## <a id=\"The_drop-down_refresh_04-Hide_status_and_time\"></a>The drop-down refresh 04-Hide status and time\n```objc\n// Hide the time\nheader.lastUpdatedTimeLabel.hidden = YES;\n\n// Hide the status\nheader.stateLabel.hidden = YES;\n```\n![(下拉刷新04-隐藏状态和时间0)](http://images0.cnblogs.com/blog2015/497279/201506/141204508639539.gif)\n\n## <a id=\"The_drop-down_refresh_05-DIY_title\"></a>The drop-down refresh 05-DIY title\n```objc\n// Set title\n[header setTitle:@\"Pull down to refresh\" forState:MJRefreshStateIdle];\n[header setTitle:@\"Release to refresh\" forState:MJRefreshStatePulling];\n[header setTitle:@\"Loading ...\" forState:MJRefreshStateRefreshing];\n\n// Set font\nheader.stateLabel.font = [UIFont systemFontOfSize:15];\nheader.lastUpdatedTimeLabel.font = [UIFont systemFontOfSize:14];\n\n// Set textColor\nheader.stateLabel.textColor = [UIColor redColor];\nheader.lastUpdatedTimeLabel.textColor = [UIColor blueColor];\n```\n![(下拉刷新05-自定义文字)](http://images0.cnblogs.com/blog2015/497279/201506/141204563633593.gif)\n\n## <a id=\"The_drop-down_refresh_06-DIY_the_control_of_refresh\"></a>The drop-down refresh 06-DIY the control of refresh\n```objc\nself.tableView.mj_header = [MJDIYHeader headerWithRefreshingTarget:self refreshingAction:@selector(loadNewData)];\n// Implementation reference to MJDIYHeader.h和MJDIYHeader.m\n```\n![(下拉刷新06-自定义刷新控件)](http://images0.cnblogs.com/blog2015/497279/201506/141205019261159.gif)\n\n## <a id=\"The_pull_to_refresh_01-Default\"></a>The pull to refresh 01-Default\n```objc\nself.tableView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{\n    //Call this Block When enter the refresh status automatically\n}];\n或\n// Set the callback（Once you enter the refresh status，then call the action of target，that is call [self loadMoreData]）\nself.tableView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];\n```\n![(上拉刷新01-默认)](http://images0.cnblogs.com/blog2015/497279/201506/141205090047696.gif)\n\n## <a id=\"The_pull_to_refresh_02-Animation_image\"></a>The pull to refresh 02-Animation image\n```objc\n// Set the callback（Once you enter the refresh status，then call the action of target，that is call [self loadMoreData]）\nMJRefreshAutoGifFooter *footer = [MJRefreshAutoGifFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];\n\n// Set the refresh image\n[footer setImages:refreshingImages forState:MJRefreshStateRefreshing];\n\n// Set footer\nself.tableView.mj_footer = footer;\n```\n![(上拉刷新02-动画图片)](http://images0.cnblogs.com/blog2015/497279/201506/141205141445793.gif)\n\n## <a id=\"The_pull_to_refresh_03-Hide_the_title_of_refresh_status\"></a>The pull to refresh 03-Hide the title of refresh status\n```objc\n// Hide the title of refresh status\nfooter.refreshingTitleHidden = YES;\n// If does have not above method，then use footer.stateLabel.hidden = YES;\n```\n![(上拉刷新03-隐藏刷新状态的文字)](http://images0.cnblogs.com/blog2015/497279/201506/141205200985774.gif)\n\n## <a id=\"The_pull_to_refresh_04-All_loaded\"></a>The pull to refresh 04-All loaded\n```objc\n//Become the status of NoMoreData\n[footer noticeNoMoreData];\n```\n![(上拉刷新04-全部加载完毕)](http://images0.cnblogs.com/blog2015/497279/201506/141205248634686.gif)\n\n## <a id=\"The_pull_to_refresh_05-DIY_title\"></a>The pull to refresh 05-DIY title\n```objc\n// Set title\n[footer setTitle:@\"Click or drag up to refresh\" forState:MJRefreshStateIdle];\n[footer setTitle:@\"Loading more ...\" forState:MJRefreshStateRefreshing];\n[footer setTitle:@\"No more data\" forState:MJRefreshStateNoMoreData];\n\n// Set font\nfooter.stateLabel.font = [UIFont systemFontOfSize:17];\n\n// Set textColor\nfooter.stateLabel.textColor = [UIColor blueColor];\n```\n![(上拉刷新05-自定义文字)](http://images0.cnblogs.com/blog2015/497279/201506/141205295511153.gif)\n\n## <a id=\"The_pull_to_refresh_06-Hidden_After_loaded\"></a>The pull to refresh 06-Hidden After loaded\n```objc\n//Hidden current control of the pull to refresh\nself.tableView.mj_footer.hidden = YES;\n```\n![(上拉刷新06-加载后隐藏)](http://images0.cnblogs.com/blog2015/497279/201506/141205343481821.gif)\n\n## <a id=\"The_pull_to_refresh_07-Automatic_back_of_the_pull01\"></a>The pull to refresh 07-Automatic back of the pull01\n```objc\nself.tableView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];\n```\n![(上拉刷新07-自动回弹的上拉01)](http://images0.cnblogs.com/blog2015/497279/201506/141205392239231.gif)\n\n## <a id=\"The_pull_to_refresh_08-Automatic_back_of_the_pull02\"></a>The pull to refresh 08-Automatic back of the pull02\n```objc\nMJRefreshBackGifFooter *footer = [MJRefreshBackGifFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];\n\n// Set the normal state of the animated image\n[footer setImages:idleImages forState:MJRefreshStateIdle];\n//  Set the pulling state of animated images（Enter the status of refreshing as soon as loosen）\n[footer setImages:pullingImages forState:MJRefreshStatePulling];\n// Set the refreshing state of animated images\n[footer setImages:refreshingImages forState:MJRefreshStateRefreshing];\n\n// Set footer\nself.tableView.mj_footer = footer;\n```\n![(上拉刷新07-自动回弹的上拉02)](http://images0.cnblogs.com/blog2015/497279/201506/141205441443628.gif)\n\n## <a id=\"The_pull_to_refresh_09-DIY_the_control_of_refresh(Automatic_refresh)\"></a>The pull to refresh 09-DIY the control of refresh(Automatic refresh)\n```objc\nself.tableView.mj_footer = [MJDIYAutoFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];\n// Implementation reference to MJDIYAutoFooter.h和MJDIYAutoFooter.m\n```\n![(上拉刷新09-自定义刷新控件(自动刷新))](http://images0.cnblogs.com/blog2015/497279/201506/141205500195866.gif)\n\n## <a id=\"The_pull_to_refresh_10-DIY_the_control_of_refresh(Automatic_back)\"></a>The pull to refresh 10-DIY the control of refresh(Automatic back)\n```objc\nself.tableView.mj_footer = [MJDIYBackFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];\n// Implementation reference to MJDIYBackFooter.h和MJDIYBackFooter.m\n```\n![(上拉刷新10-自定义刷新控件(自动回弹))](http://images0.cnblogs.com/blog2015/497279/201506/141205560666819.gif)\n\n## <a id=\"UICollectionView01-The_pull_and_drop-down_refresh\"></a>UICollectionView01-The pull and drop-down refresh\n```objc\n// The drop-down refresh\nself.collectionView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{\n   //Call this Block When enter the refresh status automatically \n}];\n\n// The pull to refresh\nself.collectionView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{\n   //Call this Block When enter the refresh status automatically\n}];\n```\n![(UICollectionView01-上下拉刷新)](http://images0.cnblogs.com/blog2015/497279/201506/141206021603758.gif)\n\n## <a id=\"WKWebView01-The_drop-down_refresh\"></a>WKWebView01-The drop-down refresh\n```objc\n//Add the control of The drop-down refresh\nself.webView.scrollView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{\n   //Call this Block When enter the refresh status automatically\n}];\n```\n![(UICollectionView01-上下拉刷新)](http://images0.cnblogs.com/blog2015/497279/201506/141206080514524.gif)\n\n## Remind\n* ARC\n* iOS>=8.0\n* iPhone \\ iPad screen anyway\n\n## 寻求志同道合的小伙伴\n\n- 因本人工作忙，没有太多时间去维护MJRefresh，在此向广大框架使用者说声：非常抱歉！😞\n- 现寻求志同道合的小伙伴一起维护此框架，有兴趣的小伙伴可以[发邮件](mailto:richermj123go@vip.qq.com)给我，非常感谢😊\n- 如果一切OK，我将开放框架维护权限（github、pod等）\n- 目前已经找到3位小伙伴(＾－＾)V\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/LICENSE",
    "content": "Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASCompositeConstraint.h",
    "content": "//\n//  MASCompositeConstraint.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 21/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASConstraint.h\"\n#import \"MASUtilities.h\"\n\n/**\n *\tA group of MASConstraint objects\n */\n@interface MASCompositeConstraint : MASConstraint\n\n/**\n *\tCreates a composite with a predefined array of children\n *\n *\t@param\tchildren\tchild MASConstraints\n *\n *\t@return\ta composite constraint\n */\n- (id)initWithChildren:(NSArray *)children;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASCompositeConstraint.m",
    "content": "//\n//  MASCompositeConstraint.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 21/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASCompositeConstraint.h\"\n#import \"MASConstraint+Private.h\"\n\n@interface MASCompositeConstraint () <MASConstraintDelegate>\n\n@property (nonatomic, strong) id mas_key;\n@property (nonatomic, strong) NSMutableArray *childConstraints;\n\n@end\n\n@implementation MASCompositeConstraint\n\n- (id)initWithChildren:(NSArray *)children {\n    self = [super init];\n    if (!self) return nil;\n\n    _childConstraints = [children mutableCopy];\n    for (MASConstraint *constraint in _childConstraints) {\n        constraint.delegate = self;\n    }\n\n    return self;\n}\n\n#pragma mark - MASConstraintDelegate\n\n- (void)constraint:(MASConstraint *)constraint shouldBeReplacedWithConstraint:(MASConstraint *)replacementConstraint {\n    NSUInteger index = [self.childConstraints indexOfObject:constraint];\n    NSAssert(index != NSNotFound, @\"Could not find constraint %@\", constraint);\n    [self.childConstraints replaceObjectAtIndex:index withObject:replacementConstraint];\n}\n\n- (MASConstraint *)constraint:(MASConstraint __unused *)constraint addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    id<MASConstraintDelegate> strongDelegate = self.delegate;\n    MASConstraint *newConstraint = [strongDelegate constraint:self addConstraintWithLayoutAttribute:layoutAttribute];\n    newConstraint.delegate = self;\n    [self.childConstraints addObject:newConstraint];\n    return newConstraint;\n}\n\n#pragma mark - NSLayoutConstraint multiplier proxies \n\n- (MASConstraint * (^)(CGFloat))multipliedBy {\n    return ^id(CGFloat multiplier) {\n        for (MASConstraint *constraint in self.childConstraints) {\n            constraint.multipliedBy(multiplier);\n        }\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(CGFloat))dividedBy {\n    return ^id(CGFloat divider) {\n        for (MASConstraint *constraint in self.childConstraints) {\n            constraint.dividedBy(divider);\n        }\n        return self;\n    };\n}\n\n#pragma mark - MASLayoutPriority proxy\n\n- (MASConstraint * (^)(MASLayoutPriority))priority {\n    return ^id(MASLayoutPriority priority) {\n        for (MASConstraint *constraint in self.childConstraints) {\n            constraint.priority(priority);\n        }\n        return self;\n    };\n}\n\n#pragma mark - NSLayoutRelation proxy\n\n- (MASConstraint * (^)(id, NSLayoutRelation))equalToWithRelation {\n    return ^id(id attr, NSLayoutRelation relation) {\n        for (MASConstraint *constraint in self.childConstraints.copy) {\n            constraint.equalToWithRelation(attr, relation);\n        }\n        return self;\n    };\n}\n\n#pragma mark - attribute chaining\n\n- (MASConstraint *)addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    [self constraint:self addConstraintWithLayoutAttribute:layoutAttribute];\n    return self;\n}\n\n#pragma mark - Animator proxy\n\n#if TARGET_OS_MAC && !(TARGET_OS_IPHONE || TARGET_OS_TV)\n\n- (MASConstraint *)animator {\n    for (MASConstraint *constraint in self.childConstraints) {\n        [constraint animator];\n    }\n    return self;\n}\n\n#endif\n\n#pragma mark - debug helpers\n\n- (MASConstraint * (^)(id))key {\n    return ^id(id key) {\n        self.mas_key = key;\n        int i = 0;\n        for (MASConstraint *constraint in self.childConstraints) {\n            constraint.key([NSString stringWithFormat:@\"%@[%d]\", key, i++]);\n        }\n        return self;\n    };\n}\n\n#pragma mark - NSLayoutConstraint constant setters\n\n- (void)setInsets:(MASEdgeInsets)insets {\n    for (MASConstraint *constraint in self.childConstraints) {\n        constraint.insets = insets;\n    }\n}\n\n- (void)setInset:(CGFloat)inset {\n    for (MASConstraint *constraint in self.childConstraints) {\n        constraint.inset = inset;\n    }\n}\n\n- (void)setOffset:(CGFloat)offset {\n    for (MASConstraint *constraint in self.childConstraints) {\n        constraint.offset = offset;\n    }\n}\n\n- (void)setSizeOffset:(CGSize)sizeOffset {\n    for (MASConstraint *constraint in self.childConstraints) {\n        constraint.sizeOffset = sizeOffset;\n    }\n}\n\n- (void)setCenterOffset:(CGPoint)centerOffset {\n    for (MASConstraint *constraint in self.childConstraints) {\n        constraint.centerOffset = centerOffset;\n    }\n}\n\n#pragma mark - MASConstraint\n\n- (void)activate {\n    for (MASConstraint *constraint in self.childConstraints) {\n        [constraint activate];\n    }\n}\n\n- (void)deactivate {\n    for (MASConstraint *constraint in self.childConstraints) {\n        [constraint deactivate];\n    }\n}\n\n- (void)install {\n    for (MASConstraint *constraint in self.childConstraints) {\n        constraint.updateExisting = self.updateExisting;\n        [constraint install];\n    }\n}\n\n- (void)uninstall {\n    for (MASConstraint *constraint in self.childConstraints) {\n        [constraint uninstall];\n    }\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASConstraint+Private.h",
    "content": "//\n//  MASConstraint+Private.h\n//  Masonry\n//\n//  Created by Nick Tymchenko on 29/04/14.\n//  Copyright (c) 2014 cloudling. All rights reserved.\n//\n\n#import \"MASConstraint.h\"\n\n@protocol MASConstraintDelegate;\n\n\n@interface MASConstraint ()\n\n/**\n *  Whether or not to check for an existing constraint instead of adding constraint\n */\n@property (nonatomic, assign) BOOL updateExisting;\n\n/**\n *\tUsually MASConstraintMaker but could be a parent MASConstraint\n */\n@property (nonatomic, weak) id<MASConstraintDelegate> delegate;\n\n/**\n *  Based on a provided value type, is equal to calling:\n *  NSNumber - setOffset:\n *  NSValue with CGPoint - setPointOffset:\n *  NSValue with CGSize - setSizeOffset:\n *  NSValue with MASEdgeInsets - setInsets:\n */\n- (void)setLayoutConstantWithValue:(NSValue *)value;\n\n@end\n\n\n@interface MASConstraint (Abstract)\n\n/**\n *\tSets the constraint relation to given NSLayoutRelation\n *  returns a block which accepts one of the following:\n *    MASViewAttribute, UIView, NSValue, NSArray\n *  see readme for more details.\n */\n- (MASConstraint * (^)(id, NSLayoutRelation))equalToWithRelation;\n\n/**\n *\tOverride to set a custom chaining behaviour\n */\n- (MASConstraint *)addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute;\n\n@end\n\n\n@protocol MASConstraintDelegate <NSObject>\n\n/**\n *\tNotifies the delegate when the constraint needs to be replaced with another constraint. For example\n *  A MASViewConstraint may turn into a MASCompositeConstraint when an array is passed to one of the equality blocks\n */\n- (void)constraint:(MASConstraint *)constraint shouldBeReplacedWithConstraint:(MASConstraint *)replacementConstraint;\n\n- (MASConstraint *)constraint:(MASConstraint *)constraint addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASConstraint.h",
    "content": "//\n//  MASConstraint.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 22/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASUtilities.h\"\n\n/**\n *\tEnables Constraints to be created with chainable syntax\n *  Constraint can represent single NSLayoutConstraint (MASViewConstraint) \n *  or a group of NSLayoutConstraints (MASComposisteConstraint)\n */\n@interface MASConstraint : NSObject\n\n// Chaining Support\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeTop, NSLayoutAttributeLeft, NSLayoutAttributeBottom, NSLayoutAttributeRight\n */\n- (MASConstraint * (^)(MASEdgeInsets insets))insets;\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeTop, NSLayoutAttributeLeft, NSLayoutAttributeBottom, NSLayoutAttributeRight\n */\n- (MASConstraint * (^)(CGFloat inset))inset;\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeWidth, NSLayoutAttributeHeight\n */\n- (MASConstraint * (^)(CGSize offset))sizeOffset;\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeCenterX, NSLayoutAttributeCenterY\n */\n- (MASConstraint * (^)(CGPoint offset))centerOffset;\n\n/**\n *\tModifies the NSLayoutConstraint constant\n */\n- (MASConstraint * (^)(CGFloat offset))offset;\n\n/**\n *  Modifies the NSLayoutConstraint constant based on a value type\n */\n- (MASConstraint * (^)(NSValue *value))valueOffset;\n\n/**\n *\tSets the NSLayoutConstraint multiplier property\n */\n- (MASConstraint * (^)(CGFloat multiplier))multipliedBy;\n\n/**\n *\tSets the NSLayoutConstraint multiplier to 1.0/dividedBy\n */\n- (MASConstraint * (^)(CGFloat divider))dividedBy;\n\n/**\n *\tSets the NSLayoutConstraint priority to a float or MASLayoutPriority\n */\n- (MASConstraint * (^)(MASLayoutPriority priority))priority;\n\n/**\n *\tSets the NSLayoutConstraint priority to MASLayoutPriorityLow\n */\n- (MASConstraint * (^)(void))priorityLow;\n\n/**\n *\tSets the NSLayoutConstraint priority to MASLayoutPriorityMedium\n */\n- (MASConstraint * (^)(void))priorityMedium;\n\n/**\n *\tSets the NSLayoutConstraint priority to MASLayoutPriorityHigh\n */\n- (MASConstraint * (^)(void))priorityHigh;\n\n/**\n *\tSets the constraint relation to NSLayoutRelationEqual\n *  returns a block which accepts one of the following:\n *    MASViewAttribute, UIView, NSValue, NSArray\n *  see readme for more details.\n */\n- (MASConstraint * (^)(id attr))equalTo;\n\n/**\n *\tSets the constraint relation to NSLayoutRelationGreaterThanOrEqual\n *  returns a block which accepts one of the following:\n *    MASViewAttribute, UIView, NSValue, NSArray\n *  see readme for more details.\n */\n- (MASConstraint * (^)(id attr))greaterThanOrEqualTo;\n\n/**\n *\tSets the constraint relation to NSLayoutRelationLessThanOrEqual\n *  returns a block which accepts one of the following:\n *    MASViewAttribute, UIView, NSValue, NSArray\n *  see readme for more details.\n */\n- (MASConstraint * (^)(id attr))lessThanOrEqualTo;\n\n/**\n *\tOptional semantic property which has no effect but improves the readability of constraint\n */\n- (MASConstraint *)with;\n\n/**\n *\tOptional semantic property which has no effect but improves the readability of constraint\n */\n- (MASConstraint *)and;\n\n/**\n *\tCreates a new MASCompositeConstraint with the called attribute and reciever\n */\n- (MASConstraint *)left;\n- (MASConstraint *)top;\n- (MASConstraint *)right;\n- (MASConstraint *)bottom;\n- (MASConstraint *)leading;\n- (MASConstraint *)trailing;\n- (MASConstraint *)width;\n- (MASConstraint *)height;\n- (MASConstraint *)centerX;\n- (MASConstraint *)centerY;\n- (MASConstraint *)baseline;\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n- (MASConstraint *)firstBaseline;\n- (MASConstraint *)lastBaseline;\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n- (MASConstraint *)leftMargin;\n- (MASConstraint *)rightMargin;\n- (MASConstraint *)topMargin;\n- (MASConstraint *)bottomMargin;\n- (MASConstraint *)leadingMargin;\n- (MASConstraint *)trailingMargin;\n- (MASConstraint *)centerXWithinMargins;\n- (MASConstraint *)centerYWithinMargins;\n\n#endif\n\n\n/**\n *\tSets the constraint debug name\n */\n- (MASConstraint * (^)(id key))key;\n\n// NSLayoutConstraint constant Setters\n// for use outside of mas_updateConstraints/mas_makeConstraints blocks\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeTop, NSLayoutAttributeLeft, NSLayoutAttributeBottom, NSLayoutAttributeRight\n */\n- (void)setInsets:(MASEdgeInsets)insets;\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeTop, NSLayoutAttributeLeft, NSLayoutAttributeBottom, NSLayoutAttributeRight\n */\n- (void)setInset:(CGFloat)inset;\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeWidth, NSLayoutAttributeHeight\n */\n- (void)setSizeOffset:(CGSize)sizeOffset;\n\n/**\n *\tModifies the NSLayoutConstraint constant,\n *  only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following\n *  NSLayoutAttributeCenterX, NSLayoutAttributeCenterY\n */\n- (void)setCenterOffset:(CGPoint)centerOffset;\n\n/**\n *\tModifies the NSLayoutConstraint constant\n */\n- (void)setOffset:(CGFloat)offset;\n\n\n// NSLayoutConstraint Installation support\n\n#if TARGET_OS_MAC && !(TARGET_OS_IPHONE || TARGET_OS_TV)\n/**\n *  Whether or not to go through the animator proxy when modifying the constraint\n */\n@property (nonatomic, copy, readonly) MASConstraint *animator;\n#endif\n\n/**\n *  Activates an NSLayoutConstraint if it's supported by an OS. \n *  Invokes install otherwise.\n */\n- (void)activate;\n\n/**\n *  Deactivates previously installed/activated NSLayoutConstraint.\n */\n- (void)deactivate;\n\n/**\n *\tCreates a NSLayoutConstraint and adds it to the appropriate view.\n */\n- (void)install;\n\n/**\n *\tRemoves previously installed NSLayoutConstraint\n */\n- (void)uninstall;\n\n@end\n\n\n/**\n *  Convenience auto-boxing macros for MASConstraint methods.\n *\n *  Defining MAS_SHORTHAND_GLOBALS will turn on auto-boxing for default syntax.\n *  A potential drawback of this is that the unprefixed macros will appear in global scope.\n */\n#define mas_equalTo(...)                 equalTo(MASBoxValue((__VA_ARGS__)))\n#define mas_greaterThanOrEqualTo(...)    greaterThanOrEqualTo(MASBoxValue((__VA_ARGS__)))\n#define mas_lessThanOrEqualTo(...)       lessThanOrEqualTo(MASBoxValue((__VA_ARGS__)))\n\n#define mas_offset(...)                  valueOffset(MASBoxValue((__VA_ARGS__)))\n\n\n#ifdef MAS_SHORTHAND_GLOBALS\n\n#define equalTo(...)                     mas_equalTo(__VA_ARGS__)\n#define greaterThanOrEqualTo(...)        mas_greaterThanOrEqualTo(__VA_ARGS__)\n#define lessThanOrEqualTo(...)           mas_lessThanOrEqualTo(__VA_ARGS__)\n\n#define offset(...)                      mas_offset(__VA_ARGS__)\n\n#endif\n\n\n@interface MASConstraint (AutoboxingSupport)\n\n/**\n *  Aliases to corresponding relation methods (for shorthand macros)\n *  Also needed to aid autocompletion\n */\n- (MASConstraint * (^)(id attr))mas_equalTo;\n- (MASConstraint * (^)(id attr))mas_greaterThanOrEqualTo;\n- (MASConstraint * (^)(id attr))mas_lessThanOrEqualTo;\n\n/**\n *  A dummy method to aid autocompletion\n */\n- (MASConstraint * (^)(id offset))mas_offset;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASConstraint.m",
    "content": "//\n//  MASConstraint.m\n//  Masonry\n//\n//  Created by Nick Tymchenko on 1/20/14.\n//\n\n#import \"MASConstraint.h\"\n#import \"MASConstraint+Private.h\"\n\n#define MASMethodNotImplemented() \\\n    @throw [NSException exceptionWithName:NSInternalInconsistencyException \\\n                                   reason:[NSString stringWithFormat:@\"You must override %@ in a subclass.\", NSStringFromSelector(_cmd)] \\\n                                 userInfo:nil]\n\n@implementation MASConstraint\n\n#pragma mark - Init\n\n- (id)init {\n\tNSAssert(![self isMemberOfClass:[MASConstraint class]], @\"MASConstraint is an abstract class, you should not instantiate it directly.\");\n\treturn [super init];\n}\n\n#pragma mark - NSLayoutRelation proxies\n\n- (MASConstraint * (^)(id))equalTo {\n    return ^id(id attribute) {\n        return self.equalToWithRelation(attribute, NSLayoutRelationEqual);\n    };\n}\n\n- (MASConstraint * (^)(id))mas_equalTo {\n    return ^id(id attribute) {\n        return self.equalToWithRelation(attribute, NSLayoutRelationEqual);\n    };\n}\n\n- (MASConstraint * (^)(id))greaterThanOrEqualTo {\n    return ^id(id attribute) {\n        return self.equalToWithRelation(attribute, NSLayoutRelationGreaterThanOrEqual);\n    };\n}\n\n- (MASConstraint * (^)(id))mas_greaterThanOrEqualTo {\n    return ^id(id attribute) {\n        return self.equalToWithRelation(attribute, NSLayoutRelationGreaterThanOrEqual);\n    };\n}\n\n- (MASConstraint * (^)(id))lessThanOrEqualTo {\n    return ^id(id attribute) {\n        return self.equalToWithRelation(attribute, NSLayoutRelationLessThanOrEqual);\n    };\n}\n\n- (MASConstraint * (^)(id))mas_lessThanOrEqualTo {\n    return ^id(id attribute) {\n        return self.equalToWithRelation(attribute, NSLayoutRelationLessThanOrEqual);\n    };\n}\n\n#pragma mark - MASLayoutPriority proxies\n\n- (MASConstraint * (^)(void))priorityLow {\n    return ^id{\n        self.priority(MASLayoutPriorityDefaultLow);\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(void))priorityMedium {\n    return ^id{\n        self.priority(MASLayoutPriorityDefaultMedium);\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(void))priorityHigh {\n    return ^id{\n        self.priority(MASLayoutPriorityDefaultHigh);\n        return self;\n    };\n}\n\n#pragma mark - NSLayoutConstraint constant proxies\n\n- (MASConstraint * (^)(MASEdgeInsets))insets {\n    return ^id(MASEdgeInsets insets){\n        self.insets = insets;\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(CGFloat))inset {\n    return ^id(CGFloat inset){\n        self.inset = inset;\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(CGSize))sizeOffset {\n    return ^id(CGSize offset) {\n        self.sizeOffset = offset;\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(CGPoint))centerOffset {\n    return ^id(CGPoint offset) {\n        self.centerOffset = offset;\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(CGFloat))offset {\n    return ^id(CGFloat offset){\n        self.offset = offset;\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(NSValue *value))valueOffset {\n    return ^id(NSValue *offset) {\n        NSAssert([offset isKindOfClass:NSValue.class], @\"expected an NSValue offset, got: %@\", offset);\n        [self setLayoutConstantWithValue:offset];\n        return self;\n    };\n}\n\n- (MASConstraint * (^)(id offset))mas_offset {\n    // Will never be called due to macro\n    return nil;\n}\n\n#pragma mark - NSLayoutConstraint constant setter\n\n- (void)setLayoutConstantWithValue:(NSValue *)value {\n    if ([value isKindOfClass:NSNumber.class]) {\n        self.offset = [(NSNumber *)value doubleValue];\n    } else if (strcmp(value.objCType, @encode(CGPoint)) == 0) {\n        CGPoint point;\n        [value getValue:&point];\n        self.centerOffset = point;\n    } else if (strcmp(value.objCType, @encode(CGSize)) == 0) {\n        CGSize size;\n        [value getValue:&size];\n        self.sizeOffset = size;\n    } else if (strcmp(value.objCType, @encode(MASEdgeInsets)) == 0) {\n        MASEdgeInsets insets;\n        [value getValue:&insets];\n        self.insets = insets;\n    } else {\n        NSAssert(NO, @\"attempting to set layout constant with unsupported value: %@\", value);\n    }\n}\n\n#pragma mark - Semantic properties\n\n- (MASConstraint *)with {\n    return self;\n}\n\n- (MASConstraint *)and {\n    return self;\n}\n\n#pragma mark - Chaining\n\n- (MASConstraint *)addConstraintWithLayoutAttribute:(NSLayoutAttribute __unused)layoutAttribute {\n    MASMethodNotImplemented();\n}\n\n- (MASConstraint *)left {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeft];\n}\n\n- (MASConstraint *)top {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTop];\n}\n\n- (MASConstraint *)right {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeRight];\n}\n\n- (MASConstraint *)bottom {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeBottom];\n}\n\n- (MASConstraint *)leading {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeading];\n}\n\n- (MASConstraint *)trailing {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTrailing];\n}\n\n- (MASConstraint *)width {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeWidth];\n}\n\n- (MASConstraint *)height {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeHeight];\n}\n\n- (MASConstraint *)centerX {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterX];\n}\n\n- (MASConstraint *)centerY {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterY];\n}\n\n- (MASConstraint *)baseline {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeBaseline];\n}\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n- (MASConstraint *)firstBaseline {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeFirstBaseline];\n}\n- (MASConstraint *)lastBaseline {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLastBaseline];\n}\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n- (MASConstraint *)leftMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeftMargin];\n}\n\n- (MASConstraint *)rightMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeRightMargin];\n}\n\n- (MASConstraint *)topMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTopMargin];\n}\n\n- (MASConstraint *)bottomMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeBottomMargin];\n}\n\n- (MASConstraint *)leadingMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeadingMargin];\n}\n\n- (MASConstraint *)trailingMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTrailingMargin];\n}\n\n- (MASConstraint *)centerXWithinMargins {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterXWithinMargins];\n}\n\n- (MASConstraint *)centerYWithinMargins {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterYWithinMargins];\n}\n\n#endif\n\n#pragma mark - Abstract\n\n- (MASConstraint * (^)(CGFloat multiplier))multipliedBy { MASMethodNotImplemented(); }\n\n- (MASConstraint * (^)(CGFloat divider))dividedBy { MASMethodNotImplemented(); }\n\n- (MASConstraint * (^)(MASLayoutPriority priority))priority { MASMethodNotImplemented(); }\n\n- (MASConstraint * (^)(id, NSLayoutRelation))equalToWithRelation { MASMethodNotImplemented(); }\n\n- (MASConstraint * (^)(id key))key { MASMethodNotImplemented(); }\n\n- (void)setInsets:(MASEdgeInsets __unused)insets { MASMethodNotImplemented(); }\n\n- (void)setInset:(CGFloat __unused)inset { MASMethodNotImplemented(); }\n\n- (void)setSizeOffset:(CGSize __unused)sizeOffset { MASMethodNotImplemented(); }\n\n- (void)setCenterOffset:(CGPoint __unused)centerOffset { MASMethodNotImplemented(); }\n\n- (void)setOffset:(CGFloat __unused)offset { MASMethodNotImplemented(); }\n\n#if TARGET_OS_MAC && !(TARGET_OS_IPHONE || TARGET_OS_TV)\n\n- (MASConstraint *)animator { MASMethodNotImplemented(); }\n\n#endif\n\n- (void)activate { MASMethodNotImplemented(); }\n\n- (void)deactivate { MASMethodNotImplemented(); }\n\n- (void)install { MASMethodNotImplemented(); }\n\n- (void)uninstall { MASMethodNotImplemented(); }\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASConstraintMaker.h",
    "content": "//\n//  MASConstraintMaker.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASConstraint.h\"\n#import \"MASUtilities.h\"\n\ntypedef NS_OPTIONS(NSInteger, MASAttribute) {\n    MASAttributeLeft = 1 << NSLayoutAttributeLeft,\n    MASAttributeRight = 1 << NSLayoutAttributeRight,\n    MASAttributeTop = 1 << NSLayoutAttributeTop,\n    MASAttributeBottom = 1 << NSLayoutAttributeBottom,\n    MASAttributeLeading = 1 << NSLayoutAttributeLeading,\n    MASAttributeTrailing = 1 << NSLayoutAttributeTrailing,\n    MASAttributeWidth = 1 << NSLayoutAttributeWidth,\n    MASAttributeHeight = 1 << NSLayoutAttributeHeight,\n    MASAttributeCenterX = 1 << NSLayoutAttributeCenterX,\n    MASAttributeCenterY = 1 << NSLayoutAttributeCenterY,\n    MASAttributeBaseline = 1 << NSLayoutAttributeBaseline,\n    \n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n    \n    MASAttributeFirstBaseline = 1 << NSLayoutAttributeFirstBaseline,\n    MASAttributeLastBaseline = 1 << NSLayoutAttributeLastBaseline,\n    \n#endif\n    \n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n    \n    MASAttributeLeftMargin = 1 << NSLayoutAttributeLeftMargin,\n    MASAttributeRightMargin = 1 << NSLayoutAttributeRightMargin,\n    MASAttributeTopMargin = 1 << NSLayoutAttributeTopMargin,\n    MASAttributeBottomMargin = 1 << NSLayoutAttributeBottomMargin,\n    MASAttributeLeadingMargin = 1 << NSLayoutAttributeLeadingMargin,\n    MASAttributeTrailingMargin = 1 << NSLayoutAttributeTrailingMargin,\n    MASAttributeCenterXWithinMargins = 1 << NSLayoutAttributeCenterXWithinMargins,\n    MASAttributeCenterYWithinMargins = 1 << NSLayoutAttributeCenterYWithinMargins,\n\n#endif\n    \n};\n\n/**\n *  Provides factory methods for creating MASConstraints.\n *  Constraints are collected until they are ready to be installed\n *\n */\n@interface MASConstraintMaker : NSObject\n\n/**\n *\tThe following properties return a new MASViewConstraint\n *  with the first item set to the makers associated view and the appropriate MASViewAttribute\n */\n@property (nonatomic, strong, readonly) MASConstraint *left;\n@property (nonatomic, strong, readonly) MASConstraint *top;\n@property (nonatomic, strong, readonly) MASConstraint *right;\n@property (nonatomic, strong, readonly) MASConstraint *bottom;\n@property (nonatomic, strong, readonly) MASConstraint *leading;\n@property (nonatomic, strong, readonly) MASConstraint *trailing;\n@property (nonatomic, strong, readonly) MASConstraint *width;\n@property (nonatomic, strong, readonly) MASConstraint *height;\n@property (nonatomic, strong, readonly) MASConstraint *centerX;\n@property (nonatomic, strong, readonly) MASConstraint *centerY;\n@property (nonatomic, strong, readonly) MASConstraint *baseline;\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n@property (nonatomic, strong, readonly) MASConstraint *firstBaseline;\n@property (nonatomic, strong, readonly) MASConstraint *lastBaseline;\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n@property (nonatomic, strong, readonly) MASConstraint *leftMargin;\n@property (nonatomic, strong, readonly) MASConstraint *rightMargin;\n@property (nonatomic, strong, readonly) MASConstraint *topMargin;\n@property (nonatomic, strong, readonly) MASConstraint *bottomMargin;\n@property (nonatomic, strong, readonly) MASConstraint *leadingMargin;\n@property (nonatomic, strong, readonly) MASConstraint *trailingMargin;\n@property (nonatomic, strong, readonly) MASConstraint *centerXWithinMargins;\n@property (nonatomic, strong, readonly) MASConstraint *centerYWithinMargins;\n\n#endif\n\n/**\n *  Returns a block which creates a new MASCompositeConstraint with the first item set\n *  to the makers associated view and children corresponding to the set bits in the\n *  MASAttribute parameter. Combine multiple attributes via binary-or.\n */\n@property (nonatomic, strong, readonly) MASConstraint *(^attributes)(MASAttribute attrs);\n\n/**\n *\tCreates a MASCompositeConstraint with type MASCompositeConstraintTypeEdges\n *  which generates the appropriate MASViewConstraint children (top, left, bottom, right)\n *  with the first item set to the makers associated view\n */\n@property (nonatomic, strong, readonly) MASConstraint *edges;\n\n/**\n *\tCreates a MASCompositeConstraint with type MASCompositeConstraintTypeSize\n *  which generates the appropriate MASViewConstraint children (width, height)\n *  with the first item set to the makers associated view\n */\n@property (nonatomic, strong, readonly) MASConstraint *size;\n\n/**\n *\tCreates a MASCompositeConstraint with type MASCompositeConstraintTypeCenter\n *  which generates the appropriate MASViewConstraint children (centerX, centerY)\n *  with the first item set to the makers associated view\n */\n@property (nonatomic, strong, readonly) MASConstraint *center;\n\n/**\n *  Whether or not to check for an existing constraint instead of adding constraint\n */\n@property (nonatomic, assign) BOOL updateExisting;\n\n/**\n *  Whether or not to remove existing constraints prior to installing\n */\n@property (nonatomic, assign) BOOL removeExisting;\n\n/**\n *\tinitialises the maker with a default view\n *\n *\t@param\tview\tany MASConstraint are created with this view as the first item\n *\n *\t@return\ta new MASConstraintMaker\n */\n- (id)initWithView:(MAS_VIEW *)view;\n\n/**\n *\tCalls install method on any MASConstraints which have been created by this maker\n *\n *\t@return\tan array of all the installed MASConstraints\n */\n- (NSArray *)install;\n\n- (MASConstraint * (^)(dispatch_block_t))group;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASConstraintMaker.m",
    "content": "//\n//  MASConstraintMaker.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASConstraintMaker.h\"\n#import \"MASViewConstraint.h\"\n#import \"MASCompositeConstraint.h\"\n#import \"MASConstraint+Private.h\"\n#import \"MASViewAttribute.h\"\n#import \"View+MASAdditions.h\"\n\n@interface MASConstraintMaker () <MASConstraintDelegate>\n\n@property (nonatomic, weak) MAS_VIEW *view;\n@property (nonatomic, strong) NSMutableArray *constraints;\n\n@end\n\n@implementation MASConstraintMaker\n\n- (id)initWithView:(MAS_VIEW *)view {\n    self = [super init];\n    if (!self) return nil;\n    \n    self.view = view;\n    self.constraints = NSMutableArray.new;\n    \n    return self;\n}\n\n- (NSArray *)install {\n    if (self.removeExisting) {\n        NSArray *installedConstraints = [MASViewConstraint installedConstraintsForView:self.view];\n        for (MASConstraint *constraint in installedConstraints) {\n            [constraint uninstall];\n        }\n    }\n    NSArray *constraints = self.constraints.copy;\n    for (MASConstraint *constraint in constraints) {\n        constraint.updateExisting = self.updateExisting;\n        [constraint install];\n    }\n    [self.constraints removeAllObjects];\n    return constraints;\n}\n\n#pragma mark - MASConstraintDelegate\n\n- (void)constraint:(MASConstraint *)constraint shouldBeReplacedWithConstraint:(MASConstraint *)replacementConstraint {\n    NSUInteger index = [self.constraints indexOfObject:constraint];\n    NSAssert(index != NSNotFound, @\"Could not find constraint %@\", constraint);\n    [self.constraints replaceObjectAtIndex:index withObject:replacementConstraint];\n}\n\n- (MASConstraint *)constraint:(MASConstraint *)constraint addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    MASViewAttribute *viewAttribute = [[MASViewAttribute alloc] initWithView:self.view layoutAttribute:layoutAttribute];\n    MASViewConstraint *newConstraint = [[MASViewConstraint alloc] initWithFirstViewAttribute:viewAttribute];\n    if ([constraint isKindOfClass:MASViewConstraint.class]) {\n        //replace with composite constraint\n        NSArray *children = @[constraint, newConstraint];\n        MASCompositeConstraint *compositeConstraint = [[MASCompositeConstraint alloc] initWithChildren:children];\n        compositeConstraint.delegate = self;\n        [self constraint:constraint shouldBeReplacedWithConstraint:compositeConstraint];\n        return compositeConstraint;\n    }\n    if (!constraint) {\n        newConstraint.delegate = self;\n        [self.constraints addObject:newConstraint];\n    }\n    return newConstraint;\n}\n\n- (MASConstraint *)addConstraintWithAttributes:(MASAttribute)attrs {\n    __unused MASAttribute anyAttribute = (MASAttributeLeft | MASAttributeRight | MASAttributeTop | MASAttributeBottom | MASAttributeLeading\n                                          | MASAttributeTrailing | MASAttributeWidth | MASAttributeHeight | MASAttributeCenterX\n                                          | MASAttributeCenterY | MASAttributeBaseline\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n                                          | MASAttributeFirstBaseline | MASAttributeLastBaseline\n#endif\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n                                          | MASAttributeLeftMargin | MASAttributeRightMargin | MASAttributeTopMargin | MASAttributeBottomMargin\n                                          | MASAttributeLeadingMargin | MASAttributeTrailingMargin | MASAttributeCenterXWithinMargins\n                                          | MASAttributeCenterYWithinMargins\n#endif\n                                          );\n    \n    NSAssert((attrs & anyAttribute) != 0, @\"You didn't pass any attribute to make.attributes(...)\");\n    \n    NSMutableArray *attributes = [NSMutableArray array];\n    \n    if (attrs & MASAttributeLeft) [attributes addObject:self.view.mas_left];\n    if (attrs & MASAttributeRight) [attributes addObject:self.view.mas_right];\n    if (attrs & MASAttributeTop) [attributes addObject:self.view.mas_top];\n    if (attrs & MASAttributeBottom) [attributes addObject:self.view.mas_bottom];\n    if (attrs & MASAttributeLeading) [attributes addObject:self.view.mas_leading];\n    if (attrs & MASAttributeTrailing) [attributes addObject:self.view.mas_trailing];\n    if (attrs & MASAttributeWidth) [attributes addObject:self.view.mas_width];\n    if (attrs & MASAttributeHeight) [attributes addObject:self.view.mas_height];\n    if (attrs & MASAttributeCenterX) [attributes addObject:self.view.mas_centerX];\n    if (attrs & MASAttributeCenterY) [attributes addObject:self.view.mas_centerY];\n    if (attrs & MASAttributeBaseline) [attributes addObject:self.view.mas_baseline];\n    \n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n    \n    if (attrs & MASAttributeFirstBaseline) [attributes addObject:self.view.mas_firstBaseline];\n    if (attrs & MASAttributeLastBaseline) [attributes addObject:self.view.mas_lastBaseline];\n    \n#endif\n    \n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n    \n    if (attrs & MASAttributeLeftMargin) [attributes addObject:self.view.mas_leftMargin];\n    if (attrs & MASAttributeRightMargin) [attributes addObject:self.view.mas_rightMargin];\n    if (attrs & MASAttributeTopMargin) [attributes addObject:self.view.mas_topMargin];\n    if (attrs & MASAttributeBottomMargin) [attributes addObject:self.view.mas_bottomMargin];\n    if (attrs & MASAttributeLeadingMargin) [attributes addObject:self.view.mas_leadingMargin];\n    if (attrs & MASAttributeTrailingMargin) [attributes addObject:self.view.mas_trailingMargin];\n    if (attrs & MASAttributeCenterXWithinMargins) [attributes addObject:self.view.mas_centerXWithinMargins];\n    if (attrs & MASAttributeCenterYWithinMargins) [attributes addObject:self.view.mas_centerYWithinMargins];\n    \n#endif\n    \n    NSMutableArray *children = [NSMutableArray arrayWithCapacity:attributes.count];\n    \n    for (MASViewAttribute *a in attributes) {\n        [children addObject:[[MASViewConstraint alloc] initWithFirstViewAttribute:a]];\n    }\n    \n    MASCompositeConstraint *constraint = [[MASCompositeConstraint alloc] initWithChildren:children];\n    constraint.delegate = self;\n    [self.constraints addObject:constraint];\n    return constraint;\n}\n\n#pragma mark - standard Attributes\n\n- (MASConstraint *)addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    return [self constraint:nil addConstraintWithLayoutAttribute:layoutAttribute];\n}\n\n- (MASConstraint *)left {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeft];\n}\n\n- (MASConstraint *)top {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTop];\n}\n\n- (MASConstraint *)right {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeRight];\n}\n\n- (MASConstraint *)bottom {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeBottom];\n}\n\n- (MASConstraint *)leading {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeading];\n}\n\n- (MASConstraint *)trailing {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTrailing];\n}\n\n- (MASConstraint *)width {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeWidth];\n}\n\n- (MASConstraint *)height {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeHeight];\n}\n\n- (MASConstraint *)centerX {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterX];\n}\n\n- (MASConstraint *)centerY {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterY];\n}\n\n- (MASConstraint *)baseline {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeBaseline];\n}\n\n- (MASConstraint *(^)(MASAttribute))attributes {\n    return ^(MASAttribute attrs){\n        return [self addConstraintWithAttributes:attrs];\n    };\n}\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n- (MASConstraint *)firstBaseline {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeFirstBaseline];\n}\n\n- (MASConstraint *)lastBaseline {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLastBaseline];\n}\n\n#endif\n\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n- (MASConstraint *)leftMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeftMargin];\n}\n\n- (MASConstraint *)rightMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeRightMargin];\n}\n\n- (MASConstraint *)topMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTopMargin];\n}\n\n- (MASConstraint *)bottomMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeBottomMargin];\n}\n\n- (MASConstraint *)leadingMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeadingMargin];\n}\n\n- (MASConstraint *)trailingMargin {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeTrailingMargin];\n}\n\n- (MASConstraint *)centerXWithinMargins {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterXWithinMargins];\n}\n\n- (MASConstraint *)centerYWithinMargins {\n    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeCenterYWithinMargins];\n}\n\n#endif\n\n\n#pragma mark - composite Attributes\n\n- (MASConstraint *)edges {\n    return [self addConstraintWithAttributes:MASAttributeTop | MASAttributeLeft | MASAttributeRight | MASAttributeBottom];\n}\n\n- (MASConstraint *)size {\n    return [self addConstraintWithAttributes:MASAttributeWidth | MASAttributeHeight];\n}\n\n- (MASConstraint *)center {\n    return [self addConstraintWithAttributes:MASAttributeCenterX | MASAttributeCenterY];\n}\n\n#pragma mark - grouping\n\n- (MASConstraint *(^)(dispatch_block_t group))group {\n    return ^id(dispatch_block_t group) {\n        NSInteger previousCount = self.constraints.count;\n        group();\n\n        NSArray *children = [self.constraints subarrayWithRange:NSMakeRange(previousCount, self.constraints.count - previousCount)];\n        MASCompositeConstraint *constraint = [[MASCompositeConstraint alloc] initWithChildren:children];\n        constraint.delegate = self;\n        return constraint;\n    };\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASLayoutConstraint.h",
    "content": "//\n//  MASLayoutConstraint.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 3/08/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import \"MASUtilities.h\"\n\n/**\n *\tWhen you are debugging or printing the constraints attached to a view this subclass\n *  makes it easier to identify which constraints have been created via Masonry\n */\n@interface MASLayoutConstraint : NSLayoutConstraint\n\n/**\n *\ta key to associate with this constraint\n */\n@property (nonatomic, strong) id mas_key;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASLayoutConstraint.m",
    "content": "//\n//  MASLayoutConstraint.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 3/08/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import \"MASLayoutConstraint.h\"\n\n@implementation MASLayoutConstraint\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASUtilities.h",
    "content": "//\n//  MASUtilities.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 19/08/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n\n\n#if TARGET_OS_IPHONE || TARGET_OS_TV\n\n    #import <UIKit/UIKit.h>\n    #define MAS_VIEW UIView\n    #define MAS_VIEW_CONTROLLER UIViewController\n    #define MASEdgeInsets UIEdgeInsets\n\n    typedef UILayoutPriority MASLayoutPriority;\n    static const MASLayoutPriority MASLayoutPriorityRequired = UILayoutPriorityRequired;\n    static const MASLayoutPriority MASLayoutPriorityDefaultHigh = UILayoutPriorityDefaultHigh;\n    static const MASLayoutPriority MASLayoutPriorityDefaultMedium = 500;\n    static const MASLayoutPriority MASLayoutPriorityDefaultLow = UILayoutPriorityDefaultLow;\n    static const MASLayoutPriority MASLayoutPriorityFittingSizeLevel = UILayoutPriorityFittingSizeLevel;\n\n#elif TARGET_OS_MAC\n\n    #import <AppKit/AppKit.h>\n    #define MAS_VIEW NSView\n    #define MASEdgeInsets NSEdgeInsets\n\n    typedef NSLayoutPriority MASLayoutPriority;\n    static const MASLayoutPriority MASLayoutPriorityRequired = NSLayoutPriorityRequired;\n    static const MASLayoutPriority MASLayoutPriorityDefaultHigh = NSLayoutPriorityDefaultHigh;\n    static const MASLayoutPriority MASLayoutPriorityDragThatCanResizeWindow = NSLayoutPriorityDragThatCanResizeWindow;\n    static const MASLayoutPriority MASLayoutPriorityDefaultMedium = 501;\n    static const MASLayoutPriority MASLayoutPriorityWindowSizeStayPut = NSLayoutPriorityWindowSizeStayPut;\n    static const MASLayoutPriority MASLayoutPriorityDragThatCannotResizeWindow = NSLayoutPriorityDragThatCannotResizeWindow;\n    static const MASLayoutPriority MASLayoutPriorityDefaultLow = NSLayoutPriorityDefaultLow;\n    static const MASLayoutPriority MASLayoutPriorityFittingSizeCompression = NSLayoutPriorityFittingSizeCompression;\n\n#endif\n\n/**\n *\tAllows you to attach keys to objects matching the variable names passed.\n *\n *  view1.mas_key = @\"view1\", view2.mas_key = @\"view2\";\n *\n *  is equivalent to:\n *\n *  MASAttachKeys(view1, view2);\n */\n#define MASAttachKeys(...)                                                        \\\n    {                                                                             \\\n        NSDictionary *keyPairs = NSDictionaryOfVariableBindings(__VA_ARGS__);     \\\n        for (id key in keyPairs.allKeys) {                                        \\\n            id obj = keyPairs[key];                                               \\\n            NSAssert([obj respondsToSelector:@selector(setMas_key:)],             \\\n                     @\"Cannot attach mas_key to %@\", obj);                        \\\n            [obj setMas_key:key];                                                 \\\n        }                                                                         \\\n    }\n\n/**\n *  Used to create object hashes\n *  Based on http://www.mikeash.com/pyblog/friday-qa-2010-06-18-implementing-equality-and-hashing.html\n */\n#define MAS_NSUINT_BIT (CHAR_BIT * sizeof(NSUInteger))\n#define MAS_NSUINTROTATE(val, howmuch) ((((NSUInteger)val) << howmuch) | (((NSUInteger)val) >> (MAS_NSUINT_BIT - howmuch)))\n\n/**\n *  Given a scalar or struct value, wraps it in NSValue\n *  Based on EXPObjectify: https://github.com/specta/expecta\n */\nstatic inline id _MASBoxValue(const char *type, ...) {\n    va_list v;\n    va_start(v, type);\n    id obj = nil;\n    if (strcmp(type, @encode(id)) == 0) {\n        id actual = va_arg(v, id);\n        obj = actual;\n    } else if (strcmp(type, @encode(CGPoint)) == 0) {\n        CGPoint actual = (CGPoint)va_arg(v, CGPoint);\n        obj = [NSValue value:&actual withObjCType:type];\n    } else if (strcmp(type, @encode(CGSize)) == 0) {\n        CGSize actual = (CGSize)va_arg(v, CGSize);\n        obj = [NSValue value:&actual withObjCType:type];\n    } else if (strcmp(type, @encode(MASEdgeInsets)) == 0) {\n        MASEdgeInsets actual = (MASEdgeInsets)va_arg(v, MASEdgeInsets);\n        obj = [NSValue value:&actual withObjCType:type];\n    } else if (strcmp(type, @encode(double)) == 0) {\n        double actual = (double)va_arg(v, double);\n        obj = [NSNumber numberWithDouble:actual];\n    } else if (strcmp(type, @encode(float)) == 0) {\n        float actual = (float)va_arg(v, double);\n        obj = [NSNumber numberWithFloat:actual];\n    } else if (strcmp(type, @encode(int)) == 0) {\n        int actual = (int)va_arg(v, int);\n        obj = [NSNumber numberWithInt:actual];\n    } else if (strcmp(type, @encode(long)) == 0) {\n        long actual = (long)va_arg(v, long);\n        obj = [NSNumber numberWithLong:actual];\n    } else if (strcmp(type, @encode(long long)) == 0) {\n        long long actual = (long long)va_arg(v, long long);\n        obj = [NSNumber numberWithLongLong:actual];\n    } else if (strcmp(type, @encode(short)) == 0) {\n        short actual = (short)va_arg(v, int);\n        obj = [NSNumber numberWithShort:actual];\n    } else if (strcmp(type, @encode(char)) == 0) {\n        char actual = (char)va_arg(v, int);\n        obj = [NSNumber numberWithChar:actual];\n    } else if (strcmp(type, @encode(bool)) == 0) {\n        bool actual = (bool)va_arg(v, int);\n        obj = [NSNumber numberWithBool:actual];\n    } else if (strcmp(type, @encode(unsigned char)) == 0) {\n        unsigned char actual = (unsigned char)va_arg(v, unsigned int);\n        obj = [NSNumber numberWithUnsignedChar:actual];\n    } else if (strcmp(type, @encode(unsigned int)) == 0) {\n        unsigned int actual = (unsigned int)va_arg(v, unsigned int);\n        obj = [NSNumber numberWithUnsignedInt:actual];\n    } else if (strcmp(type, @encode(unsigned long)) == 0) {\n        unsigned long actual = (unsigned long)va_arg(v, unsigned long);\n        obj = [NSNumber numberWithUnsignedLong:actual];\n    } else if (strcmp(type, @encode(unsigned long long)) == 0) {\n        unsigned long long actual = (unsigned long long)va_arg(v, unsigned long long);\n        obj = [NSNumber numberWithUnsignedLongLong:actual];\n    } else if (strcmp(type, @encode(unsigned short)) == 0) {\n        unsigned short actual = (unsigned short)va_arg(v, unsigned int);\n        obj = [NSNumber numberWithUnsignedShort:actual];\n    }\n    va_end(v);\n    return obj;\n}\n\n#define MASBoxValue(value) _MASBoxValue(@encode(__typeof__((value))), (value))\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASViewAttribute.h",
    "content": "//\n//  MASViewAttribute.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 21/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASUtilities.h\"\n\n/**\n *  An immutable tuple which stores the view and the related NSLayoutAttribute.\n *  Describes part of either the left or right hand side of a constraint equation\n */\n@interface MASViewAttribute : NSObject\n\n/**\n *  The view which the reciever relates to. Can be nil if item is not a view.\n */\n@property (nonatomic, weak, readonly) MAS_VIEW *view;\n\n/**\n *  The item which the reciever relates to.\n */\n@property (nonatomic, weak, readonly) id item;\n\n/**\n *  The attribute which the reciever relates to\n */\n@property (nonatomic, assign, readonly) NSLayoutAttribute layoutAttribute;\n\n/**\n *  Convenience initializer.\n */\n- (id)initWithView:(MAS_VIEW *)view layoutAttribute:(NSLayoutAttribute)layoutAttribute;\n\n/**\n *  The designated initializer.\n */\n- (id)initWithView:(MAS_VIEW *)view item:(id)item layoutAttribute:(NSLayoutAttribute)layoutAttribute;\n\n/**\n *\tDetermine whether the layoutAttribute is a size attribute\n *\n *\t@return\tYES if layoutAttribute is equal to NSLayoutAttributeWidth or NSLayoutAttributeHeight\n */\n- (BOOL)isSizeAttribute;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASViewAttribute.m",
    "content": "//\n//  MASViewAttribute.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 21/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASViewAttribute.h\"\n\n@implementation MASViewAttribute\n\n- (id)initWithView:(MAS_VIEW *)view layoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    self = [self initWithView:view item:view layoutAttribute:layoutAttribute];\n    return self;\n}\n\n- (id)initWithView:(MAS_VIEW *)view item:(id)item layoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    self = [super init];\n    if (!self) return nil;\n    \n    _view = view;\n    _item = item;\n    _layoutAttribute = layoutAttribute;\n    \n    return self;\n}\n\n- (BOOL)isSizeAttribute {\n    return self.layoutAttribute == NSLayoutAttributeWidth\n        || self.layoutAttribute == NSLayoutAttributeHeight;\n}\n\n- (BOOL)isEqual:(MASViewAttribute *)viewAttribute {\n    if ([viewAttribute isKindOfClass:self.class]) {\n        return self.view == viewAttribute.view\n            && self.layoutAttribute == viewAttribute.layoutAttribute;\n    }\n    return [super isEqual:viewAttribute];\n}\n\n- (NSUInteger)hash {\n    return MAS_NSUINTROTATE([self.view hash], MAS_NSUINT_BIT / 2) ^ self.layoutAttribute;\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASViewConstraint.h",
    "content": "//\n//  MASViewConstraint.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASViewAttribute.h\"\n#import \"MASConstraint.h\"\n#import \"MASLayoutConstraint.h\"\n#import \"MASUtilities.h\"\n\n/**\n *  A single constraint.\n *  Contains the attributes neccessary for creating a NSLayoutConstraint and adding it to the appropriate view\n */\n@interface MASViewConstraint : MASConstraint <NSCopying>\n\n/**\n *\tFirst item/view and first attribute of the NSLayoutConstraint\n */\n@property (nonatomic, strong, readonly) MASViewAttribute *firstViewAttribute;\n\n/**\n *\tSecond item/view and second attribute of the NSLayoutConstraint\n */\n@property (nonatomic, strong, readonly) MASViewAttribute *secondViewAttribute;\n\n/**\n *\tinitialises the MASViewConstraint with the first part of the equation\n *\n *\t@param\tfirstViewAttribute\tview.mas_left, view.mas_width etc.\n *\n *\t@return\ta new view constraint\n */\n- (id)initWithFirstViewAttribute:(MASViewAttribute *)firstViewAttribute;\n\n/**\n *  Returns all MASViewConstraints installed with this view as a first item.\n *\n *  @param  view  A view to retrieve constraints for.\n *\n *  @return An array of MASViewConstraints.\n */\n+ (NSArray *)installedConstraintsForView:(MAS_VIEW *)view;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/MASViewConstraint.m",
    "content": "//\n//  MASViewConstraint.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASViewConstraint.h\"\n#import \"MASConstraint+Private.h\"\n#import \"MASCompositeConstraint.h\"\n#import \"MASLayoutConstraint.h\"\n#import \"View+MASAdditions.h\"\n#import <objc/runtime.h>\n\n@interface MAS_VIEW (MASConstraints)\n\n@property (nonatomic, readonly) NSMutableSet *mas_installedConstraints;\n\n@end\n\n@implementation MAS_VIEW (MASConstraints)\n\nstatic char kInstalledConstraintsKey;\n\n- (NSMutableSet *)mas_installedConstraints {\n    NSMutableSet *constraints = objc_getAssociatedObject(self, &kInstalledConstraintsKey);\n    if (!constraints) {\n        constraints = [NSMutableSet set];\n        objc_setAssociatedObject(self, &kInstalledConstraintsKey, constraints, OBJC_ASSOCIATION_RETAIN_NONATOMIC);\n    }\n    return constraints;\n}\n\n@end\n\n\n@interface MASViewConstraint ()\n\n@property (nonatomic, strong, readwrite) MASViewAttribute *secondViewAttribute;\n@property (nonatomic, weak) MAS_VIEW *installedView;\n@property (nonatomic, weak) MASLayoutConstraint *layoutConstraint;\n@property (nonatomic, assign) NSLayoutRelation layoutRelation;\n@property (nonatomic, assign) MASLayoutPriority layoutPriority;\n@property (nonatomic, assign) CGFloat layoutMultiplier;\n@property (nonatomic, assign) CGFloat layoutConstant;\n@property (nonatomic, assign) BOOL hasLayoutRelation;\n@property (nonatomic, strong) id mas_key;\n@property (nonatomic, assign) BOOL useAnimator;\n\n@end\n\n@implementation MASViewConstraint\n\n- (id)initWithFirstViewAttribute:(MASViewAttribute *)firstViewAttribute {\n    self = [super init];\n    if (!self) return nil;\n    \n    _firstViewAttribute = firstViewAttribute;\n    self.layoutPriority = MASLayoutPriorityRequired;\n    self.layoutMultiplier = 1;\n    \n    return self;\n}\n\n#pragma mark - NSCoping\n\n- (id)copyWithZone:(NSZone __unused *)zone {\n    MASViewConstraint *constraint = [[MASViewConstraint alloc] initWithFirstViewAttribute:self.firstViewAttribute];\n    constraint.layoutConstant = self.layoutConstant;\n    constraint.layoutRelation = self.layoutRelation;\n    constraint.layoutPriority = self.layoutPriority;\n    constraint.layoutMultiplier = self.layoutMultiplier;\n    constraint.delegate = self.delegate;\n    return constraint;\n}\n\n#pragma mark - Public\n\n+ (NSArray *)installedConstraintsForView:(MAS_VIEW *)view {\n    return [view.mas_installedConstraints allObjects];\n}\n\n#pragma mark - Private\n\n- (void)setLayoutConstant:(CGFloat)layoutConstant {\n    _layoutConstant = layoutConstant;\n\n#if TARGET_OS_MAC && !(TARGET_OS_IPHONE || TARGET_OS_TV)\n    if (self.useAnimator) {\n        [self.layoutConstraint.animator setConstant:layoutConstant];\n    } else {\n        self.layoutConstraint.constant = layoutConstant;\n    }\n#else\n    self.layoutConstraint.constant = layoutConstant;\n#endif\n}\n\n- (void)setLayoutRelation:(NSLayoutRelation)layoutRelation {\n    _layoutRelation = layoutRelation;\n    self.hasLayoutRelation = YES;\n}\n\n- (BOOL)supportsActiveProperty {\n    return [self.layoutConstraint respondsToSelector:@selector(isActive)];\n}\n\n- (BOOL)isActive {\n    BOOL active = YES;\n    if ([self supportsActiveProperty]) {\n        active = [self.layoutConstraint isActive];\n    }\n\n    return active;\n}\n\n- (BOOL)hasBeenInstalled {\n    return (self.layoutConstraint != nil) && [self isActive];\n}\n\n- (void)setSecondViewAttribute:(id)secondViewAttribute {\n    if ([secondViewAttribute isKindOfClass:NSValue.class]) {\n        [self setLayoutConstantWithValue:secondViewAttribute];\n    } else if ([secondViewAttribute isKindOfClass:MAS_VIEW.class]) {\n        _secondViewAttribute = [[MASViewAttribute alloc] initWithView:secondViewAttribute layoutAttribute:self.firstViewAttribute.layoutAttribute];\n    } else if ([secondViewAttribute isKindOfClass:MASViewAttribute.class]) {\n        _secondViewAttribute = secondViewAttribute;\n    } else {\n        NSAssert(NO, @\"attempting to add unsupported attribute: %@\", secondViewAttribute);\n    }\n}\n\n#pragma mark - NSLayoutConstraint multiplier proxies\n\n- (MASConstraint * (^)(CGFloat))multipliedBy {\n    return ^id(CGFloat multiplier) {\n        NSAssert(!self.hasBeenInstalled,\n                 @\"Cannot modify constraint multiplier after it has been installed\");\n        \n        self.layoutMultiplier = multiplier;\n        return self;\n    };\n}\n\n\n- (MASConstraint * (^)(CGFloat))dividedBy {\n    return ^id(CGFloat divider) {\n        NSAssert(!self.hasBeenInstalled,\n                 @\"Cannot modify constraint multiplier after it has been installed\");\n\n        self.layoutMultiplier = 1.0/divider;\n        return self;\n    };\n}\n\n#pragma mark - MASLayoutPriority proxy\n\n- (MASConstraint * (^)(MASLayoutPriority))priority {\n    return ^id(MASLayoutPriority priority) {\n        NSAssert(!self.hasBeenInstalled,\n                 @\"Cannot modify constraint priority after it has been installed\");\n        \n        self.layoutPriority = priority;\n        return self;\n    };\n}\n\n#pragma mark - NSLayoutRelation proxy\n\n- (MASConstraint * (^)(id, NSLayoutRelation))equalToWithRelation {\n    return ^id(id attribute, NSLayoutRelation relation) {\n        if ([attribute isKindOfClass:NSArray.class]) {\n            NSAssert(!self.hasLayoutRelation, @\"Redefinition of constraint relation\");\n            NSMutableArray *children = NSMutableArray.new;\n            for (id attr in attribute) {\n                MASViewConstraint *viewConstraint = [self copy];\n                viewConstraint.layoutRelation = relation;\n                viewConstraint.secondViewAttribute = attr;\n                [children addObject:viewConstraint];\n            }\n            MASCompositeConstraint *compositeConstraint = [[MASCompositeConstraint alloc] initWithChildren:children];\n            compositeConstraint.delegate = self.delegate;\n            [self.delegate constraint:self shouldBeReplacedWithConstraint:compositeConstraint];\n            return compositeConstraint;\n        } else {\n            NSAssert(!self.hasLayoutRelation || self.layoutRelation == relation && [attribute isKindOfClass:NSValue.class], @\"Redefinition of constraint relation\");\n            self.layoutRelation = relation;\n            self.secondViewAttribute = attribute;\n            return self;\n        }\n    };\n}\n\n#pragma mark - Semantic properties\n\n- (MASConstraint *)with {\n    return self;\n}\n\n- (MASConstraint *)and {\n    return self;\n}\n\n#pragma mark - attribute chaining\n\n- (MASConstraint *)addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {\n    NSAssert(!self.hasLayoutRelation, @\"Attributes should be chained before defining the constraint relation\");\n\n    return [self.delegate constraint:self addConstraintWithLayoutAttribute:layoutAttribute];\n}\n\n#pragma mark - Animator proxy\n\n#if TARGET_OS_MAC && !(TARGET_OS_IPHONE || TARGET_OS_TV)\n\n- (MASConstraint *)animator {\n    self.useAnimator = YES;\n    return self;\n}\n\n#endif\n\n#pragma mark - debug helpers\n\n- (MASConstraint * (^)(id))key {\n    return ^id(id key) {\n        self.mas_key = key;\n        return self;\n    };\n}\n\n#pragma mark - NSLayoutConstraint constant setters\n\n- (void)setInsets:(MASEdgeInsets)insets {\n    NSLayoutAttribute layoutAttribute = self.firstViewAttribute.layoutAttribute;\n    switch (layoutAttribute) {\n        case NSLayoutAttributeLeft:\n        case NSLayoutAttributeLeading:\n            self.layoutConstant = insets.left;\n            break;\n        case NSLayoutAttributeTop:\n            self.layoutConstant = insets.top;\n            break;\n        case NSLayoutAttributeBottom:\n            self.layoutConstant = -insets.bottom;\n            break;\n        case NSLayoutAttributeRight:\n        case NSLayoutAttributeTrailing:\n            self.layoutConstant = -insets.right;\n            break;\n        default:\n            break;\n    }\n}\n\n- (void)setInset:(CGFloat)inset {\n    [self setInsets:(MASEdgeInsets){.top = inset, .left = inset, .bottom = inset, .right = inset}];\n}\n\n- (void)setOffset:(CGFloat)offset {\n    self.layoutConstant = offset;\n}\n\n- (void)setSizeOffset:(CGSize)sizeOffset {\n    NSLayoutAttribute layoutAttribute = self.firstViewAttribute.layoutAttribute;\n    switch (layoutAttribute) {\n        case NSLayoutAttributeWidth:\n            self.layoutConstant = sizeOffset.width;\n            break;\n        case NSLayoutAttributeHeight:\n            self.layoutConstant = sizeOffset.height;\n            break;\n        default:\n            break;\n    }\n}\n\n- (void)setCenterOffset:(CGPoint)centerOffset {\n    NSLayoutAttribute layoutAttribute = self.firstViewAttribute.layoutAttribute;\n    switch (layoutAttribute) {\n        case NSLayoutAttributeCenterX:\n            self.layoutConstant = centerOffset.x;\n            break;\n        case NSLayoutAttributeCenterY:\n            self.layoutConstant = centerOffset.y;\n            break;\n        default:\n            break;\n    }\n}\n\n#pragma mark - MASConstraint\n\n- (void)activate {\n    [self install];\n}\n\n- (void)deactivate {\n    [self uninstall];\n}\n\n- (void)install {\n    if (self.hasBeenInstalled) {\n        return;\n    }\n    \n    if ([self supportsActiveProperty] && self.layoutConstraint) {\n        self.layoutConstraint.active = YES;\n        [self.firstViewAttribute.view.mas_installedConstraints addObject:self];\n        return;\n    }\n    \n    MAS_VIEW *firstLayoutItem = self.firstViewAttribute.item;\n    NSLayoutAttribute firstLayoutAttribute = self.firstViewAttribute.layoutAttribute;\n    MAS_VIEW *secondLayoutItem = self.secondViewAttribute.item;\n    NSLayoutAttribute secondLayoutAttribute = self.secondViewAttribute.layoutAttribute;\n\n    // alignment attributes must have a secondViewAttribute\n    // therefore we assume that is refering to superview\n    // eg make.left.equalTo(@10)\n    if (!self.firstViewAttribute.isSizeAttribute && !self.secondViewAttribute) {\n        secondLayoutItem = self.firstViewAttribute.view.superview;\n        secondLayoutAttribute = firstLayoutAttribute;\n    }\n    \n    MASLayoutConstraint *layoutConstraint\n        = [MASLayoutConstraint constraintWithItem:firstLayoutItem\n                                        attribute:firstLayoutAttribute\n                                        relatedBy:self.layoutRelation\n                                           toItem:secondLayoutItem\n                                        attribute:secondLayoutAttribute\n                                       multiplier:self.layoutMultiplier\n                                         constant:self.layoutConstant];\n    \n    layoutConstraint.priority = self.layoutPriority;\n    layoutConstraint.mas_key = self.mas_key;\n    \n    if (self.secondViewAttribute.view) {\n        MAS_VIEW *closestCommonSuperview = [self.firstViewAttribute.view mas_closestCommonSuperview:self.secondViewAttribute.view];\n        NSAssert(closestCommonSuperview,\n                 @\"couldn't find a common superview for %@ and %@\",\n                 self.firstViewAttribute.view, self.secondViewAttribute.view);\n        self.installedView = closestCommonSuperview;\n    } else if (self.firstViewAttribute.isSizeAttribute) {\n        self.installedView = self.firstViewAttribute.view;\n    } else {\n        self.installedView = self.firstViewAttribute.view.superview;\n    }\n\n\n    MASLayoutConstraint *existingConstraint = nil;\n    if (self.updateExisting) {\n        existingConstraint = [self layoutConstraintSimilarTo:layoutConstraint];\n    }\n    if (existingConstraint) {\n        // just update the constant\n        existingConstraint.constant = layoutConstraint.constant;\n        self.layoutConstraint = existingConstraint;\n    } else {\n        [self.installedView addConstraint:layoutConstraint];\n        self.layoutConstraint = layoutConstraint;\n        [firstLayoutItem.mas_installedConstraints addObject:self];\n    }\n}\n\n- (MASLayoutConstraint *)layoutConstraintSimilarTo:(MASLayoutConstraint *)layoutConstraint {\n    // check if any constraints are the same apart from the only mutable property constant\n\n    // go through constraints in reverse as we do not want to match auto-resizing or interface builder constraints\n    // and they are likely to be added first.\n    for (NSLayoutConstraint *existingConstraint in self.installedView.constraints.reverseObjectEnumerator) {\n        if (![existingConstraint isKindOfClass:MASLayoutConstraint.class]) continue;\n        if (existingConstraint.firstItem != layoutConstraint.firstItem) continue;\n        if (existingConstraint.secondItem != layoutConstraint.secondItem) continue;\n        if (existingConstraint.firstAttribute != layoutConstraint.firstAttribute) continue;\n        if (existingConstraint.secondAttribute != layoutConstraint.secondAttribute) continue;\n        if (existingConstraint.relation != layoutConstraint.relation) continue;\n        if (existingConstraint.multiplier != layoutConstraint.multiplier) continue;\n        if (existingConstraint.priority != layoutConstraint.priority) continue;\n\n        return (id)existingConstraint;\n    }\n    return nil;\n}\n\n- (void)uninstall {\n    if ([self supportsActiveProperty]) {\n        self.layoutConstraint.active = NO;\n        [self.firstViewAttribute.view.mas_installedConstraints removeObject:self];\n        return;\n    }\n    \n    [self.installedView removeConstraint:self.layoutConstraint];\n    self.layoutConstraint = nil;\n    self.installedView = nil;\n    \n    [self.firstViewAttribute.view.mas_installedConstraints removeObject:self];\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/Masonry.h",
    "content": "//\n//  Masonry.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n//! Project version number for Masonry.\nFOUNDATION_EXPORT double MasonryVersionNumber;\n\n//! Project version string for Masonry.\nFOUNDATION_EXPORT const unsigned char MasonryVersionString[];\n\n#import \"MASUtilities.h\"\n#import \"View+MASAdditions.h\"\n#import \"View+MASShorthandAdditions.h\"\n#import \"ViewController+MASAdditions.h\"\n#import \"NSArray+MASAdditions.h\"\n#import \"NSArray+MASShorthandAdditions.h\"\n#import \"MASConstraint.h\"\n#import \"MASCompositeConstraint.h\"\n#import \"MASViewAttribute.h\"\n#import \"MASViewConstraint.h\"\n#import \"MASConstraintMaker.h\"\n#import \"MASLayoutConstraint.h\"\n#import \"NSLayoutConstraint+MASDebugAdditions.h\"\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/NSArray+MASAdditions.h",
    "content": "//\n//  NSArray+MASAdditions.h\n//\n//\n//  Created by Daniel Hammond on 11/26/13.\n//\n//\n\n#import \"MASUtilities.h\"\n#import \"MASConstraintMaker.h\"\n#import \"MASViewAttribute.h\"\n\ntypedef NS_ENUM(NSUInteger, MASAxisType) {\n    MASAxisTypeHorizontal,\n    MASAxisTypeVertical\n};\n\n@interface NSArray (MASAdditions)\n\n/**\n *  Creates a MASConstraintMaker with each view in the callee.\n *  Any constraints defined are added to the view or the appropriate superview once the block has finished executing on each view\n *\n *  @param block scope within which you can build up the constraints which you wish to apply to each view.\n *\n *  @return Array of created MASConstraints\n */\n- (NSArray *)mas_makeConstraints:(void (NS_NOESCAPE ^)(MASConstraintMaker *make))block;\n\n/**\n *  Creates a MASConstraintMaker with each view in the callee.\n *  Any constraints defined are added to each view or the appropriate superview once the block has finished executing on each view.\n *  If an existing constraint exists then it will be updated instead.\n *\n *  @param block scope within which you can build up the constraints which you wish to apply to each view.\n *\n *  @return Array of created/updated MASConstraints\n */\n- (NSArray *)mas_updateConstraints:(void (NS_NOESCAPE ^)(MASConstraintMaker *make))block;\n\n/**\n *  Creates a MASConstraintMaker with each view in the callee.\n *  Any constraints defined are added to each view or the appropriate superview once the block has finished executing on each view.\n *  All constraints previously installed for the views will be removed.\n *\n *  @param block scope within which you can build up the constraints which you wish to apply to each view.\n *\n *  @return Array of created/updated MASConstraints\n */\n- (NSArray *)mas_remakeConstraints:(void (NS_NOESCAPE ^)(MASConstraintMaker *make))block;\n\n/**\n *  distribute with fixed spacing\n *\n *  @param axisType     which axis to distribute items along\n *  @param fixedSpacing the spacing between each item\n *  @param leadSpacing  the spacing before the first item and the container\n *  @param tailSpacing  the spacing after the last item and the container\n */\n- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType withFixedSpacing:(CGFloat)fixedSpacing leadSpacing:(CGFloat)leadSpacing tailSpacing:(CGFloat)tailSpacing;\n\n/**\n *  distribute with fixed item size\n *\n *  @param axisType        which axis to distribute items along\n *  @param fixedItemLength the fixed length of each item\n *  @param leadSpacing     the spacing before the first item and the container\n *  @param tailSpacing     the spacing after the last item and the container\n */\n- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType withFixedItemLength:(CGFloat)fixedItemLength leadSpacing:(CGFloat)leadSpacing tailSpacing:(CGFloat)tailSpacing;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/NSArray+MASAdditions.m",
    "content": "//\n//  NSArray+MASAdditions.m\n//  \n//\n//  Created by Daniel Hammond on 11/26/13.\n//\n//\n\n#import \"NSArray+MASAdditions.h\"\n#import \"View+MASAdditions.h\"\n\n@implementation NSArray (MASAdditions)\n\n- (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *make))block {\n    NSMutableArray *constraints = [NSMutableArray array];\n    for (MAS_VIEW *view in self) {\n        NSAssert([view isKindOfClass:[MAS_VIEW class]], @\"All objects in the array must be views\");\n        [constraints addObjectsFromArray:[view mas_makeConstraints:block]];\n    }\n    return constraints;\n}\n\n- (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *make))block {\n    NSMutableArray *constraints = [NSMutableArray array];\n    for (MAS_VIEW *view in self) {\n        NSAssert([view isKindOfClass:[MAS_VIEW class]], @\"All objects in the array must be views\");\n        [constraints addObjectsFromArray:[view mas_updateConstraints:block]];\n    }\n    return constraints;\n}\n\n- (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block {\n    NSMutableArray *constraints = [NSMutableArray array];\n    for (MAS_VIEW *view in self) {\n        NSAssert([view isKindOfClass:[MAS_VIEW class]], @\"All objects in the array must be views\");\n        [constraints addObjectsFromArray:[view mas_remakeConstraints:block]];\n    }\n    return constraints;\n}\n\n- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType withFixedSpacing:(CGFloat)fixedSpacing leadSpacing:(CGFloat)leadSpacing tailSpacing:(CGFloat)tailSpacing {\n    if (self.count < 2) {\n        NSAssert(self.count>1,@\"views to distribute need to bigger than one\");\n        return;\n    }\n    \n    MAS_VIEW *tempSuperView = [self mas_commonSuperviewOfViews];\n    if (axisType == MASAxisTypeHorizontal) {\n        MAS_VIEW *prev;\n        for (int i = 0; i < self.count; i++) {\n            MAS_VIEW *v = self[i];\n            [v mas_makeConstraints:^(MASConstraintMaker *make) {\n                if (prev) {\n                    make.width.equalTo(prev);\n                    make.left.equalTo(prev.mas_right).offset(fixedSpacing);\n                    if (i == self.count - 1) {//last one\n                        make.right.equalTo(tempSuperView).offset(-tailSpacing);\n                    }\n                }\n                else {//first one\n                    make.left.equalTo(tempSuperView).offset(leadSpacing);\n                }\n                \n            }];\n            prev = v;\n        }\n    }\n    else {\n        MAS_VIEW *prev;\n        for (int i = 0; i < self.count; i++) {\n            MAS_VIEW *v = self[i];\n            [v mas_makeConstraints:^(MASConstraintMaker *make) {\n                if (prev) {\n                    make.height.equalTo(prev);\n                    make.top.equalTo(prev.mas_bottom).offset(fixedSpacing);\n                    if (i == self.count - 1) {//last one\n                        make.bottom.equalTo(tempSuperView).offset(-tailSpacing);\n                    }                    \n                }\n                else {//first one\n                    make.top.equalTo(tempSuperView).offset(leadSpacing);\n                }\n                \n            }];\n            prev = v;\n        }\n    }\n}\n\n- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType withFixedItemLength:(CGFloat)fixedItemLength leadSpacing:(CGFloat)leadSpacing tailSpacing:(CGFloat)tailSpacing {\n    if (self.count < 2) {\n        NSAssert(self.count>1,@\"views to distribute need to bigger than one\");\n        return;\n    }\n    \n    MAS_VIEW *tempSuperView = [self mas_commonSuperviewOfViews];\n    if (axisType == MASAxisTypeHorizontal) {\n        MAS_VIEW *prev;\n        for (int i = 0; i < self.count; i++) {\n            MAS_VIEW *v = self[i];\n            [v mas_makeConstraints:^(MASConstraintMaker *make) {\n                make.width.equalTo(@(fixedItemLength));\n                if (prev) {\n                    if (i == self.count - 1) {//last one\n                        make.right.equalTo(tempSuperView).offset(-tailSpacing);\n                    }\n                    else {\n                        CGFloat offset = (1-(i/((CGFloat)self.count-1)))*(fixedItemLength+leadSpacing)-i*tailSpacing/(((CGFloat)self.count-1));\n                        make.right.equalTo(tempSuperView).multipliedBy(i/((CGFloat)self.count-1)).with.offset(offset);\n                    }\n                }\n                else {//first one\n                    make.left.equalTo(tempSuperView).offset(leadSpacing);\n                }\n            }];\n            prev = v;\n        }\n    }\n    else {\n        MAS_VIEW *prev;\n        for (int i = 0; i < self.count; i++) {\n            MAS_VIEW *v = self[i];\n            [v mas_makeConstraints:^(MASConstraintMaker *make) {\n                make.height.equalTo(@(fixedItemLength));\n                if (prev) {\n                    if (i == self.count - 1) {//last one\n                        make.bottom.equalTo(tempSuperView).offset(-tailSpacing);\n                    }\n                    else {\n                        CGFloat offset = (1-(i/((CGFloat)self.count-1)))*(fixedItemLength+leadSpacing)-i*tailSpacing/(((CGFloat)self.count-1));\n                        make.bottom.equalTo(tempSuperView).multipliedBy(i/((CGFloat)self.count-1)).with.offset(offset);\n                    }\n                }\n                else {//first one\n                    make.top.equalTo(tempSuperView).offset(leadSpacing);\n                }\n            }];\n            prev = v;\n        }\n    }\n}\n\n- (MAS_VIEW *)mas_commonSuperviewOfViews\n{\n    MAS_VIEW *commonSuperview = nil;\n    MAS_VIEW *previousView = nil;\n    for (id object in self) {\n        if ([object isKindOfClass:[MAS_VIEW class]]) {\n            MAS_VIEW *view = (MAS_VIEW *)object;\n            if (previousView) {\n                commonSuperview = [view mas_closestCommonSuperview:commonSuperview];\n            } else {\n                commonSuperview = view;\n            }\n            previousView = view;\n        }\n    }\n    NSAssert(commonSuperview, @\"Can't constrain views that do not share a common superview. Make sure that all the views in this array have been added into the same view hierarchy.\");\n    return commonSuperview;\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h",
    "content": "//\n//  NSArray+MASShorthandAdditions.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 22/07/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import \"NSArray+MASAdditions.h\"\n\n#ifdef MAS_SHORTHAND\n\n/**\n *\tShorthand array additions without the 'mas_' prefixes,\n *  only enabled if MAS_SHORTHAND is defined\n */\n@interface NSArray (MASShorthandAdditions)\n\n- (NSArray *)makeConstraints:(void(^)(MASConstraintMaker *make))block;\n- (NSArray *)updateConstraints:(void(^)(MASConstraintMaker *make))block;\n- (NSArray *)remakeConstraints:(void(^)(MASConstraintMaker *make))block;\n\n@end\n\n@implementation NSArray (MASShorthandAdditions)\n\n- (NSArray *)makeConstraints:(void(^)(MASConstraintMaker *))block {\n    return [self mas_makeConstraints:block];\n}\n\n- (NSArray *)updateConstraints:(void(^)(MASConstraintMaker *))block {\n    return [self mas_updateConstraints:block];\n}\n\n- (NSArray *)remakeConstraints:(void(^)(MASConstraintMaker *))block {\n    return [self mas_remakeConstraints:block];\n}\n\n@end\n\n#endif\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h",
    "content": "//\n//  NSLayoutConstraint+MASDebugAdditions.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 3/08/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import \"MASUtilities.h\"\n\n/**\n *\tmakes debug and log output of NSLayoutConstraints more readable\n */\n@interface NSLayoutConstraint (MASDebugAdditions)\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m",
    "content": "//\n//  NSLayoutConstraint+MASDebugAdditions.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 3/08/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import \"NSLayoutConstraint+MASDebugAdditions.h\"\n#import \"MASConstraint.h\"\n#import \"MASLayoutConstraint.h\"\n\n@implementation NSLayoutConstraint (MASDebugAdditions)\n\n#pragma mark - description maps\n\n+ (NSDictionary *)layoutRelationDescriptionsByValue {\n    static dispatch_once_t once;\n    static NSDictionary *descriptionMap;\n    dispatch_once(&once, ^{\n        descriptionMap = @{\n            @(NSLayoutRelationEqual)                : @\"==\",\n            @(NSLayoutRelationGreaterThanOrEqual)   : @\">=\",\n            @(NSLayoutRelationLessThanOrEqual)      : @\"<=\",\n        };\n    });\n    return descriptionMap;\n}\n\n+ (NSDictionary *)layoutAttributeDescriptionsByValue {\n    static dispatch_once_t once;\n    static NSDictionary *descriptionMap;\n    dispatch_once(&once, ^{\n        descriptionMap = @{\n            @(NSLayoutAttributeTop)      : @\"top\",\n            @(NSLayoutAttributeLeft)     : @\"left\",\n            @(NSLayoutAttributeBottom)   : @\"bottom\",\n            @(NSLayoutAttributeRight)    : @\"right\",\n            @(NSLayoutAttributeLeading)  : @\"leading\",\n            @(NSLayoutAttributeTrailing) : @\"trailing\",\n            @(NSLayoutAttributeWidth)    : @\"width\",\n            @(NSLayoutAttributeHeight)   : @\"height\",\n            @(NSLayoutAttributeCenterX)  : @\"centerX\",\n            @(NSLayoutAttributeCenterY)  : @\"centerY\",\n            @(NSLayoutAttributeBaseline) : @\"baseline\",\n            \n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n            @(NSLayoutAttributeFirstBaseline) : @\"firstBaseline\",\n            @(NSLayoutAttributeLastBaseline) : @\"lastBaseline\",\n#endif\n            \n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n            @(NSLayoutAttributeLeftMargin)           : @\"leftMargin\",\n            @(NSLayoutAttributeRightMargin)          : @\"rightMargin\",\n            @(NSLayoutAttributeTopMargin)            : @\"topMargin\",\n            @(NSLayoutAttributeBottomMargin)         : @\"bottomMargin\",\n            @(NSLayoutAttributeLeadingMargin)        : @\"leadingMargin\",\n            @(NSLayoutAttributeTrailingMargin)       : @\"trailingMargin\",\n            @(NSLayoutAttributeCenterXWithinMargins) : @\"centerXWithinMargins\",\n            @(NSLayoutAttributeCenterYWithinMargins) : @\"centerYWithinMargins\",\n#endif\n            \n        };\n    \n    });\n    return descriptionMap;\n}\n\n\n+ (NSDictionary *)layoutPriorityDescriptionsByValue {\n    static dispatch_once_t once;\n    static NSDictionary *descriptionMap;\n    dispatch_once(&once, ^{\n#if TARGET_OS_IPHONE || TARGET_OS_TV\n        descriptionMap = @{\n            @(MASLayoutPriorityDefaultHigh)      : @\"high\",\n            @(MASLayoutPriorityDefaultLow)       : @\"low\",\n            @(MASLayoutPriorityDefaultMedium)    : @\"medium\",\n            @(MASLayoutPriorityRequired)         : @\"required\",\n            @(MASLayoutPriorityFittingSizeLevel) : @\"fitting size\",\n        };\n#elif TARGET_OS_MAC\n        descriptionMap = @{\n            @(MASLayoutPriorityDefaultHigh)                 : @\"high\",\n            @(MASLayoutPriorityDragThatCanResizeWindow)     : @\"drag can resize window\",\n            @(MASLayoutPriorityDefaultMedium)               : @\"medium\",\n            @(MASLayoutPriorityWindowSizeStayPut)           : @\"window size stay put\",\n            @(MASLayoutPriorityDragThatCannotResizeWindow)  : @\"drag cannot resize window\",\n            @(MASLayoutPriorityDefaultLow)                  : @\"low\",\n            @(MASLayoutPriorityFittingSizeCompression)      : @\"fitting size\",\n            @(MASLayoutPriorityRequired)                    : @\"required\",\n        };\n#endif\n    });\n    return descriptionMap;\n}\n\n#pragma mark - description override\n\n+ (NSString *)descriptionForObject:(id)obj {\n    if ([obj respondsToSelector:@selector(mas_key)] && [obj mas_key]) {\n        return [NSString stringWithFormat:@\"%@:%@\", [obj class], [obj mas_key]];\n    }\n    return [NSString stringWithFormat:@\"%@:%p\", [obj class], obj];\n}\n\n- (NSString *)description {\n    NSMutableString *description = [[NSMutableString alloc] initWithString:@\"<\"];\n\n    [description appendString:[self.class descriptionForObject:self]];\n\n    [description appendFormat:@\" %@\", [self.class descriptionForObject:self.firstItem]];\n    if (self.firstAttribute != NSLayoutAttributeNotAnAttribute) {\n        [description appendFormat:@\".%@\", self.class.layoutAttributeDescriptionsByValue[@(self.firstAttribute)]];\n    }\n\n    [description appendFormat:@\" %@\", self.class.layoutRelationDescriptionsByValue[@(self.relation)]];\n\n    if (self.secondItem) {\n        [description appendFormat:@\" %@\", [self.class descriptionForObject:self.secondItem]];\n    }\n    if (self.secondAttribute != NSLayoutAttributeNotAnAttribute) {\n        [description appendFormat:@\".%@\", self.class.layoutAttributeDescriptionsByValue[@(self.secondAttribute)]];\n    }\n    \n    if (self.multiplier != 1) {\n        [description appendFormat:@\" * %g\", self.multiplier];\n    }\n    \n    if (self.secondAttribute == NSLayoutAttributeNotAnAttribute) {\n        [description appendFormat:@\" %g\", self.constant];\n    } else {\n        if (self.constant) {\n            [description appendFormat:@\" %@ %g\", (self.constant < 0 ? @\"-\" : @\"+\"), ABS(self.constant)];\n        }\n    }\n\n    if (self.priority != MASLayoutPriorityRequired) {\n        [description appendFormat:@\" ^%@\", self.class.layoutPriorityDescriptionsByValue[@(self.priority)] ?: [NSNumber numberWithDouble:self.priority]];\n    }\n\n    [description appendString:@\">\"];\n    return description;\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/View+MASAdditions.h",
    "content": "//\n//  UIView+MASAdditions.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"MASUtilities.h\"\n#import \"MASConstraintMaker.h\"\n#import \"MASViewAttribute.h\"\n\n/**\n *\tProvides constraint maker block\n *  and convience methods for creating MASViewAttribute which are view + NSLayoutAttribute pairs\n */\n@interface MAS_VIEW (MASAdditions)\n\n/**\n *\tfollowing properties return a new MASViewAttribute with current view and appropriate NSLayoutAttribute\n */\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_left;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_top;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_right;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_bottom;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_leading;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_trailing;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_width;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_height;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_centerX;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_centerY;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_baseline;\n@property (nonatomic, strong, readonly) MASViewAttribute *(^mas_attribute)(NSLayoutAttribute attr);\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_firstBaseline;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_lastBaseline;\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_leftMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_rightMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_topMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_leadingMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_trailingMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_centerXWithinMargins;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_centerYWithinMargins;\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MAX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOWED >= 110000)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_safeAreaLayoutGuide API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_safeAreaLayoutGuideTop API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_safeAreaLayoutGuideBottom API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_safeAreaLayoutGuideLeft API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_safeAreaLayoutGuideRight API_AVAILABLE(ios(11.0),tvos(11.0));\n\n#endif\n\n/**\n *\ta key to associate with this view\n */\n@property (nonatomic, strong) id mas_key;\n\n/**\n *\tFinds the closest common superview between this view and another view\n *\n *\t@param\tview\tother view\n *\n *\t@return\treturns nil if common superview could not be found\n */\n- (instancetype)mas_closestCommonSuperview:(MAS_VIEW *)view;\n\n/**\n *  Creates a MASConstraintMaker with the callee view.\n *  Any constraints defined are added to the view or the appropriate superview once the block has finished executing\n *\n *  @param block scope within which you can build up the constraints which you wish to apply to the view.\n *\n *  @return Array of created MASConstraints\n */\n- (NSArray *)mas_makeConstraints:(void(NS_NOESCAPE ^)(MASConstraintMaker *make))block;\n\n/**\n *  Creates a MASConstraintMaker with the callee view.\n *  Any constraints defined are added to the view or the appropriate superview once the block has finished executing.\n *  If an existing constraint exists then it will be updated instead.\n *\n *  @param block scope within which you can build up the constraints which you wish to apply to the view.\n *\n *  @return Array of created/updated MASConstraints\n */\n- (NSArray *)mas_updateConstraints:(void(NS_NOESCAPE ^)(MASConstraintMaker *make))block;\n\n/**\n *  Creates a MASConstraintMaker with the callee view.\n *  Any constraints defined are added to the view or the appropriate superview once the block has finished executing.\n *  All constraints previously installed for the view will be removed.\n *\n *  @param block scope within which you can build up the constraints which you wish to apply to the view.\n *\n *  @return Array of created/updated MASConstraints\n */\n- (NSArray *)mas_remakeConstraints:(void(NS_NOESCAPE ^)(MASConstraintMaker *make))block;\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/View+MASAdditions.m",
    "content": "//\n//  UIView+MASAdditions.m\n//  Masonry\n//\n//  Created by Jonas Budelmann on 20/07/13.\n//  Copyright (c) 2013 cloudling. All rights reserved.\n//\n\n#import \"View+MASAdditions.h\"\n#import <objc/runtime.h>\n\n@implementation MAS_VIEW (MASAdditions)\n\n- (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *))block {\n    self.translatesAutoresizingMaskIntoConstraints = NO;\n    MASConstraintMaker *constraintMaker = [[MASConstraintMaker alloc] initWithView:self];\n    block(constraintMaker);\n    return [constraintMaker install];\n}\n\n- (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *))block {\n    self.translatesAutoresizingMaskIntoConstraints = NO;\n    MASConstraintMaker *constraintMaker = [[MASConstraintMaker alloc] initWithView:self];\n    constraintMaker.updateExisting = YES;\n    block(constraintMaker);\n    return [constraintMaker install];\n}\n\n- (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block {\n    self.translatesAutoresizingMaskIntoConstraints = NO;\n    MASConstraintMaker *constraintMaker = [[MASConstraintMaker alloc] initWithView:self];\n    constraintMaker.removeExisting = YES;\n    block(constraintMaker);\n    return [constraintMaker install];\n}\n\n#pragma mark - NSLayoutAttribute properties\n\n- (MASViewAttribute *)mas_left {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeLeft];\n}\n\n- (MASViewAttribute *)mas_top {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeTop];\n}\n\n- (MASViewAttribute *)mas_right {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeRight];\n}\n\n- (MASViewAttribute *)mas_bottom {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeBottom];\n}\n\n- (MASViewAttribute *)mas_leading {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeLeading];\n}\n\n- (MASViewAttribute *)mas_trailing {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeTrailing];\n}\n\n- (MASViewAttribute *)mas_width {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeWidth];\n}\n\n- (MASViewAttribute *)mas_height {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeHeight];\n}\n\n- (MASViewAttribute *)mas_centerX {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeCenterX];\n}\n\n- (MASViewAttribute *)mas_centerY {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeCenterY];\n}\n\n- (MASViewAttribute *)mas_baseline {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeBaseline];\n}\n\n- (MASViewAttribute *(^)(NSLayoutAttribute))mas_attribute\n{\n    return ^(NSLayoutAttribute attr) {\n        return [[MASViewAttribute alloc] initWithView:self layoutAttribute:attr];\n    };\n}\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n- (MASViewAttribute *)mas_firstBaseline {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeFirstBaseline];\n}\n- (MASViewAttribute *)mas_lastBaseline {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeLastBaseline];\n}\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n- (MASViewAttribute *)mas_leftMargin {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeLeftMargin];\n}\n\n- (MASViewAttribute *)mas_rightMargin {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeRightMargin];\n}\n\n- (MASViewAttribute *)mas_topMargin {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeTopMargin];\n}\n\n- (MASViewAttribute *)mas_bottomMargin {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeBottomMargin];\n}\n\n- (MASViewAttribute *)mas_leadingMargin {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeLeadingMargin];\n}\n\n- (MASViewAttribute *)mas_trailingMargin {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeTrailingMargin];\n}\n\n- (MASViewAttribute *)mas_centerXWithinMargins {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeCenterXWithinMargins];\n}\n\n- (MASViewAttribute *)mas_centerYWithinMargins {\n    return [[MASViewAttribute alloc] initWithView:self layoutAttribute:NSLayoutAttributeCenterYWithinMargins];\n}\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MAX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOWED >= 110000)\n\n- (MASViewAttribute *)mas_safeAreaLayoutGuide {\n    return [[MASViewAttribute alloc] initWithView:self item:self.safeAreaLayoutGuide layoutAttribute:NSLayoutAttributeBottom];\n}\n- (MASViewAttribute *)mas_safeAreaLayoutGuideTop {\n    return [[MASViewAttribute alloc] initWithView:self item:self.safeAreaLayoutGuide layoutAttribute:NSLayoutAttributeTop];\n}\n- (MASViewAttribute *)mas_safeAreaLayoutGuideBottom {\n    return [[MASViewAttribute alloc] initWithView:self item:self.safeAreaLayoutGuide layoutAttribute:NSLayoutAttributeBottom];\n}\n- (MASViewAttribute *)mas_safeAreaLayoutGuideLeft {\n    return [[MASViewAttribute alloc] initWithView:self item:self.safeAreaLayoutGuide layoutAttribute:NSLayoutAttributeLeft];\n}\n- (MASViewAttribute *)mas_safeAreaLayoutGuideRight {\n    return [[MASViewAttribute alloc] initWithView:self item:self.safeAreaLayoutGuide layoutAttribute:NSLayoutAttributeRight];\n}\n\n#endif\n\n#pragma mark - associated properties\n\n- (id)mas_key {\n    return objc_getAssociatedObject(self, @selector(mas_key));\n}\n\n- (void)setMas_key:(id)key {\n    objc_setAssociatedObject(self, @selector(mas_key), key, OBJC_ASSOCIATION_RETAIN_NONATOMIC);\n}\n\n#pragma mark - heirachy\n\n- (instancetype)mas_closestCommonSuperview:(MAS_VIEW *)view {\n    MAS_VIEW *closestCommonSuperview = nil;\n\n    MAS_VIEW *secondViewSuperview = view;\n    while (!closestCommonSuperview && secondViewSuperview) {\n        MAS_VIEW *firstViewSuperview = self;\n        while (!closestCommonSuperview && firstViewSuperview) {\n            if (secondViewSuperview == firstViewSuperview) {\n                closestCommonSuperview = secondViewSuperview;\n            }\n            firstViewSuperview = firstViewSuperview.superview;\n        }\n        secondViewSuperview = secondViewSuperview.superview;\n    }\n    return closestCommonSuperview;\n}\n\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/View+MASShorthandAdditions.h",
    "content": "//\n//  UIView+MASShorthandAdditions.h\n//  Masonry\n//\n//  Created by Jonas Budelmann on 22/07/13.\n//  Copyright (c) 2013 Jonas Budelmann. All rights reserved.\n//\n\n#import \"View+MASAdditions.h\"\n\n#ifdef MAS_SHORTHAND\n\n/**\n *\tShorthand view additions without the 'mas_' prefixes,\n *  only enabled if MAS_SHORTHAND is defined\n */\n@interface MAS_VIEW (MASShorthandAdditions)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *left;\n@property (nonatomic, strong, readonly) MASViewAttribute *top;\n@property (nonatomic, strong, readonly) MASViewAttribute *right;\n@property (nonatomic, strong, readonly) MASViewAttribute *bottom;\n@property (nonatomic, strong, readonly) MASViewAttribute *leading;\n@property (nonatomic, strong, readonly) MASViewAttribute *trailing;\n@property (nonatomic, strong, readonly) MASViewAttribute *width;\n@property (nonatomic, strong, readonly) MASViewAttribute *height;\n@property (nonatomic, strong, readonly) MASViewAttribute *centerX;\n@property (nonatomic, strong, readonly) MASViewAttribute *centerY;\n@property (nonatomic, strong, readonly) MASViewAttribute *baseline;\n@property (nonatomic, strong, readonly) MASViewAttribute *(^attribute)(NSLayoutAttribute attr);\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *firstBaseline;\n@property (nonatomic, strong, readonly) MASViewAttribute *lastBaseline;\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *leftMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *rightMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *topMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *bottomMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *leadingMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *trailingMargin;\n@property (nonatomic, strong, readonly) MASViewAttribute *centerXWithinMargins;\n@property (nonatomic, strong, readonly) MASViewAttribute *centerYWithinMargins;\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MAX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOWED >= 110000)\n\n@property (nonatomic, strong, readonly) MASViewAttribute *safeAreaLayoutGuideTop API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *safeAreaLayoutGuideBottom API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *safeAreaLayoutGuideLeft API_AVAILABLE(ios(11.0),tvos(11.0));\n@property (nonatomic, strong, readonly) MASViewAttribute *safeAreaLayoutGuideRight API_AVAILABLE(ios(11.0),tvos(11.0));\n\n#endif\n\n- (NSArray *)makeConstraints:(void(^)(MASConstraintMaker *make))block;\n- (NSArray *)updateConstraints:(void(^)(MASConstraintMaker *make))block;\n- (NSArray *)remakeConstraints:(void(^)(MASConstraintMaker *make))block;\n\n@end\n\n#define MAS_ATTR_FORWARD(attr)  \\\n- (MASViewAttribute *)attr {    \\\n    return [self mas_##attr];   \\\n}\n\n@implementation MAS_VIEW (MASShorthandAdditions)\n\nMAS_ATTR_FORWARD(top);\nMAS_ATTR_FORWARD(left);\nMAS_ATTR_FORWARD(bottom);\nMAS_ATTR_FORWARD(right);\nMAS_ATTR_FORWARD(leading);\nMAS_ATTR_FORWARD(trailing);\nMAS_ATTR_FORWARD(width);\nMAS_ATTR_FORWARD(height);\nMAS_ATTR_FORWARD(centerX);\nMAS_ATTR_FORWARD(centerY);\nMAS_ATTR_FORWARD(baseline);\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100)\n\nMAS_ATTR_FORWARD(firstBaseline);\nMAS_ATTR_FORWARD(lastBaseline);\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000)\n\nMAS_ATTR_FORWARD(leftMargin);\nMAS_ATTR_FORWARD(rightMargin);\nMAS_ATTR_FORWARD(topMargin);\nMAS_ATTR_FORWARD(bottomMargin);\nMAS_ATTR_FORWARD(leadingMargin);\nMAS_ATTR_FORWARD(trailingMargin);\nMAS_ATTR_FORWARD(centerXWithinMargins);\nMAS_ATTR_FORWARD(centerYWithinMargins);\n\n#endif\n\n#if (__IPHONE_OS_VERSION_MAX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOWED >= 110000)\n\nMAS_ATTR_FORWARD(safeAreaLayoutGuideTop);\nMAS_ATTR_FORWARD(safeAreaLayoutGuideBottom);\nMAS_ATTR_FORWARD(safeAreaLayoutGuideLeft);\nMAS_ATTR_FORWARD(safeAreaLayoutGuideRight);\n\n#endif\n\n- (MASViewAttribute *(^)(NSLayoutAttribute))attribute {\n    return [self mas_attribute];\n}\n\n- (NSArray *)makeConstraints:(void(NS_NOESCAPE ^)(MASConstraintMaker *))block {\n    return [self mas_makeConstraints:block];\n}\n\n- (NSArray *)updateConstraints:(void(NS_NOESCAPE ^)(MASConstraintMaker *))block {\n    return [self mas_updateConstraints:block];\n}\n\n- (NSArray *)remakeConstraints:(void(NS_NOESCAPE ^)(MASConstraintMaker *))block {\n    return [self mas_remakeConstraints:block];\n}\n\n@end\n\n#endif\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/ViewController+MASAdditions.h",
    "content": "//\n//  UIViewController+MASAdditions.h\n//  Masonry\n//\n//  Created by Craig Siemens on 2015-06-23.\n//\n//\n\n#import \"MASUtilities.h\"\n#import \"MASConstraintMaker.h\"\n#import \"MASViewAttribute.h\"\n\n#ifdef MAS_VIEW_CONTROLLER\n\n@interface MAS_VIEW_CONTROLLER (MASAdditions)\n\n/**\n *\tfollowing properties return a new MASViewAttribute with appropriate UILayoutGuide and NSLayoutAttribute\n */\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuide;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuide;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuideTop;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuideBottom;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuideTop;\n@property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuideBottom;\n\n\n@end\n\n#endif\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/Masonry/ViewController+MASAdditions.m",
    "content": "//\n//  UIViewController+MASAdditions.m\n//  Masonry\n//\n//  Created by Craig Siemens on 2015-06-23.\n//\n//\n\n#import \"ViewController+MASAdditions.h\"\n\n#ifdef MAS_VIEW_CONTROLLER\n\n@implementation MAS_VIEW_CONTROLLER (MASAdditions)\n\n- (MASViewAttribute *)mas_topLayoutGuide {\n    return [[MASViewAttribute alloc] initWithView:self.view item:self.topLayoutGuide layoutAttribute:NSLayoutAttributeBottom];\n}\n- (MASViewAttribute *)mas_topLayoutGuideTop {\n    return [[MASViewAttribute alloc] initWithView:self.view item:self.topLayoutGuide layoutAttribute:NSLayoutAttributeTop];\n}\n- (MASViewAttribute *)mas_topLayoutGuideBottom {\n    return [[MASViewAttribute alloc] initWithView:self.view item:self.topLayoutGuide layoutAttribute:NSLayoutAttributeBottom];\n}\n\n- (MASViewAttribute *)mas_bottomLayoutGuide {\n    return [[MASViewAttribute alloc] initWithView:self.view item:self.bottomLayoutGuide layoutAttribute:NSLayoutAttributeTop];\n}\n- (MASViewAttribute *)mas_bottomLayoutGuideTop {\n    return [[MASViewAttribute alloc] initWithView:self.view item:self.bottomLayoutGuide layoutAttribute:NSLayoutAttributeTop];\n}\n- (MASViewAttribute *)mas_bottomLayoutGuideBottom {\n    return [[MASViewAttribute alloc] initWithView:self.view item:self.bottomLayoutGuide layoutAttribute:NSLayoutAttributeBottom];\n}\n\n\n\n@end\n\n#endif\n"
  },
  {
    "path": "CMPageTitleView/Pods/Masonry/README.md",
    "content": "# Masonry [![Build Status](https://travis-ci.org/SnapKit/Masonry.svg?branch=master)](https://travis-ci.org/SnapKit/Masonry) [![Coverage Status](https://img.shields.io/coveralls/SnapKit/Masonry.svg?style=flat-square)](https://coveralls.io/r/SnapKit/Masonry) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) ![Pod Version](https://img.shields.io/cocoapods/v/Masonry.svg?style=flat)\n\n**Masonry is still actively maintained, we are committed to fixing bugs and merging good quality PRs from the wider community. However if you're using Swift in your project, we recommend using [SnapKit](https://github.com/SnapKit/SnapKit) as it provides better type safety with a simpler API.**\n\nMasonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonry has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable.\nMasonry supports iOS and Mac OS X.\n\nFor examples take a look at the **Masonry iOS Examples** project in the Masonry workspace. You will need to run `pod install` after downloading.\n\n## What's wrong with NSLayoutConstraints?\n\nUnder the hood Auto Layout is a powerful and flexible way of organising and laying out your views. However creating constraints from code is verbose and not very descriptive.\nImagine a simple example in which you want to have a view fill its superview but inset by 10 pixels on every side\n```obj-c\nUIView *superview = self.view;\n\nUIView *view1 = [[UIView alloc] init];\nview1.translatesAutoresizingMaskIntoConstraints = NO;\nview1.backgroundColor = [UIColor greenColor];\n[superview addSubview:view1];\n\nUIEdgeInsets padding = UIEdgeInsetsMake(10, 10, 10, 10);\n\n[superview addConstraints:@[\n\n    //view1 constraints\n    [NSLayoutConstraint constraintWithItem:view1\n                                 attribute:NSLayoutAttributeTop\n                                 relatedBy:NSLayoutRelationEqual\n                                    toItem:superview\n                                 attribute:NSLayoutAttributeTop\n                                multiplier:1.0\n                                  constant:padding.top],\n\n    [NSLayoutConstraint constraintWithItem:view1\n                                 attribute:NSLayoutAttributeLeft\n                                 relatedBy:NSLayoutRelationEqual\n                                    toItem:superview\n                                 attribute:NSLayoutAttributeLeft\n                                multiplier:1.0\n                                  constant:padding.left],\n\n    [NSLayoutConstraint constraintWithItem:view1\n                                 attribute:NSLayoutAttributeBottom\n                                 relatedBy:NSLayoutRelationEqual\n                                    toItem:superview\n                                 attribute:NSLayoutAttributeBottom\n                                multiplier:1.0\n                                  constant:-padding.bottom],\n\n    [NSLayoutConstraint constraintWithItem:view1\n                                 attribute:NSLayoutAttributeRight\n                                 relatedBy:NSLayoutRelationEqual\n                                    toItem:superview\n                                 attribute:NSLayoutAttributeRight\n                                multiplier:1\n                                  constant:-padding.right],\n\n ]];\n```\nEven with such a simple example the code needed is quite verbose and quickly becomes unreadable when you have more than 2 or 3 views.\nAnother option is to use Visual Format Language (VFL), which is a bit less long winded.\nHowever the ASCII type syntax has its own pitfalls and its also a bit harder to animate as `NSLayoutConstraint constraintsWithVisualFormat:` returns an array.\n\n## Prepare to meet your Maker!\n\nHeres the same constraints created using MASConstraintMaker\n\n```obj-c\nUIEdgeInsets padding = UIEdgeInsetsMake(10, 10, 10, 10);\n\n[view1 mas_makeConstraints:^(MASConstraintMaker *make) {\n    make.top.equalTo(superview.mas_top).with.offset(padding.top); //with is an optional semantic filler\n    make.left.equalTo(superview.mas_left).with.offset(padding.left);\n    make.bottom.equalTo(superview.mas_bottom).with.offset(-padding.bottom);\n    make.right.equalTo(superview.mas_right).with.offset(-padding.right);\n}];\n```\nOr even shorter\n\n```obj-c\n[view1 mas_makeConstraints:^(MASConstraintMaker *make) {\n    make.edges.equalTo(superview).with.insets(padding);\n}];\n```\n\nAlso note in the first example we had to add the constraints to the superview `[superview addConstraints:...`.\nMasonry however will automagically add constraints to the appropriate view.\n\nMasonry will also call `view1.translatesAutoresizingMaskIntoConstraints = NO;` for you.\n\n## Not all things are created equal\n\n> `.equalTo` equivalent to **NSLayoutRelationEqual**\n\n> `.lessThanOrEqualTo` equivalent to **NSLayoutRelationLessThanOrEqual**\n\n> `.greaterThanOrEqualTo` equivalent to **NSLayoutRelationGreaterThanOrEqual**\n\nThese three equality constraints accept one argument which can be any of the following:\n\n#### 1. MASViewAttribute\n\n```obj-c\nmake.centerX.lessThanOrEqualTo(view2.mas_left);\n```\n\nMASViewAttribute           |  NSLayoutAttribute\n-------------------------  |  --------------------------\nview.mas_left              |  NSLayoutAttributeLeft\nview.mas_right             |  NSLayoutAttributeRight\nview.mas_top               |  NSLayoutAttributeTop\nview.mas_bottom            |  NSLayoutAttributeBottom\nview.mas_leading           |  NSLayoutAttributeLeading\nview.mas_trailing          |  NSLayoutAttributeTrailing\nview.mas_width             |  NSLayoutAttributeWidth\nview.mas_height            |  NSLayoutAttributeHeight\nview.mas_centerX           |  NSLayoutAttributeCenterX\nview.mas_centerY           |  NSLayoutAttributeCenterY\nview.mas_baseline          |  NSLayoutAttributeBaseline\n\n#### 2. UIView/NSView\n\nif you want view.left to be greater than or equal to label.left :\n```obj-c\n//these two constraints are exactly the same\nmake.left.greaterThanOrEqualTo(label);\nmake.left.greaterThanOrEqualTo(label.mas_left);\n```\n\n#### 3. NSNumber\n\nAuto Layout allows width and height to be set to constant values.\nif you want to set view to have a minimum and maximum width you could pass a number to the equality blocks:\n```obj-c\n//width >= 200 && width <= 400\nmake.width.greaterThanOrEqualTo(@200);\nmake.width.lessThanOrEqualTo(@400)\n```\n\nHowever Auto Layout does not allow alignment attributes such as left, right, centerY etc to be set to constant values.\nSo if you pass a NSNumber for these attributes Masonry will turn these into constraints relative to the view&rsquo;s superview ie:\n```obj-c\n//creates view.left = view.superview.left + 10\nmake.left.lessThanOrEqualTo(@10)\n```\n\nInstead of using NSNumber, you can use primitives and structs to build your constraints, like so:\n```obj-c\nmake.top.mas_equalTo(42);\nmake.height.mas_equalTo(20);\nmake.size.mas_equalTo(CGSizeMake(50, 100));\nmake.edges.mas_equalTo(UIEdgeInsetsMake(10, 0, 10, 0));\nmake.left.mas_equalTo(view).mas_offset(UIEdgeInsetsMake(10, 0, 10, 0));\n```\n\nBy default, macros which support [autoboxing](https://en.wikipedia.org/wiki/Autoboxing#Autoboxing) are prefixed with `mas_`. Unprefixed versions are available by defining `MAS_SHORTHAND_GLOBALS` before importing Masonry.\n\n#### 4. NSArray\n\nAn array of a mixture of any of the previous types\n```obj-c\nmake.height.equalTo(@[view1.mas_height, view2.mas_height]);\nmake.height.equalTo(@[view1, view2]);\nmake.left.equalTo(@[view1, @100, view3.right]);\n````\n\n## Learn to prioritize\n\n> `.priority` allows you to specify an exact priority\n\n> `.priorityHigh` equivalent to **UILayoutPriorityDefaultHigh**\n\n> `.priorityMedium` is half way between high and low\n\n> `.priorityLow` equivalent to **UILayoutPriorityDefaultLow**\n\nPriorities are can be tacked on to the end of a constraint chain like so:\n```obj-c\nmake.left.greaterThanOrEqualTo(label.mas_left).with.priorityLow();\n\nmake.top.equalTo(label.mas_top).with.priority(600);\n```\n\n## Composition, composition, composition\n\nMasonry also gives you a few convenience methods which create multiple constraints at the same time. These are called MASCompositeConstraints\n\n#### edges\n\n```obj-c\n// make top, left, bottom, right equal view2\nmake.edges.equalTo(view2);\n\n// make top = superview.top + 5, left = superview.left + 10,\n//      bottom = superview.bottom - 15, right = superview.right - 20\nmake.edges.equalTo(superview).insets(UIEdgeInsetsMake(5, 10, 15, 20))\n```\n\n#### size\n\n```obj-c\n// make width and height greater than or equal to titleLabel\nmake.size.greaterThanOrEqualTo(titleLabel)\n\n// make width = superview.width + 100, height = superview.height - 50\nmake.size.equalTo(superview).sizeOffset(CGSizeMake(100, -50))\n```\n\n#### center\n```obj-c\n// make centerX and centerY = button1\nmake.center.equalTo(button1)\n\n// make centerX = superview.centerX - 5, centerY = superview.centerY + 10\nmake.center.equalTo(superview).centerOffset(CGPointMake(-5, 10))\n```\n\nYou can chain view attributes for increased readability:\n\n```obj-c\n// All edges but the top should equal those of the superview\nmake.left.right.and.bottom.equalTo(superview);\nmake.top.equalTo(otherView);\n```\n\n## Hold on for dear life\n\nSometimes you need modify existing constraints in order to animate or remove/replace constraints.\nIn Masonry there are a few different approaches to updating constraints.\n\n#### 1. References\nYou can hold on to a reference of a particular constraint by assigning the result of a constraint make expression to a local variable or a class property.\nYou could also reference multiple constraints by storing them away in an array.\n\n```obj-c\n// in public/private interface\n@property (nonatomic, strong) MASConstraint *topConstraint;\n\n...\n\n// when making constraints\n[view1 mas_makeConstraints:^(MASConstraintMaker *make) {\n    self.topConstraint = make.top.equalTo(superview.mas_top).with.offset(padding.top);\n    make.left.equalTo(superview.mas_left).with.offset(padding.left);\n}];\n\n...\n// then later you can call\n[self.topConstraint uninstall];\n```\n\n#### 2. mas_updateConstraints\nAlternatively if you are only updating the constant value of the constraint you can use the convience method `mas_updateConstraints` instead of `mas_makeConstraints`\n\n```obj-c\n// this is Apple's recommended place for adding/updating constraints\n// this method can get called multiple times in response to setNeedsUpdateConstraints\n// which can be called by UIKit internally or in your code if you need to trigger an update to your constraints\n- (void)updateConstraints {\n    [self.growingButton mas_updateConstraints:^(MASConstraintMaker *make) {\n        make.center.equalTo(self);\n        make.width.equalTo(@(self.buttonSize.width)).priorityLow();\n        make.height.equalTo(@(self.buttonSize.height)).priorityLow();\n        make.width.lessThanOrEqualTo(self);\n        make.height.lessThanOrEqualTo(self);\n    }];\n\n    //according to apple super should be called at end of method\n    [super updateConstraints];\n}\n```\n\n### 3. mas_remakeConstraints\n`mas_updateConstraints` is useful for updating a set of constraints, but doing anything beyond updating constant values can get exhausting. That's where `mas_remakeConstraints` comes in.\n\n`mas_remakeConstraints` is similar to `mas_updateConstraints`, but instead of updating constant values, it will remove all of its constraints before installing them again. This lets you provide different constraints without having to keep around references to ones which you want to remove.\n\n```obj-c\n- (void)changeButtonPosition {\n    [self.button mas_remakeConstraints:^(MASConstraintMaker *make) {\n        make.size.equalTo(self.buttonSize);\n\n        if (topLeft) {\n        \tmake.top.and.left.offset(10);\n        } else {\n        \tmake.bottom.and.right.offset(-10);\n        }\n    }];\n}\n```\n\nYou can find more detailed examples of all three approaches in the **Masonry iOS Examples** project.\n\n## When the ^&*!@ hits the fan!\n\nLaying out your views doesn't always goto plan. So when things literally go pear shaped, you don't want to be looking at console output like this:\n\n```obj-c\nUnable to simultaneously satisfy constraints.....blah blah blah....\n(\n    \"<NSLayoutConstraint:0x7189ac0 V:[UILabel:0x7186980(>=5000)]>\",\n    \"<NSAutoresizingMaskLayoutConstraint:0x839ea20 h=--& v=--& V:[MASExampleDebuggingView:0x7186560(416)]>\",\n    \"<NSLayoutConstraint:0x7189c70 UILabel:0x7186980.bottom == MASExampleDebuggingView:0x7186560.bottom - 10>\",\n    \"<NSLayoutConstraint:0x7189560 V:|-(1)-[UILabel:0x7186980]   (Names: '|':MASExampleDebuggingView:0x7186560 )>\"\n)\n\nWill attempt to recover by breaking constraint\n<NSLayoutConstraint:0x7189ac0 V:[UILabel:0x7186980(>=5000)]>\n```\n\nMasonry adds a category to NSLayoutConstraint which overrides the default implementation of `- (NSString *)description`.\nNow you can give meaningful names to views and constraints, and also easily pick out the constraints created by Masonry.\n\nwhich means your console output can now look like this:\n\n```obj-c\nUnable to simultaneously satisfy constraints......blah blah blah....\n(\n    \"<NSAutoresizingMaskLayoutConstraint:0x8887740 MASExampleDebuggingView:superview.height == 416>\",\n    \"<MASLayoutConstraint:ConstantConstraint UILabel:messageLabel.height >= 5000>\",\n    \"<MASLayoutConstraint:BottomConstraint UILabel:messageLabel.bottom == MASExampleDebuggingView:superview.bottom - 10>\",\n    \"<MASLayoutConstraint:ConflictingConstraint[0] UILabel:messageLabel.top == MASExampleDebuggingView:superview.top + 1>\"\n)\n\nWill attempt to recover by breaking constraint\n<MASLayoutConstraint:ConstantConstraint UILabel:messageLabel.height >= 5000>\n```\n\nFor an example of how to set this up take a look at the **Masonry iOS Examples** project in the Masonry workspace.\n\n## Where should I create my constraints?\n\n```objc\n@implementation DIYCustomView\n\n- (id)init {\n    self = [super init];\n    if (!self) return nil;\n\n    // --- Create your views here ---\n    self.button = [[UIButton alloc] init];\n\n    return self;\n}\n\n// tell UIKit that you are using AutoLayout\n+ (BOOL)requiresConstraintBasedLayout {\n    return YES;\n}\n\n// this is Apple's recommended place for adding/updating constraints\n- (void)updateConstraints {\n\n    // --- remake/update constraints here\n    [self.button remakeConstraints:^(MASConstraintMaker *make) {\n        make.width.equalTo(@(self.buttonSize.width));\n        make.height.equalTo(@(self.buttonSize.height));\n    }];\n    \n    //according to apple super should be called at end of method\n    [super updateConstraints];\n}\n\n- (void)didTapButton:(UIButton *)button {\n    // --- Do your changes ie change variables that affect your layout etc ---\n    self.buttonSize = CGSize(200, 200);\n\n    // tell constraints they need updating\n    [self setNeedsUpdateConstraints];\n}\n\n@end\n```\n\n## Installation\nUse the [orsome](http://www.youtube.com/watch?v=YaIZF8uUTtk) [CocoaPods](http://github.com/CocoaPods/CocoaPods).\n\nIn your Podfile\n>`pod 'Masonry'`\n\nIf you want to use masonry without all those pesky 'mas_' prefixes. Add #define MAS_SHORTHAND to your prefix.pch before importing Masonry\n>`#define MAS_SHORTHAND`\n\nGet busy Masoning\n>`#import \"Masonry.h\"`\n\n## Code Snippets\n\nCopy the included code snippets to ``~/Library/Developer/Xcode/UserData/CodeSnippets`` to write your masonry blocks at lightning speed!\n\n`mas_make` -> ` [<#view#> mas_makeConstraints:^(MASConstraintMaker *make) {\n     <#code#>\n }];`\n\n`mas_update` -> ` [<#view#> mas_updateConstraints:^(MASConstraintMaker *make) {\n     <#code#>\n }];`\n\n`mas_remake` -> ` [<#view#> mas_remakeConstraints:^(MASConstraintMaker *make) {\n     <#code#>\n }];`\n\n## Features\n* Not limited to subset of Auto Layout. Anything NSLayoutConstraint can do, Masonry can do too!\n* Great debug support, give your views and constraints meaningful names.\n* Constraints read like sentences.\n* No crazy macro magic. Masonry won't pollute the global namespace with macros.\n* Not string or dictionary based and hence you get compile time checking.\n\n## TODO\n* Eye candy\n* Mac example project\n* More tests and examples\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Pods.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 51;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t050A189DF0B4F405E9D3389F24EDF835 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5853BD58B4521FBFF2A8A3D159F898 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t05A040F35BF1C88F869404E1A940B493 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA2EDE47B964AC11F486837D63E2860 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t05EA1447EEA0EB669F8DEE73964A7C60 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6731151681D56842659A55111E28F2BB /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t06AEA7117FE98F2409D2432AAEC326A8 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2551BE986A32088BDE209F47485256 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t0967598607D521318F69D7D39D517B20 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6136CCE8A30E0E3797060C0AA431BD80 /* ViewController+MASAdditions.m */; };\n\t\t098630ECDB64ED7B89F5F687C82B4AC3 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 48C0BB9A3CECFD13B418C71AE6F62A16 /* NSArray+MASAdditions.m */; };\n\t\t0AECE221BADEA19083FC0CACE5973D8A /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 969C926E4CC79AB6FE4C1D0C414D732A /* MJRefreshFooter.m */; };\n\t\t0AF1AD35706D90B1A91F291B899EF8C0 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D96574DF8B434321EBBC30A67E08C2 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t0F47C7DE634D4FE07B595912093139FE /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D8B038DCF63D69CF9A8FE40AB097C2EA /* MJRefresh.bundle */; };\n\t\t13611CB0839D7F8C3EFCB9F9ED5495BD /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = C390E62F311D43C9B026E8422636AA64 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t1972E85F0FCD0F3EAF28ED7CD036286E /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30E9201613B1E0097657C20E8B0B28F3 /* Masonry-dummy.m */; };\n\t\t1C2EF8A09FA2E0C380229C9D93AB7E9F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */; };\n\t\t22513825A54DC9B8C23BF0CC7F45B00F /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = B7CF07A659DA3FD1417E55C3D940CAB2 /* MJRefreshConst.m */; };\n\t\t22B4E8E332D6508E244D2A0BFBEA6ABB /* Pods-CMPageTitleViewUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 50326B09F3EE3C1566A9F7F13549C043 /* Pods-CMPageTitleViewUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t280D36330BAC5715615FF4A8B42D60D6 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 4807F6C9C23935122DBF8F9CF2B0DAE5 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t297A3627CF2F032CBFDC61D1A3786E63 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 2444DD08B0775A8D476F3D23751A25AA /* MASViewAttribute.m */; };\n\t\t32DA0F5869BC32AEB94CA0A5DD9C8389 /* Pods-CMPageTitleViewTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0972DACFACDAD2180ADF1DFD6295DC59 /* Pods-CMPageTitleViewTests-dummy.m */; };\n\t\t33BFFC3BE2A20264B8F11AF0F4A889E6 /* Pods-CMPageTitleView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 176633DDD680434231633C3F2146515D /* Pods-CMPageTitleView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t346080C0D1CA23399ADD739D722D7CEF /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 367E319CA582DABE128B26B726DE77D7 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t39172F66777E6BC6EBFFC5948E3CC765 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C5269E7EBEF6D14DC61F631E2C3D65 /* MJRefreshNormalHeader.m */; };\n\t\t3DA5F1D8E51CDD102A871C2F37770C7B /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB8E52A5D4A105CDC9CA4C29A026CD8 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4055A0ACF4681DEA04E2F0AECD0B97B2 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = D03159CF32D95C81F0F83D2A897ECFB5 /* UIScrollView+MJRefresh.m */; };\n\t\t45626116C19AA54A2359E85DAEB5AD42 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 20DFE963091020A5048A0C0A66E56646 /* UIScrollView+MJExtension.m */; };\n\t\t4583409C21FCF11CB11FE51B0B235A00 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F789481302EC7C6996182B0AE6E0A1D /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t47C5E12941194A00ED65EECCD1E4B9C3 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FA0D4A95BD573E2B5710C8C402E7AFF /* MJRefreshComponent.m */; };\n\t\t4B0981F9AC628CF5100C50FF4A163A4A /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0192A3EBF7EDC052F89FDAFDE47CE40D /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4D112B5D14F7B1A1D92F9ACBA122609E /* Pods-CMPageTitleViewTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 71882775BC6804A4893B191B56C56797 /* Pods-CMPageTitleViewTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4F5A97CA16447E2BDF919A40C1652E9F /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D13B90C852AC70B777ABB43F13A6CE2 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t528237787EC24E25AD6BB486B1BEBE5D /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B5FB5952B431CD293A90418EA9F8F1D /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t595527C54E24251571AA3B9E61D616BE /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 849E3A6E3C5F02101F8D2D1E06853C1A /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t5A384A2C99EB807D449323F9814098A9 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CC90E78B946FC4937FE16FB420CE15E /* MJRefresh-dummy.m */; };\n\t\t61EF33C64C26EDF6A86430C30CCC8125 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A2CC277F1A836E56D5C94DE1420A095C /* MJRefreshAutoFooter.m */; };\n\t\t64FAE071FA6CADC6F4543DCD82705D12 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B4CC43BC9D3B607239F8F525790740D0 /* UIView+MJExtension.m */; };\n\t\t675F8319809B90A18BB685E1EA09F886 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 79F8F647B0719B7ABC2232A76D22EA3B /* MJRefreshAutoNormalFooter.m */; };\n\t\t696BEC58A027BCCDFB378637C75C78A5 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1135AA186408C7594B27F642666F6D /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t6A6AD3A5BBDBFD0B4AF936BD518EC0B1 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F085AFB51B2FB51DB03B43386850C3D /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t6C1461ED2AF53643934B4B97E9BB8A7D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F7856316859155F5DB3FD2ED3A749330 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t6F11BF93701AB356B1CE164B6A438498 /* Pods-CMPageTitleView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B6BAE7FE0F4764770884ED3CD66C4DB8 /* Pods-CMPageTitleView-dummy.m */; };\n\t\t710200F11DC7A1879D4DD570EAC49AEC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */; };\n\t\t78B2727EE5D693F58D019DB098005101 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF8A21920538F2D981BEE096FE91CB1 /* MASConstraintMaker.m */; };\n\t\t7BFF65958F014760B6AC4742824892EB /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 64658E1A4A43B1F4154A43B0EC9F31B7 /* MASCompositeConstraint.m */; };\n\t\t852887173A1F802E93E8BF3FEDD3B8BD /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 501DCE274A5695A57A682C23C2F90BEF /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8539B851E01A58467BE49CA3FA77223C /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C5BE93CDEC5D526DB731D7F3B4629F /* MASLayoutConstraint.m */; };\n\t\t85DBD599545B98F7AB17B94C86A4DC37 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = AC98542493E2F3BEF723F75ED52F1098 /* MJRefreshGifHeader.m */; };\n\t\t8638BD5B0012059ABB8B3C588633667C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A47D683DB85324CC83C41AD6991789 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t86F2E53F22F26D2D030CA8ED679B5266 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B88F6678969F36526E5116942AC79EAE /* MJRefreshBackFooter.m */; };\n\t\t87EACD9485ADA3B6BCAE4FD103431F13 /* Pods-CMPageTitleViewUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A99DEECC53D33A8B3CA15FB4EA06B5D5 /* Pods-CMPageTitleViewUITests-dummy.m */; };\n\t\t89407BE103B6AA73E90C8E0EF0C1AA08 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE6762EB1AFE9E2215B958C9D060564 /* MJRefreshAutoGifFooter.m */; };\n\t\t8B92011C9373001132C8148BFC8F50B3 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD4D46BB8AF4E6120EDCFA70D1D7AC8 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8D4D1F6E4709EBB13974E95DC1059DDC /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 72519F567AC5720B31EC153F396FE786 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8D65CE579E516BDD5FB36CAA21D693F6 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F54B3CDA399D842E079F5A057E26954 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8F736DFA1256E8BE2DCC41F66F2A2561 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 50C1BF6B3E352AE839D67E55AF763D2D /* MJRefreshHeader.m */; };\n\t\t941955A19C40899D275604E6E9C21A6D /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 29764F80B1DBE7A99A6FEE44224E9CBE /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t94940A2C852223F20EE7ED83A9BB5179 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE75536DE38472CA99A61B75EFDA722 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t95BD9ECE799ABE9F7F41DB1D4F44DE31 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D72382CC9984AAA0404B9874F40B7E /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t9D546E1168C04B0B2EAE005D9275D18B /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 123CB291FE31EE69DB264F2765B55FE0 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tA25E7116FB360F05B59277B542E0E8C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */; };\n\t\tA35FBEEC7D088AEC05297E8292A32C77 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9E1F826B971AAAC39AA5D4AF1795E3 /* View+MASAdditions.m */; };\n\t\tA7B257D75993F5C90FAEEB16780CC215 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A5CBB96CE92EF465978155F0780B6B /* NSBundle+MJRefresh.m */; };\n\t\tA8F266741C653EAED3DD49D75DB9D5A8 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = AAAE80C9A92EA002B7A031BB6C06CA09 /* MJRefreshConfig.m */; };\n\t\tAA5F359B86973F47D34F4A0FD745E4EC /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C08364CD96310D0E21D8C445C7E002 /* MJRefreshStateHeader.m */; };\n\t\tB545FC64504EB25999F30CFC1E27E702 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7031580317D786D465A8E4E4520B5121 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tB7D645EC004610E8A581E532D28771EC /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = A6594EAE8702A90CA3F1773A79999249 /* MASViewConstraint.m */; };\n\t\tBD9A09840189D37657887D1467CAA330 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB1CA5FBE2A8D0A01576FAD78353FCC /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tC0861ADB4C5FA30F4F9E051F7638A264 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 85AE18DA48CBC4045DB00DAC46E03C40 /* NSLayoutConstraint+MASDebugAdditions.m */; };\n\t\tC0B2C760334561E4910FADD8520C85C3 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = C81E9A59402FF5FB04A646C0FDED90E6 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tCBDC089A3E26FC6825F64E078195BF01 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB629949AB5725BA51A46653699430D /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tCE7004AFA3B30D672A4DD9B4D3E6915B /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = C03F9FD01409860B7FE1A2549DFBDA2C /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tCE93C54413259B4AC3683B6EB874D466 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 312B988EF117AE4DE76A268D970131FE /* UIKit.framework */; };\n\t\tD476A1AD427ED4B951ACCB95459033CC /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4724F3FDA820D4A25E2D2135EFA864 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tD8328429281E82F67DB47AF6C9D95191 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A79552D96931BB4F04EAED94D6CBC5F /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tDC61A8F0AF15C821C2C04A9ECC7FD124 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */; };\n\t\tDCCC7E7E734A732901932B2E9D662EE7 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5781A96D20855D941A2DAB20A503FD30 /* MJRefreshAutoStateFooter.m */; };\n\t\tE51F496BDC6ACADE04FDA059C6CB2342 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */; };\n\t\tE7CA20228B3583F41927813EE904CAD3 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C3C844CD7E8B1D27B1845FC714B75F /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tE8DD5D1D406150E1C80AD015271B6848 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D9F2BB5B51D51567FA343469F514E3B1 /* MASConstraint.m */; };\n\t\tEAE8B0895956885A752B173683A0D889 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 557B65A3BD859CC1459F96AC95ABB698 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tEB209DF5DE13F4D802DA1BE20A9CEBD2 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C8E7791CC5B7284B21B50CC4CCB9F19 /* MJRefreshBackStateFooter.m */; };\n\t\tED3E2C1051BAC5B50BE441D95D8801C0 /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D92A55C70EA32227409FB64D29935523 /* MJRefreshBackGifFooter.m */; };\n\t\tEECE40C6F296379F86ABB36AF79BB8EC /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E774A9D01FFE81E338DDCF9A4AF9E0C /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tF57BA25385E6996D6EC18EDD97E596FE /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F269E405FB095B771D809E0EA605F6 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tFAFBFA90F7BC3E7CF50F8A5CF0A8B264 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = A80986864327A746C5DA7408677DC9F2 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tFE350422B39C5EA00E5AA552F6D218FB /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E7368C1E44B54B70FB73FE458D483EB /* MJRefreshBackNormalFooter.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t00CC431496DCE5D516C5D85AB1615DB5 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;\n\t\t\tremoteInfo = Masonry;\n\t\t};\n\t\t772EA49C326C07E28CEB52F6C83473E0 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = D054554EF4ABC31BC47EAB81D0DA69EC;\n\t\t\tremoteInfo = \"Pods-CMPageTitleView\";\n\t\t};\n\t\t797F658A9D1BAA318764E26137DBD872 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = D054554EF4ABC31BC47EAB81D0DA69EC;\n\t\t\tremoteInfo = \"Pods-CMPageTitleView\";\n\t\t};\n\t\tD8FD8133485EC52F85A9076762DA0A37 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8;\n\t\t\tremoteInfo = MJRefresh;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t00A5CBB96CE92EF465978155F0780B6B /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"NSBundle+MJRefresh.m\"; path = \"MJRefresh/NSBundle+MJRefresh.m\"; sourceTree = \"<group>\"; };\n\t\t0192A3EBF7EDC052F89FDAFDE47CE40D /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"View+MASAdditions.h\"; path = \"Masonry/View+MASAdditions.h\"; sourceTree = \"<group>\"; };\n\t\t0972DACFACDAD2180ADF1DFD6295DC59 /* Pods-CMPageTitleViewTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-CMPageTitleViewTests-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t09F269E405FB095B771D809E0EA605F6 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"MJRefresh-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t0E774A9D01FFE81E338DDCF9A4AF9E0C /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = \"<group>\"; };\n\t\t123CB291FE31EE69DB264F2765B55FE0 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"MASConstraint+Private.h\"; path = \"Masonry/MASConstraint+Private.h\"; sourceTree = \"<group>\"; };\n\t\t176633DDD680434231633C3F2146515D /* Pods-CMPageTitleView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-CMPageTitleView-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t1CC90E78B946FC4937FE16FB420CE15E /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"MJRefresh-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t1F650C08D5FF699E2BE5CC74C3583C34 /* Pods-CMPageTitleViewTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-CMPageTitleViewTests-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t1FFED36A657123030ABB700256D73F15 /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Masonry.framework; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t20DFE963091020A5048A0C0A66E56646 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"UIScrollView+MJExtension.m\"; path = \"MJRefresh/UIScrollView+MJExtension.m\"; sourceTree = \"<group>\"; };\n\t\t2444DD08B0775A8D476F3D23751A25AA /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = \"<group>\"; };\n\t\t2859FEF0448954C5A588DE2E2C1B1585 /* Pods-CMPageTitleViewUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = \"Pods-CMPageTitleViewUITests.modulemap\"; sourceTree = \"<group>\"; };\n\t\t29764F80B1DBE7A99A6FEE44224E9CBE /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = \"<group>\"; };\n\t\t2CB629949AB5725BA51A46653699430D /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"UIScrollView+MJExtension.h\"; path = \"MJRefresh/UIScrollView+MJExtension.h\"; sourceTree = \"<group>\"; };\n\t\t30E9201613B1E0097657C20E8B0B28F3 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Masonry-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t312B988EF117AE4DE76A268D970131FE /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };\n\t\t367E319CA582DABE128B26B726DE77D7 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = \"<group>\"; };\n\t\t3CF8A21920538F2D981BEE096FE91CB1 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = \"<group>\"; };\n\t\t3D4724F3FDA820D4A25E2D2135EFA864 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = \"<group>\"; };\n\t\t3F789481302EC7C6996182B0AE6E0A1D /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = \"<group>\"; };\n\t\t3FA0D4A95BD573E2B5710C8C402E7AFF /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = \"<group>\"; };\n\t\t436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\t43A47D683DB85324CC83C41AD6991789 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = \"<group>\"; };\n\t\t471D9233D2FF27D996887B928F59995C /* Pods-CMPageTitleView-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-CMPageTitleView-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t47C5BE93CDEC5D526DB731D7F3B4629F /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = \"<group>\"; };\n\t\t4807F6C9C23935122DBF8F9CF2B0DAE5 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = \"<group>\"; };\n\t\t489BCC574AA74C00D76279E2BD70D85C /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = \"<group>\"; };\n\t\t48C0BB9A3CECFD13B418C71AE6F62A16 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"NSArray+MASAdditions.m\"; path = \"Masonry/NSArray+MASAdditions.m\"; sourceTree = \"<group>\"; };\n\t\t4C326369DBF924526C742096A1ED47A5 /* Pods-CMPageTitleViewTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-CMPageTitleViewTests-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t501DCE274A5695A57A682C23C2F90BEF /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = \"<group>\"; };\n\t\t50326B09F3EE3C1566A9F7F13549C043 /* Pods-CMPageTitleViewUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-CMPageTitleViewUITests-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t50C1BF6B3E352AE839D67E55AF763D2D /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = \"<group>\"; };\n\t\t510AECDEC5986B705AD95C6F37B337F3 /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"MJRefresh-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t51443F7B3648391A06DA54AA99F61FD3 /* Pods-CMPageTitleView-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-CMPageTitleView-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t54D72382CC9984AAA0404B9874F40B7E /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = \"<group>\"; };\n\t\t557B65A3BD859CC1459F96AC95ABB698 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = \"<group>\"; };\n\t\t5781A96D20855D941A2DAB20A503FD30 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = \"<group>\"; };\n\t\t5A79552D96931BB4F04EAED94D6CBC5F /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = \"<group>\"; };\n\t\t5B5FB5952B431CD293A90418EA9F8F1D /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = \"<group>\"; };\n\t\t5B9E1F826B971AAAC39AA5D4AF1795E3 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"View+MASAdditions.m\"; path = \"Masonry/View+MASAdditions.m\"; sourceTree = \"<group>\"; };\n\t\t5BDFEDE4D1AB3B9563ABAD5609E30CA7 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Masonry-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t5C1135AA186408C7594B27F642666F6D /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = \"<group>\"; };\n\t\t5CC3842B2D7BFCB6E9AB48E716C30226 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = \"<group>\"; };\n\t\t5F7D9620C1A9CB531019E2C75DDE5B37 /* Pods-CMPageTitleView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-CMPageTitleView.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t6136CCE8A30E0E3797060C0AA431BD80 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"ViewController+MASAdditions.m\"; path = \"Masonry/ViewController+MASAdditions.m\"; sourceTree = \"<group>\"; };\n\t\t63DEF17D0F1010F9754F2CEA4F0C4AC8 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Masonry-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t64658E1A4A43B1F4154A43B0EC9F31B7 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = \"<group>\"; };\n\t\t6731151681D56842659A55111E28F2BB /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"NSArray+MASAdditions.h\"; path = \"Masonry/NSArray+MASAdditions.h\"; sourceTree = \"<group>\"; };\n\t\t6B676ABCE1DC826963455A4B8DE2C46B /* Pods_CMPageTitleViewTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CMPageTitleViewTests.framework; path = \"Pods-CMPageTitleViewTests.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t7031580317D786D465A8E4E4520B5121 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = \"<group>\"; };\n\t\t71882775BC6804A4893B191B56C56797 /* Pods-CMPageTitleViewTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-CMPageTitleViewTests-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t71988BF20F5AEE732DE4B753977F3402 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = \"<group>\"; };\n\t\t72519F567AC5720B31EC153F396FE786 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = \"<group>\"; };\n\t\t78E6662F74EF881BD2BF382C7D25691F /* Pods_CMPageTitleViewUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CMPageTitleViewUITests.framework; path = \"Pods-CMPageTitleViewUITests.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t79F8F647B0719B7ABC2232A76D22EA3B /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = \"<group>\"; };\n\t\t7AE6762EB1AFE9E2215B958C9D060564 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = \"<group>\"; };\n\t\t7C8E7791CC5B7284B21B50CC4CCB9F19 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = \"<group>\"; };\n\t\t7E5853BD58B4521FBFF2A8A3D159F898 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = \"<group>\"; };\n\t\t7E7368C1E44B54B70FB73FE458D483EB /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = \"<group>\"; };\n\t\t849E3A6E3C5F02101F8D2D1E06853C1A /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = \"<group>\"; };\n\t\t85AE18DA48CBC4045DB00DAC46E03C40 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"NSLayoutConstraint+MASDebugAdditions.m\"; path = \"Masonry/NSLayoutConstraint+MASDebugAdditions.m\"; sourceTree = \"<group>\"; };\n\t\t8CB8E52A5D4A105CDC9CA4C29A026CD8 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = \"<group>\"; };\n\t\t8D13B90C852AC70B777ABB43F13A6CE2 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = \"<group>\"; };\n\t\t8D2551BE986A32088BDE209F47485256 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = \"<group>\"; };\n\t\t8E10AA9886E85AFEFE1C0F792FA21A65 /* Pods-CMPageTitleViewUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-CMPageTitleViewUITests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t8F085AFB51B2FB51DB03B43386850C3D /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Masonry-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t8F54B3CDA399D842E079F5A057E26954 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = \"<group>\"; };\n\t\t9164D924CE46E614308E0A6E16735A8B /* Pods-CMPageTitleViewTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = \"Pods-CMPageTitleViewTests.modulemap\"; sourceTree = \"<group>\"; };\n\t\t95D96574DF8B434321EBBC30A67E08C2 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"NSLayoutConstraint+MASDebugAdditions.h\"; path = \"Masonry/NSLayoutConstraint+MASDebugAdditions.h\"; sourceTree = \"<group>\"; };\n\t\t9658B88594AA09FB4F50D2391C6669CB /* Pods-CMPageTitleViewUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-CMPageTitleViewUITests-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t969C926E4CC79AB6FE4C1D0C414D732A /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = \"<group>\"; };\n\t\t98C3C844CD7E8B1D27B1845FC714B75F /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"View+MASShorthandAdditions.h\"; path = \"Masonry/View+MASShorthandAdditions.h\"; sourceTree = \"<group>\"; };\n\t\t9B7AA057D2EFE3A8DAC8E632D639F651 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = \"<group>\"; };\n\t\t9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\tA1C08364CD96310D0E21D8C445C7E002 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = \"<group>\"; };\n\t\tA280D2C83F6A6B7F38EE84535FADB7D3 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = \"<group>\"; };\n\t\tA2CC277F1A836E56D5C94DE1420A095C /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = \"<group>\"; };\n\t\tA6594EAE8702A90CA3F1773A79999249 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = \"<group>\"; };\n\t\tA80986864327A746C5DA7408677DC9F2 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = \"<group>\"; };\n\t\tA99DEECC53D33A8B3CA15FB4EA06B5D5 /* Pods-CMPageTitleViewUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-CMPageTitleViewUITests-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tAAAE80C9A92EA002B7A031BB6C06CA09 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = \"<group>\"; };\n\t\tAC98542493E2F3BEF723F75ED52F1098 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = \"<group>\"; };\n\t\tB4CC43BC9D3B607239F8F525790740D0 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"UIView+MJExtension.m\"; path = \"MJRefresh/UIView+MJExtension.m\"; sourceTree = \"<group>\"; };\n\t\tB6BAE7FE0F4764770884ED3CD66C4DB8 /* Pods-CMPageTitleView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-CMPageTitleView-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tB7CF07A659DA3FD1417E55C3D940CAB2 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = \"<group>\"; };\n\t\tB88F6678969F36526E5116942AC79EAE /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = \"<group>\"; };\n\t\tBCA2EDE47B964AC11F486837D63E2860 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"NSArray+MASShorthandAdditions.h\"; path = \"Masonry/NSArray+MASShorthandAdditions.h\"; sourceTree = \"<group>\"; };\n\t\tC03F9FD01409860B7FE1A2549DFBDA2C /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = \"<group>\"; };\n\t\tC390E62F311D43C9B026E8422636AA64 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"NSBundle+MJRefresh.h\"; path = \"MJRefresh/NSBundle+MJRefresh.h\"; sourceTree = \"<group>\"; };\n\t\tC81E9A59402FF5FB04A646C0FDED90E6 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"UIView+MJExtension.h\"; path = \"MJRefresh/UIView+MJExtension.h\"; sourceTree = \"<group>\"; };\n\t\tCAB1CA5FBE2A8D0A01576FAD78353FCC /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = \"<group>\"; };\n\t\tCD0ADAD897F85351367C0E05C8A9A30D /* Pods-CMPageTitleViewTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-CMPageTitleViewTests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tD03159CF32D95C81F0F83D2A897ECFB5 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"UIScrollView+MJRefresh.m\"; path = \"MJRefresh/UIScrollView+MJRefresh.m\"; sourceTree = \"<group>\"; };\n\t\tD5B2AEEE5DFCC92F154F9DE86A567BC4 /* Pods-CMPageTitleViewUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-CMPageTitleViewUITests-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\tD65260643FA15C9CD4FB1012F3AA539A /* Pods-CMPageTitleViewTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-CMPageTitleViewTests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tD7ED1A374CB7F96D6BB073121230A82A /* Pods_CMPageTitleView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CMPageTitleView.framework; path = \"Pods-CMPageTitleView.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tD8B038DCF63D69CF9A8FE40AB097C2EA /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = \"wrapper.plug-in\"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = \"<group>\"; };\n\t\tD92A55C70EA32227409FB64D29935523 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = \"<group>\"; };\n\t\tD9D8E678A9C64D2F40F1F5E02B185A58 /* Pods-CMPageTitleView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = \"Pods-CMPageTitleView.modulemap\"; sourceTree = \"<group>\"; };\n\t\tD9F2BB5B51D51567FA343469F514E3B1 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = \"<group>\"; };\n\t\tDBFD38B27ADDE65F15FD90C8C88A03E8 /* Pods-CMPageTitleViewTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-CMPageTitleViewTests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\tDDE75536DE38472CA99A61B75EFDA722 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = \"<group>\"; };\n\t\tDE119CB1C665E82082DC244870B832A9 /* Pods-CMPageTitleView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-CMPageTitleView-Info.plist\"; sourceTree = \"<group>\"; };\n\t\tE0C5269E7EBEF6D14DC61F631E2C3D65 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = \"<group>\"; };\n\t\tE49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh.framework; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tE8F17F2D5EC829865D0BB5C80F7EB60E /* Pods-CMPageTitleViewUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-CMPageTitleViewUITests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\tE908C42BB6680E6325D3E364F04D6B7F /* Pods-CMPageTitleView-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-CMPageTitleView-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\tEC3B6C0E58B3CAF4A4F44A18259ACBBE /* Pods-CMPageTitleView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-CMPageTitleView.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tEC666CB8A846EE6596187C3B23DF6FD2 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"MJRefresh-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\tEEC0F96F587621AAF7475CC4B8AE7A7B /* Pods-CMPageTitleViewUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-CMPageTitleViewUITests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tEFD4D46BB8AF4E6120EDCFA70D1D7AC8 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"ViewController+MASAdditions.h\"; path = \"Masonry/ViewController+MASAdditions.h\"; sourceTree = \"<group>\"; };\n\t\tF4602B13663605471CA290ED901C23BB /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = \"<group>\"; };\n\t\tF7856316859155F5DB3FD2ED3A749330 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"UIScrollView+MJRefresh.h\"; path = \"MJRefresh/UIScrollView+MJRefresh.h\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t1449BF7AB787E9C16643719D6E740764 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t710200F11DC7A1879D4DD570EAC49AEC /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t2512AA370D93193ED6F25C0C66B7EADB /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tA25E7116FB360F05B59277B542E0E8C8 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t5E047F76604659BF1B2099B2C412AC93 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tE51F496BDC6ACADE04FDA059C6CB2342 /* Foundation.framework in Frameworks */,\n\t\t\t\tCE93C54413259B4AC3683B6EB874D466 /* UIKit.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t66DC1CD211FB1DEDF0287E0FF91483D9 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1C2EF8A09FA2E0C380229C9D93AB7E9F /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tFFB4A7ADB4C3CF1B4C43CD9005136168 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tDC61A8F0AF15C821C2C04A9ECC7FD124 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t079EA4305D66B70537F4A7A27F62EE30 /* Targets Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEA0F13C7CB841A55783925C7E93A3584 /* Pods-CMPageTitleView */,\n\t\t\t\t6E3F0C1BE3D03F0822E4B055B109EFFC /* Pods-CMPageTitleViewTests */,\n\t\t\t\t9442A1625053BCC41ED1BD0F77DED335 /* Pods-CMPageTitleViewUITests */,\n\t\t\t);\n\t\t\tname = \"Targets Support Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t140775CCFDCF42F77BE3AA1ADD4033B1 /* Resources */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tD8B038DCF63D69CF9A8FE40AB097C2EA /* MJRefresh.bundle */,\n\t\t\t);\n\t\t\tname = Resources;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tE2983683FD097A93297E2F5D4E382B36 /* iOS */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4322BF3647E9BEA96DBBB62D543A8EC6 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1FFED36A657123030ABB700256D73F15 /* Masonry.framework */,\n\t\t\t\tE49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh.framework */,\n\t\t\t\tD7ED1A374CB7F96D6BB073121230A82A /* Pods_CMPageTitleView.framework */,\n\t\t\t\t6B676ABCE1DC826963455A4B8DE2C46B /* Pods_CMPageTitleViewTests.framework */,\n\t\t\t\t78E6662F74EF881BD2BF382C7D25691F /* Pods_CMPageTitleViewUITests.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t5C2235B2321BEF59C3E29332AC626875 /* Masonry */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8F54B3CDA399D842E079F5A057E26954 /* MASCompositeConstraint.h */,\n\t\t\t\t64658E1A4A43B1F4154A43B0EC9F31B7 /* MASCompositeConstraint.m */,\n\t\t\t\t29764F80B1DBE7A99A6FEE44224E9CBE /* MASConstraint.h */,\n\t\t\t\tD9F2BB5B51D51567FA343469F514E3B1 /* MASConstraint.m */,\n\t\t\t\t123CB291FE31EE69DB264F2765B55FE0 /* MASConstraint+Private.h */,\n\t\t\t\tA80986864327A746C5DA7408677DC9F2 /* MASConstraintMaker.h */,\n\t\t\t\t3CF8A21920538F2D981BEE096FE91CB1 /* MASConstraintMaker.m */,\n\t\t\t\t72519F567AC5720B31EC153F396FE786 /* MASLayoutConstraint.h */,\n\t\t\t\t47C5BE93CDEC5D526DB731D7F3B4629F /* MASLayoutConstraint.m */,\n\t\t\t\t367E319CA582DABE128B26B726DE77D7 /* Masonry.h */,\n\t\t\t\t4807F6C9C23935122DBF8F9CF2B0DAE5 /* MASUtilities.h */,\n\t\t\t\t8CB8E52A5D4A105CDC9CA4C29A026CD8 /* MASViewAttribute.h */,\n\t\t\t\t2444DD08B0775A8D476F3D23751A25AA /* MASViewAttribute.m */,\n\t\t\t\t557B65A3BD859CC1459F96AC95ABB698 /* MASViewConstraint.h */,\n\t\t\t\tA6594EAE8702A90CA3F1773A79999249 /* MASViewConstraint.m */,\n\t\t\t\t6731151681D56842659A55111E28F2BB /* NSArray+MASAdditions.h */,\n\t\t\t\t48C0BB9A3CECFD13B418C71AE6F62A16 /* NSArray+MASAdditions.m */,\n\t\t\t\tBCA2EDE47B964AC11F486837D63E2860 /* NSArray+MASShorthandAdditions.h */,\n\t\t\t\t95D96574DF8B434321EBBC30A67E08C2 /* NSLayoutConstraint+MASDebugAdditions.h */,\n\t\t\t\t85AE18DA48CBC4045DB00DAC46E03C40 /* NSLayoutConstraint+MASDebugAdditions.m */,\n\t\t\t\t0192A3EBF7EDC052F89FDAFDE47CE40D /* View+MASAdditions.h */,\n\t\t\t\t5B9E1F826B971AAAC39AA5D4AF1795E3 /* View+MASAdditions.m */,\n\t\t\t\t98C3C844CD7E8B1D27B1845FC714B75F /* View+MASShorthandAdditions.h */,\n\t\t\t\tEFD4D46BB8AF4E6120EDCFA70D1D7AC8 /* ViewController+MASAdditions.h */,\n\t\t\t\t6136CCE8A30E0E3797060C0AA431BD80 /* ViewController+MASAdditions.m */,\n\t\t\t\t8DB2FB0F94EA6A7A591B1D1BA684F3A5 /* Support Files */,\n\t\t\t);\n\t\t\tname = Masonry;\n\t\t\tpath = Masonry;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t60C32F552F1456C6B3BB1F3E9BCDC857 /* MJRefresh */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t43A47D683DB85324CC83C41AD6991789 /* MJRefresh.h */,\n\t\t\t\t7E5853BD58B4521FBFF2A8A3D159F898 /* MJRefreshAutoFooter.h */,\n\t\t\t\tA2CC277F1A836E56D5C94DE1420A095C /* MJRefreshAutoFooter.m */,\n\t\t\t\t5C1135AA186408C7594B27F642666F6D /* MJRefreshAutoGifFooter.h */,\n\t\t\t\t7AE6762EB1AFE9E2215B958C9D060564 /* MJRefreshAutoGifFooter.m */,\n\t\t\t\t7031580317D786D465A8E4E4520B5121 /* MJRefreshAutoNormalFooter.h */,\n\t\t\t\t79F8F647B0719B7ABC2232A76D22EA3B /* MJRefreshAutoNormalFooter.m */,\n\t\t\t\t501DCE274A5695A57A682C23C2F90BEF /* MJRefreshAutoStateFooter.h */,\n\t\t\t\t5781A96D20855D941A2DAB20A503FD30 /* MJRefreshAutoStateFooter.m */,\n\t\t\t\t849E3A6E3C5F02101F8D2D1E06853C1A /* MJRefreshBackFooter.h */,\n\t\t\t\tB88F6678969F36526E5116942AC79EAE /* MJRefreshBackFooter.m */,\n\t\t\t\t5A79552D96931BB4F04EAED94D6CBC5F /* MJRefreshBackGifFooter.h */,\n\t\t\t\tD92A55C70EA32227409FB64D29935523 /* MJRefreshBackGifFooter.m */,\n\t\t\t\t3D4724F3FDA820D4A25E2D2135EFA864 /* MJRefreshBackNormalFooter.h */,\n\t\t\t\t7E7368C1E44B54B70FB73FE458D483EB /* MJRefreshBackNormalFooter.m */,\n\t\t\t\t5B5FB5952B431CD293A90418EA9F8F1D /* MJRefreshBackStateFooter.h */,\n\t\t\t\t7C8E7791CC5B7284B21B50CC4CCB9F19 /* MJRefreshBackStateFooter.m */,\n\t\t\t\t54D72382CC9984AAA0404B9874F40B7E /* MJRefreshComponent.h */,\n\t\t\t\t3FA0D4A95BD573E2B5710C8C402E7AFF /* MJRefreshComponent.m */,\n\t\t\t\tDDE75536DE38472CA99A61B75EFDA722 /* MJRefreshConfig.h */,\n\t\t\t\tAAAE80C9A92EA002B7A031BB6C06CA09 /* MJRefreshConfig.m */,\n\t\t\t\tC03F9FD01409860B7FE1A2549DFBDA2C /* MJRefreshConst.h */,\n\t\t\t\tB7CF07A659DA3FD1417E55C3D940CAB2 /* MJRefreshConst.m */,\n\t\t\t\t3F789481302EC7C6996182B0AE6E0A1D /* MJRefreshFooter.h */,\n\t\t\t\t969C926E4CC79AB6FE4C1D0C414D732A /* MJRefreshFooter.m */,\n\t\t\t\t8D2551BE986A32088BDE209F47485256 /* MJRefreshGifHeader.h */,\n\t\t\t\tAC98542493E2F3BEF723F75ED52F1098 /* MJRefreshGifHeader.m */,\n\t\t\t\t8D13B90C852AC70B777ABB43F13A6CE2 /* MJRefreshHeader.h */,\n\t\t\t\t50C1BF6B3E352AE839D67E55AF763D2D /* MJRefreshHeader.m */,\n\t\t\t\t0E774A9D01FFE81E338DDCF9A4AF9E0C /* MJRefreshNormalHeader.h */,\n\t\t\t\tE0C5269E7EBEF6D14DC61F631E2C3D65 /* MJRefreshNormalHeader.m */,\n\t\t\t\tCAB1CA5FBE2A8D0A01576FAD78353FCC /* MJRefreshStateHeader.h */,\n\t\t\t\tA1C08364CD96310D0E21D8C445C7E002 /* MJRefreshStateHeader.m */,\n\t\t\t\tC390E62F311D43C9B026E8422636AA64 /* NSBundle+MJRefresh.h */,\n\t\t\t\t00A5CBB96CE92EF465978155F0780B6B /* NSBundle+MJRefresh.m */,\n\t\t\t\t2CB629949AB5725BA51A46653699430D /* UIScrollView+MJExtension.h */,\n\t\t\t\t20DFE963091020A5048A0C0A66E56646 /* UIScrollView+MJExtension.m */,\n\t\t\t\tF7856316859155F5DB3FD2ED3A749330 /* UIScrollView+MJRefresh.h */,\n\t\t\t\tD03159CF32D95C81F0F83D2A897ECFB5 /* UIScrollView+MJRefresh.m */,\n\t\t\t\tC81E9A59402FF5FB04A646C0FDED90E6 /* UIView+MJExtension.h */,\n\t\t\t\tB4CC43BC9D3B607239F8F525790740D0 /* UIView+MJExtension.m */,\n\t\t\t\t140775CCFDCF42F77BE3AA1ADD4033B1 /* Resources */,\n\t\t\t\tDAE307306F1BF2AA040DA62A1B48BDAB /* Support Files */,\n\t\t\t);\n\t\t\tname = MJRefresh;\n\t\t\tpath = MJRefresh;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6E3F0C1BE3D03F0822E4B055B109EFFC /* Pods-CMPageTitleViewTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9164D924CE46E614308E0A6E16735A8B /* Pods-CMPageTitleViewTests.modulemap */,\n\t\t\t\t1F650C08D5FF699E2BE5CC74C3583C34 /* Pods-CMPageTitleViewTests-acknowledgements.markdown */,\n\t\t\t\t4C326369DBF924526C742096A1ED47A5 /* Pods-CMPageTitleViewTests-acknowledgements.plist */,\n\t\t\t\t0972DACFACDAD2180ADF1DFD6295DC59 /* Pods-CMPageTitleViewTests-dummy.m */,\n\t\t\t\tDBFD38B27ADDE65F15FD90C8C88A03E8 /* Pods-CMPageTitleViewTests-Info.plist */,\n\t\t\t\t71882775BC6804A4893B191B56C56797 /* Pods-CMPageTitleViewTests-umbrella.h */,\n\t\t\t\tCD0ADAD897F85351367C0E05C8A9A30D /* Pods-CMPageTitleViewTests.debug.xcconfig */,\n\t\t\t\tD65260643FA15C9CD4FB1012F3AA539A /* Pods-CMPageTitleViewTests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-CMPageTitleViewTests\";\n\t\t\tpath = \"Target Support Files/Pods-CMPageTitleViewTests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t8DB2FB0F94EA6A7A591B1D1BA684F3A5 /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF4602B13663605471CA290ED901C23BB /* Masonry.modulemap */,\n\t\t\t\t30E9201613B1E0097657C20E8B0B28F3 /* Masonry-dummy.m */,\n\t\t\t\t5BDFEDE4D1AB3B9563ABAD5609E30CA7 /* Masonry-Info.plist */,\n\t\t\t\t63DEF17D0F1010F9754F2CEA4F0C4AC8 /* Masonry-prefix.pch */,\n\t\t\t\t8F085AFB51B2FB51DB03B43386850C3D /* Masonry-umbrella.h */,\n\t\t\t\t489BCC574AA74C00D76279E2BD70D85C /* Masonry.debug.xcconfig */,\n\t\t\t\tA280D2C83F6A6B7F38EE84535FADB7D3 /* Masonry.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"../Target Support Files/Masonry\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9442A1625053BCC41ED1BD0F77DED335 /* Pods-CMPageTitleViewUITests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t2859FEF0448954C5A588DE2E2C1B1585 /* Pods-CMPageTitleViewUITests.modulemap */,\n\t\t\t\tD5B2AEEE5DFCC92F154F9DE86A567BC4 /* Pods-CMPageTitleViewUITests-acknowledgements.markdown */,\n\t\t\t\t9658B88594AA09FB4F50D2391C6669CB /* Pods-CMPageTitleViewUITests-acknowledgements.plist */,\n\t\t\t\tA99DEECC53D33A8B3CA15FB4EA06B5D5 /* Pods-CMPageTitleViewUITests-dummy.m */,\n\t\t\t\tE8F17F2D5EC829865D0BB5C80F7EB60E /* Pods-CMPageTitleViewUITests-Info.plist */,\n\t\t\t\t50326B09F3EE3C1566A9F7F13549C043 /* Pods-CMPageTitleViewUITests-umbrella.h */,\n\t\t\t\tEEC0F96F587621AAF7475CC4B8AE7A7B /* Pods-CMPageTitleViewUITests.debug.xcconfig */,\n\t\t\t\t8E10AA9886E85AFEFE1C0F792FA21A65 /* Pods-CMPageTitleViewUITests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-CMPageTitleViewUITests\";\n\t\t\tpath = \"Target Support Files/Pods-CMPageTitleViewUITests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tBC838A6CF81FA607D40D3F5D661F72F1 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t5C2235B2321BEF59C3E29332AC626875 /* Masonry */,\n\t\t\t\t60C32F552F1456C6B3BB1F3E9BCDC857 /* MJRefresh */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCF1408CF629C7361332E53B88F7BD30C = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,\n\t\t\t\t1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,\n\t\t\t\tBC838A6CF81FA607D40D3F5D661F72F1 /* Pods */,\n\t\t\t\t4322BF3647E9BEA96DBBB62D543A8EC6 /* Products */,\n\t\t\t\t079EA4305D66B70537F4A7A27F62EE30 /* Targets Support Files */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tDAE307306F1BF2AA040DA62A1B48BDAB /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t5CC3842B2D7BFCB6E9AB48E716C30226 /* MJRefresh.modulemap */,\n\t\t\t\t1CC90E78B946FC4937FE16FB420CE15E /* MJRefresh-dummy.m */,\n\t\t\t\t510AECDEC5986B705AD95C6F37B337F3 /* MJRefresh-Info.plist */,\n\t\t\t\tEC666CB8A846EE6596187C3B23DF6FD2 /* MJRefresh-prefix.pch */,\n\t\t\t\t09F269E405FB095B771D809E0EA605F6 /* MJRefresh-umbrella.h */,\n\t\t\t\t9B7AA057D2EFE3A8DAC8E632D639F651 /* MJRefresh.debug.xcconfig */,\n\t\t\t\t71988BF20F5AEE732DE4B753977F3402 /* MJRefresh.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"../Target Support Files/MJRefresh\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tE2983683FD097A93297E2F5D4E382B36 /* iOS */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t436BAA54A31999B53B3CC7115C55FE50 /* Foundation.framework */,\n\t\t\t\t312B988EF117AE4DE76A268D970131FE /* UIKit.framework */,\n\t\t\t);\n\t\t\tname = iOS;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEA0F13C7CB841A55783925C7E93A3584 /* Pods-CMPageTitleView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tD9D8E678A9C64D2F40F1F5E02B185A58 /* Pods-CMPageTitleView.modulemap */,\n\t\t\t\t471D9233D2FF27D996887B928F59995C /* Pods-CMPageTitleView-acknowledgements.markdown */,\n\t\t\t\t51443F7B3648391A06DA54AA99F61FD3 /* Pods-CMPageTitleView-acknowledgements.plist */,\n\t\t\t\tB6BAE7FE0F4764770884ED3CD66C4DB8 /* Pods-CMPageTitleView-dummy.m */,\n\t\t\t\tE908C42BB6680E6325D3E364F04D6B7F /* Pods-CMPageTitleView-frameworks.sh */,\n\t\t\t\tDE119CB1C665E82082DC244870B832A9 /* Pods-CMPageTitleView-Info.plist */,\n\t\t\t\t176633DDD680434231633C3F2146515D /* Pods-CMPageTitleView-umbrella.h */,\n\t\t\t\t5F7D9620C1A9CB531019E2C75DDE5B37 /* Pods-CMPageTitleView.debug.xcconfig */,\n\t\t\t\tEC3B6C0E58B3CAF4A4F44A18259ACBBE /* Pods-CMPageTitleView.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-CMPageTitleView\";\n\t\t\tpath = \"Target Support Files/Pods-CMPageTitleView\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t4AC220F1C9986F0F3E521E4A60E99984 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4D112B5D14F7B1A1D92F9ACBA122609E /* Pods-CMPageTitleViewTests-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t5DAF7CE3A054E28E5CC4448144041F82 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t33BFFC3BE2A20264B8F11AF0F4A889E6 /* Pods-CMPageTitleView-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t7B04ACBA4522760CA66A5D4AFA498F81 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8D65CE579E516BDD5FB36CAA21D693F6 /* MASCompositeConstraint.h in Headers */,\n\t\t\t\t9D546E1168C04B0B2EAE005D9275D18B /* MASConstraint+Private.h in Headers */,\n\t\t\t\t941955A19C40899D275604E6E9C21A6D /* MASConstraint.h in Headers */,\n\t\t\t\tFAFBFA90F7BC3E7CF50F8A5CF0A8B264 /* MASConstraintMaker.h in Headers */,\n\t\t\t\t8D4D1F6E4709EBB13974E95DC1059DDC /* MASLayoutConstraint.h in Headers */,\n\t\t\t\t6A6AD3A5BBDBFD0B4AF936BD518EC0B1 /* Masonry-umbrella.h in Headers */,\n\t\t\t\t346080C0D1CA23399ADD739D722D7CEF /* Masonry.h in Headers */,\n\t\t\t\t280D36330BAC5715615FF4A8B42D60D6 /* MASUtilities.h in Headers */,\n\t\t\t\t3DA5F1D8E51CDD102A871C2F37770C7B /* MASViewAttribute.h in Headers */,\n\t\t\t\tEAE8B0895956885A752B173683A0D889 /* MASViewConstraint.h in Headers */,\n\t\t\t\t05EA1447EEA0EB669F8DEE73964A7C60 /* NSArray+MASAdditions.h in Headers */,\n\t\t\t\t05A040F35BF1C88F869404E1A940B493 /* NSArray+MASShorthandAdditions.h in Headers */,\n\t\t\t\t0AF1AD35706D90B1A91F291B899EF8C0 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,\n\t\t\t\t4B0981F9AC628CF5100C50FF4A163A4A /* View+MASAdditions.h in Headers */,\n\t\t\t\tE7CA20228B3583F41927813EE904CAD3 /* View+MASShorthandAdditions.h in Headers */,\n\t\t\t\t8B92011C9373001132C8148BFC8F50B3 /* ViewController+MASAdditions.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8F533FC8756A48A117F18EB029244213 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t22B4E8E332D6508E244D2A0BFBEA6ABB /* Pods-CMPageTitleViewUITests-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tA85AAFC3C3F2D21FF0949F9C28F16F53 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF57BA25385E6996D6EC18EDD97E596FE /* MJRefresh-umbrella.h in Headers */,\n\t\t\t\t8638BD5B0012059ABB8B3C588633667C /* MJRefresh.h in Headers */,\n\t\t\t\t050A189DF0B4F405E9D3389F24EDF835 /* MJRefreshAutoFooter.h in Headers */,\n\t\t\t\t696BEC58A027BCCDFB378637C75C78A5 /* MJRefreshAutoGifFooter.h in Headers */,\n\t\t\t\tB545FC64504EB25999F30CFC1E27E702 /* MJRefreshAutoNormalFooter.h in Headers */,\n\t\t\t\t852887173A1F802E93E8BF3FEDD3B8BD /* MJRefreshAutoStateFooter.h in Headers */,\n\t\t\t\t595527C54E24251571AA3B9E61D616BE /* MJRefreshBackFooter.h in Headers */,\n\t\t\t\tD8328429281E82F67DB47AF6C9D95191 /* MJRefreshBackGifFooter.h in Headers */,\n\t\t\t\tD476A1AD427ED4B951ACCB95459033CC /* MJRefreshBackNormalFooter.h in Headers */,\n\t\t\t\t528237787EC24E25AD6BB486B1BEBE5D /* MJRefreshBackStateFooter.h in Headers */,\n\t\t\t\t95BD9ECE799ABE9F7F41DB1D4F44DE31 /* MJRefreshComponent.h in Headers */,\n\t\t\t\t94940A2C852223F20EE7ED83A9BB5179 /* MJRefreshConfig.h in Headers */,\n\t\t\t\tCE7004AFA3B30D672A4DD9B4D3E6915B /* MJRefreshConst.h in Headers */,\n\t\t\t\t4583409C21FCF11CB11FE51B0B235A00 /* MJRefreshFooter.h in Headers */,\n\t\t\t\t06AEA7117FE98F2409D2432AAEC326A8 /* MJRefreshGifHeader.h in Headers */,\n\t\t\t\t4F5A97CA16447E2BDF919A40C1652E9F /* MJRefreshHeader.h in Headers */,\n\t\t\t\tEECE40C6F296379F86ABB36AF79BB8EC /* MJRefreshNormalHeader.h in Headers */,\n\t\t\t\tBD9A09840189D37657887D1467CAA330 /* MJRefreshStateHeader.h in Headers */,\n\t\t\t\t13611CB0839D7F8C3EFCB9F9ED5495BD /* NSBundle+MJRefresh.h in Headers */,\n\t\t\t\tCBDC089A3E26FC6825F64E078195BF01 /* UIScrollView+MJExtension.h in Headers */,\n\t\t\t\t6C1461ED2AF53643934B4B97E9BB8A7D /* UIScrollView+MJRefresh.h in Headers */,\n\t\t\t\tC0B2C760334561E4910FADD8520C85C3 /* UIView+MJExtension.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 87FD40BD683E3BD044AA4D1B5CA58652 /* Build configuration list for PBXNativeTarget \"Masonry\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t7B04ACBA4522760CA66A5D4AFA498F81 /* Headers */,\n\t\t\t\t038B428AD06C5A47FAF2BEFE16C6DC16 /* Sources */,\n\t\t\t\t5E047F76604659BF1B2099B2C412AC93 /* Frameworks */,\n\t\t\t\t895ED1B8779C1D82DF681CBFF67AC570 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = Masonry;\n\t\t\tproductName = Masonry;\n\t\t\tproductReference = 1FFED36A657123030ABB700256D73F15 /* Masonry.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t5F805A508C0031321D24D510E67C5315 /* Pods-CMPageTitleViewUITests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 4E91C1DD5663EF94475FFDBAE1D8D7F0 /* Build configuration list for PBXNativeTarget \"Pods-CMPageTitleViewUITests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t8F533FC8756A48A117F18EB029244213 /* Headers */,\n\t\t\t\tB8A1482E8935C5AE9FE8E7F52458E2D3 /* Sources */,\n\t\t\t\tFFB4A7ADB4C3CF1B4C43CD9005136168 /* Frameworks */,\n\t\t\t\t11CE77257DF72A14D4A92D8423A2090E /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t75DC9AFBBDE67F8CD8F3A02C6D6B4D41 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-CMPageTitleViewUITests\";\n\t\t\tproductName = \"Pods-CMPageTitleViewUITests\";\n\t\t\tproductReference = 78E6662F74EF881BD2BF382C7D25691F /* Pods_CMPageTitleViewUITests.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = D193193A5B2CEF5D2D4537C9CFF8D5AB /* Build configuration list for PBXNativeTarget \"MJRefresh\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tA85AAFC3C3F2D21FF0949F9C28F16F53 /* Headers */,\n\t\t\t\t2A86E49E117FE931BA78E876CF3B92C1 /* Sources */,\n\t\t\t\t1449BF7AB787E9C16643719D6E740764 /* Frameworks */,\n\t\t\t\tB766E016B71C008CD9AF7646AD9C6F70 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = MJRefresh;\n\t\t\tproductName = MJRefresh;\n\t\t\tproductReference = E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tD054554EF4ABC31BC47EAB81D0DA69EC /* Pods-CMPageTitleView */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 57CA7408C31DB74587B138708C5A8C12 /* Build configuration list for PBXNativeTarget \"Pods-CMPageTitleView\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t5DAF7CE3A054E28E5CC4448144041F82 /* Headers */,\n\t\t\t\t3349515D8D56ACE07A80D67DEA9CC57B /* Sources */,\n\t\t\t\t66DC1CD211FB1DEDF0287E0FF91483D9 /* Frameworks */,\n\t\t\t\t47FDA6E8C6CFE22F74F0D44C1518E084 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t2623EC5EDC52FB46808AF7D703A1EE3F /* PBXTargetDependency */,\n\t\t\t\t0FAD3B678799B49D2564F6110B078527 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-CMPageTitleView\";\n\t\t\tproductName = \"Pods-CMPageTitleView\";\n\t\t\tproductReference = D7ED1A374CB7F96D6BB073121230A82A /* Pods_CMPageTitleView.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tDF382DB295A4E16F03938352617E805C /* Pods-CMPageTitleViewTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 6B65A3B0B458FFF68409215B229A759F /* Build configuration list for PBXNativeTarget \"Pods-CMPageTitleViewTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t4AC220F1C9986F0F3E521E4A60E99984 /* Headers */,\n\t\t\t\tCA0CC804862C11BA8B6F54E1490E616A /* Sources */,\n\t\t\t\t2512AA370D93193ED6F25C0C66B7EADB /* Frameworks */,\n\t\t\t\tE31170F6CA67F84FFDE9396ADDAF030C /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t6F3B21E247D02E91B7CB42A7038DDEDB /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-CMPageTitleViewTests\";\n\t\t\tproductName = \"Pods-CMPageTitleViewTests\";\n\t\t\tproductReference = 6B676ABCE1DC826963455A4B8DE2C46B /* Pods_CMPageTitleViewTests.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tBFDFE7DC352907FC980B868725387E98 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 1100;\n\t\t\t\tLastUpgradeCheck = 1100;\n\t\t\t};\n\t\t\tbuildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject \"Pods\" */;\n\t\t\tcompatibilityVersion = \"Xcode 10.0\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = CF1408CF629C7361332E53B88F7BD30C;\n\t\t\tproductRefGroup = 4322BF3647E9BEA96DBBB62D543A8EC6 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,\n\t\t\t\t6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */,\n\t\t\t\tD054554EF4ABC31BC47EAB81D0DA69EC /* Pods-CMPageTitleView */,\n\t\t\t\tDF382DB295A4E16F03938352617E805C /* Pods-CMPageTitleViewTests */,\n\t\t\t\t5F805A508C0031321D24D510E67C5315 /* Pods-CMPageTitleViewUITests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t11CE77257DF72A14D4A92D8423A2090E /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t47FDA6E8C6CFE22F74F0D44C1518E084 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t895ED1B8779C1D82DF681CBFF67AC570 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB766E016B71C008CD9AF7646AD9C6F70 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0F47C7DE634D4FE07B595912093139FE /* MJRefresh.bundle in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tE31170F6CA67F84FFDE9396ADDAF030C /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t038B428AD06C5A47FAF2BEFE16C6DC16 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t7BFF65958F014760B6AC4742824892EB /* MASCompositeConstraint.m in Sources */,\n\t\t\t\tE8DD5D1D406150E1C80AD015271B6848 /* MASConstraint.m in Sources */,\n\t\t\t\t78B2727EE5D693F58D019DB098005101 /* MASConstraintMaker.m in Sources */,\n\t\t\t\t8539B851E01A58467BE49CA3FA77223C /* MASLayoutConstraint.m in Sources */,\n\t\t\t\t1972E85F0FCD0F3EAF28ED7CD036286E /* Masonry-dummy.m in Sources */,\n\t\t\t\t297A3627CF2F032CBFDC61D1A3786E63 /* MASViewAttribute.m in Sources */,\n\t\t\t\tB7D645EC004610E8A581E532D28771EC /* MASViewConstraint.m in Sources */,\n\t\t\t\t098630ECDB64ED7B89F5F687C82B4AC3 /* NSArray+MASAdditions.m in Sources */,\n\t\t\t\tC0861ADB4C5FA30F4F9E051F7638A264 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,\n\t\t\t\tA35FBEEC7D088AEC05297E8292A32C77 /* View+MASAdditions.m in Sources */,\n\t\t\t\t0967598607D521318F69D7D39D517B20 /* ViewController+MASAdditions.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t2A86E49E117FE931BA78E876CF3B92C1 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t5A384A2C99EB807D449323F9814098A9 /* MJRefresh-dummy.m in Sources */,\n\t\t\t\t61EF33C64C26EDF6A86430C30CCC8125 /* MJRefreshAutoFooter.m in Sources */,\n\t\t\t\t89407BE103B6AA73E90C8E0EF0C1AA08 /* MJRefreshAutoGifFooter.m in Sources */,\n\t\t\t\t675F8319809B90A18BB685E1EA09F886 /* MJRefreshAutoNormalFooter.m in Sources */,\n\t\t\t\tDCCC7E7E734A732901932B2E9D662EE7 /* MJRefreshAutoStateFooter.m in Sources */,\n\t\t\t\t86F2E53F22F26D2D030CA8ED679B5266 /* MJRefreshBackFooter.m in Sources */,\n\t\t\t\tED3E2C1051BAC5B50BE441D95D8801C0 /* MJRefreshBackGifFooter.m in Sources */,\n\t\t\t\tFE350422B39C5EA00E5AA552F6D218FB /* MJRefreshBackNormalFooter.m in Sources */,\n\t\t\t\tEB209DF5DE13F4D802DA1BE20A9CEBD2 /* MJRefreshBackStateFooter.m in Sources */,\n\t\t\t\t47C5E12941194A00ED65EECCD1E4B9C3 /* MJRefreshComponent.m in Sources */,\n\t\t\t\tA8F266741C653EAED3DD49D75DB9D5A8 /* MJRefreshConfig.m in Sources */,\n\t\t\t\t22513825A54DC9B8C23BF0CC7F45B00F /* MJRefreshConst.m in Sources */,\n\t\t\t\t0AECE221BADEA19083FC0CACE5973D8A /* MJRefreshFooter.m in Sources */,\n\t\t\t\t85DBD599545B98F7AB17B94C86A4DC37 /* MJRefreshGifHeader.m in Sources */,\n\t\t\t\t8F736DFA1256E8BE2DCC41F66F2A2561 /* MJRefreshHeader.m in Sources */,\n\t\t\t\t39172F66777E6BC6EBFFC5948E3CC765 /* MJRefreshNormalHeader.m in Sources */,\n\t\t\t\tAA5F359B86973F47D34F4A0FD745E4EC /* MJRefreshStateHeader.m in Sources */,\n\t\t\t\tA7B257D75993F5C90FAEEB16780CC215 /* NSBundle+MJRefresh.m in Sources */,\n\t\t\t\t45626116C19AA54A2359E85DAEB5AD42 /* UIScrollView+MJExtension.m in Sources */,\n\t\t\t\t4055A0ACF4681DEA04E2F0AECD0B97B2 /* UIScrollView+MJRefresh.m in Sources */,\n\t\t\t\t64FAE071FA6CADC6F4543DCD82705D12 /* UIView+MJExtension.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t3349515D8D56ACE07A80D67DEA9CC57B /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6F11BF93701AB356B1CE164B6A438498 /* Pods-CMPageTitleView-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB8A1482E8935C5AE9FE8E7F52458E2D3 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t87EACD9485ADA3B6BCAE4FD103431F13 /* Pods-CMPageTitleViewUITests-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tCA0CC804862C11BA8B6F54E1490E616A /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t32DA0F5869BC32AEB94CA0A5DD9C8389 /* Pods-CMPageTitleViewTests-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t0FAD3B678799B49D2564F6110B078527 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = Masonry;\n\t\t\ttarget = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;\n\t\t\ttargetProxy = 00CC431496DCE5D516C5D85AB1615DB5 /* PBXContainerItemProxy */;\n\t\t};\n\t\t2623EC5EDC52FB46808AF7D703A1EE3F /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = MJRefresh;\n\t\t\ttarget = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */;\n\t\t\ttargetProxy = D8FD8133485EC52F85A9076762DA0A37 /* PBXContainerItemProxy */;\n\t\t};\n\t\t6F3B21E247D02E91B7CB42A7038DDEDB /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Pods-CMPageTitleView\";\n\t\t\ttarget = D054554EF4ABC31BC47EAB81D0DA69EC /* Pods-CMPageTitleView */;\n\t\t\ttargetProxy = 797F658A9D1BAA318764E26137DBD872 /* PBXContainerItemProxy */;\n\t\t};\n\t\t75DC9AFBBDE67F8CD8F3A02C6D6B4D41 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Pods-CMPageTitleView\";\n\t\t\ttarget = D054554EF4ABC31BC47EAB81D0DA69EC /* Pods-CMPageTitleView */;\n\t\t\ttargetProxy = 772EA49C326C07E28CEB52F6C83473E0 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t5A6C9C96991EDC970C760905804708C4 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = D65260643FA15C9CD4FB1012F3AA539A /* Pods-CMPageTitleViewTests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t5F8D8AB6739414C69D01AE6A047060CF /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 5F7D9620C1A9CB531019E2C75DDE5B37 /* Pods-CMPageTitleView.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t8F17DC3A99F99FBAD606CE6963886315 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_RELEASE=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t916E0404255105F480DC4950B7625F7A /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_DEBUG=1\",\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t933C252AC1697174177192BE69B419F9 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 489BCC574AA74C00D76279E2BD70D85C /* Masonry.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Masonry/Masonry-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Masonry/Masonry-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Masonry/Masonry.modulemap\";\n\t\t\t\tPRODUCT_MODULE_NAME = Masonry;\n\t\t\t\tPRODUCT_NAME = Masonry;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"$(inherited) \";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tCEF8ADC5C2118FD5FE07365B5CB9FF94 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 71988BF20F5AEE732DE4B753977F3402 /* MJRefresh.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/MJRefresh/MJRefresh-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/MJRefresh/MJRefresh-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/MJRefresh/MJRefresh.modulemap\";\n\t\t\t\tPRODUCT_MODULE_NAME = MJRefresh;\n\t\t\t\tPRODUCT_NAME = MJRefresh;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"$(inherited) \";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tD1F20CA5AF74551DBEC539096B44760B /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = A280D2C83F6A6B7F38EE84535FADB7D3 /* Masonry.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/Masonry/Masonry-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Masonry/Masonry-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Masonry/Masonry.modulemap\";\n\t\t\t\tPRODUCT_MODULE_NAME = Masonry;\n\t\t\t\tPRODUCT_NAME = Masonry;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"$(inherited) \";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tE8E3026A01C1609C6459FEFA0A6B4D88 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = EEC0F96F587621AAF7475CC4B8AE7A7B /* Pods-CMPageTitleViewUITests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tE9469A074093877C53DC551E3AC75F0F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = EC3B6C0E58B3CAF4A4F44A18259ACBBE /* Pods-CMPageTitleView.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tED61F2166035CABF20DBCF634FD96CCB /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = CD0ADAD897F85351367C0E05C8A9A30D /* Pods-CMPageTitleViewTests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tF10AA1F72BEB3164417166661ED439E8 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 8E10AA9886E85AFEFE1C0F792FA21A65 /* Pods-CMPageTitleViewUITests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tFD95AC7BA12C7D02140A6F6CFB535BFE /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 9B7AA057D2EFE3A8DAC8E632D639F651 /* MJRefresh.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/MJRefresh/MJRefresh-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/MJRefresh/MJRefresh-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/MJRefresh/MJRefresh.modulemap\";\n\t\t\t\tPRODUCT_MODULE_NAME = MJRefresh;\n\t\t\t\tPRODUCT_NAME = MJRefresh;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"$(inherited) \";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject \"Pods\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t916E0404255105F480DC4950B7625F7A /* Debug */,\n\t\t\t\t8F17DC3A99F99FBAD606CE6963886315 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t4E91C1DD5663EF94475FFDBAE1D8D7F0 /* Build configuration list for PBXNativeTarget \"Pods-CMPageTitleViewUITests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tE8E3026A01C1609C6459FEFA0A6B4D88 /* Debug */,\n\t\t\t\tF10AA1F72BEB3164417166661ED439E8 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t57CA7408C31DB74587B138708C5A8C12 /* Build configuration list for PBXNativeTarget \"Pods-CMPageTitleView\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t5F8D8AB6739414C69D01AE6A047060CF /* Debug */,\n\t\t\t\tE9469A074093877C53DC551E3AC75F0F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t6B65A3B0B458FFF68409215B229A759F /* Build configuration list for PBXNativeTarget \"Pods-CMPageTitleViewTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tED61F2166035CABF20DBCF634FD96CCB /* Debug */,\n\t\t\t\t5A6C9C96991EDC970C760905804708C4 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t87FD40BD683E3BD044AA4D1B5CA58652 /* Build configuration list for PBXNativeTarget \"Masonry\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t933C252AC1697174177192BE69B419F9 /* Debug */,\n\t\t\t\tD1F20CA5AF74551DBEC539096B44760B /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tD193193A5B2CEF5D2D4537C9CFF8D5AB /* Build configuration list for PBXNativeTarget \"MJRefresh\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tFD95AC7BA12C7D02140A6F6CFB535BFE /* Debug */,\n\t\t\t\tCEF8ADC5C2118FD5FE07365B5CB9FF94 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n}\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>3.4.3</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_MJRefresh : NSObject\n@end\n@implementation PodsDummy_MJRefresh\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n#import \"MJRefreshAutoFooter.h\"\n#import \"MJRefreshBackFooter.h\"\n#import \"MJRefreshComponent.h\"\n#import \"MJRefreshFooter.h\"\n#import \"MJRefreshHeader.h\"\n#import \"MJRefreshAutoGifFooter.h\"\n#import \"MJRefreshAutoNormalFooter.h\"\n#import \"MJRefreshAutoStateFooter.h\"\n#import \"MJRefreshBackGifFooter.h\"\n#import \"MJRefreshBackNormalFooter.h\"\n#import \"MJRefreshBackStateFooter.h\"\n#import \"MJRefreshGifHeader.h\"\n#import \"MJRefreshNormalHeader.h\"\n#import \"MJRefreshStateHeader.h\"\n#import \"MJRefresh.h\"\n#import \"MJRefreshConfig.h\"\n#import \"MJRefreshConst.h\"\n#import \"NSBundle+MJRefresh.h\"\n#import \"UIScrollView+MJExtension.h\"\n#import \"UIScrollView+MJRefresh.h\"\n#import \"UIView+MJExtension.h\"\n\nFOUNDATION_EXPORT double MJRefreshVersionNumber;\nFOUNDATION_EXPORT const unsigned char MJRefreshVersionString[];\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh.debug.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/MJRefresh\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh.modulemap",
    "content": "framework module MJRefresh {\n  umbrella header \"MJRefresh-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/MJRefresh/MJRefresh.release.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/MJRefresh\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.1.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Masonry : NSObject\n@end\n@implementation PodsDummy_Masonry\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n#import \"MASCompositeConstraint.h\"\n#import \"MASConstraint+Private.h\"\n#import \"MASConstraint.h\"\n#import \"MASConstraintMaker.h\"\n#import \"MASLayoutConstraint.h\"\n#import \"Masonry.h\"\n#import \"MASUtilities.h\"\n#import \"MASViewAttribute.h\"\n#import \"MASViewConstraint.h\"\n#import \"NSArray+MASAdditions.h\"\n#import \"NSArray+MASShorthandAdditions.h\"\n#import \"NSLayoutConstraint+MASDebugAdditions.h\"\n#import \"View+MASAdditions.h\"\n#import \"View+MASShorthandAdditions.h\"\n#import \"ViewController+MASAdditions.h\"\n\nFOUNDATION_EXPORT double MasonryVersionNumber;\nFOUNDATION_EXPORT const unsigned char MasonryVersionString[];\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Masonry\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/Masonry\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry.modulemap",
    "content": "framework module Masonry {\n  umbrella header \"Masonry-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry.release.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Masonry\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/Masonry\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Masonry/Masonry.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Masonry\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/Masonry\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## MJRefresh\n\nCopyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n## Masonry\n\nCopyright (c) 2011-2012 Masonry Team - https://github.com/Masonry\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Copyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>MJRefresh</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Masonry</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_CMPageTitleView : NSObject\n@end\n@implementation PodsDummy_Pods_CMPageTitleView\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks-Debug-input-files.xcfilelist",
    "content": "${PODS_ROOT}/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks.sh\n${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework\n${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks-Debug-output-files.xcfilelist",
    "content": "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework\n${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks-Release-input-files.xcfilelist",
    "content": "${PODS_ROOT}/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks.sh\n${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework\n${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks-Release-output-files.xcfilelist",
    "content": "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework\n${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-frameworks.sh",
    "content": "#!/bin/sh\nset -e\nset -u\nset -o pipefail\n\nfunction on_error {\n  echo \"$(realpath -mq \"${0}\"):$1: error: Unexpected failure\"\n}\ntrap 'on_error $LINENO' ERR\n\nif [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then\n  # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy\n  # frameworks to, so exit 0 (signalling the script phase was successful).\n  exit 0\nfi\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nCOCOAPODS_PARALLEL_CODE_SIGN=\"${COCOAPODS_PARALLEL_CODE_SIGN:-false}\"\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\n# Used as a return value for each invocation of `strip_invalid_archs` function.\nSTRIP_BINARY_RETVAL=0\n\n# This protects against multiple targets copying the same framework dependency at the same time. The solution\n# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html\nRSYNC_PROTECT_TMP_FILES=(--filter \"P .*.??????\")\n\n# Copies and strips a vendored framework\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n    echo \"Symlinked...\"\n    source=\"$(readlink \"${source}\")\"\n  fi\n\n  # Use filter instead of exclude so missing patterns don't throw errors.\n  echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  elif [ -L \"${binary}\" ]; then\n    echo \"Destination binary is symlinked...\"\n    dirname=\"$(dirname \"${binary}\")\"\n    binary=\"${dirname}/$(readlink \"${binary}\")\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u)\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Copies and strips a vendored dSYM\ninstall_dsym() {\n  local source=\"$1\"\n  warn_missing_arch=${2:-true}\n  if [ -r \"$source\" ]; then\n    # Copy the dSYM into the targets temp dir.\n    echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${DERIVED_FILES_DIR}\\\"\"\n    rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"\n\n    local basename\n    basename=\"$(basename -s .dSYM \"$source\")\"\n    binary_name=\"$(ls \"$source/Contents/Resources/DWARF\")\"\n    binary=\"${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}\"\n\n    # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n    if [[ \"$(file \"$binary\")\" == *\"Mach-O \"*\"dSYM companion\"* ]]; then\n      strip_invalid_archs \"$binary\" \"$warn_missing_arch\"\n    fi\n\n    if [[ $STRIP_BINARY_RETVAL == 1 ]]; then\n      # Move the stripped file into its final destination.\n      echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\\\" \\\"${DWARF_DSYM_FOLDER_PATH}\\\"\"\n      rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"\n    else\n      # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing.\n      touch \"${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM\"\n    fi\n  fi\n}\n\n# Copies the bcsymbolmap files of a vendored framework\ninstall_bcsymbolmap() {\n    local bcsymbolmap_path=\"$1\"\n    local destination=\"${BUILT_PRODUCTS_DIR}\"\n    echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${bcsymbolmap_path}\" \"${destination}\"\"\n    rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${bcsymbolmap_path}\" \"${destination}\"\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY:-}\" -a \"${CODE_SIGNING_REQUIRED:-}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identity\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    local code_sign_cmd=\"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'\"\n\n    if [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n      code_sign_cmd=\"$code_sign_cmd &\"\n    fi\n    echo \"$code_sign_cmd\"\n    eval \"$code_sign_cmd\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  warn_missing_arch=${2:-true}\n  # Get architectures for current target binary\n  binary_archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)\"\n  # Intersect them with the architectures we are building for\n  intersected_archs=\"$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\\n' | sort | uniq -d)\"\n  # If there are no archs supported by this binary then warn the user\n  if [[ -z \"$intersected_archs\" ]]; then\n    if [[ \"$warn_missing_arch\" == \"true\" ]]; then\n      echo \"warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS).\"\n    fi\n    STRIP_BINARY_RETVAL=0\n    return\n  fi\n  stripped=\"\"\n  for arch in $binary_archs; do\n    if ! [[ \"${ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\"\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n  STRIP_BINARY_RETVAL=1\n}\n\ninstall_artifact() {\n  artifact=\"$1\"\n  base=\"$(basename \"$artifact\")\"\n  case $base in\n  *.framework)\n    install_framework \"$artifact\"\n    ;;\n  *.dSYM)\n    # Suppress arch warnings since XCFrameworks will include many dSYM files\n    install_dsym \"$artifact\" \"false\"\n    ;;\n  *.bcsymbolmap)\n    install_bcsymbolmap \"$artifact\"\n    ;;\n  *)\n    echo \"error: Unrecognized artifact \"$artifact\"\"\n    ;;\n  esac\n}\n\ncopy_artifacts() {\n  file_list=\"$1\"\n  while read artifact; do\n    install_artifact \"$artifact\"\n  done <$file_list\n}\n\nARTIFACT_LIST_FILE=\"${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt\"\nif [ -r \"${ARTIFACT_LIST_FILE}\" ]; then\n  copy_artifacts \"${ARTIFACT_LIST_FILE}\"\nfi\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework\"\n  install_framework \"${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework\"\n  install_framework \"${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework\"\nfi\nif [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n  wait\nfi\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_CMPageTitleViewVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_CMPageTitleViewVersionString[];\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.debug.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers\"\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"MJRefresh\" -framework \"Masonry\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.modulemap",
    "content": "framework module Pods_CMPageTitleView {\n  umbrella header \"Pods-CMPageTitleView-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleView/Pods-CMPageTitleView.release.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers\"\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"MJRefresh\" -framework \"Masonry\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_CMPageTitleViewTests : NSObject\n@end\n@implementation PodsDummy_Pods_CMPageTitleViewTests\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-frameworks.sh",
    "content": "#!/bin/sh\nset -e\nset -u\nset -o pipefail\n\nfunction on_error {\n  echo \"$(realpath -mq \"${0}\"):$1: error: Unexpected failure\"\n}\ntrap 'on_error $LINENO' ERR\n\nif [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then\n  # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy\n  # frameworks to, so exit 0 (signalling the script phase was successful).\n  exit 0\nfi\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nCOCOAPODS_PARALLEL_CODE_SIGN=\"${COCOAPODS_PARALLEL_CODE_SIGN:-false}\"\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\n# Used as a return value for each invocation of `strip_invalid_archs` function.\nSTRIP_BINARY_RETVAL=0\n\n# This protects against multiple targets copying the same framework dependency at the same time. The solution\n# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html\nRSYNC_PROTECT_TMP_FILES=(--filter \"P .*.??????\")\n\n# Copies and strips a vendored framework\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n    echo \"Symlinked...\"\n    source=\"$(readlink \"${source}\")\"\n  fi\n\n  # Use filter instead of exclude so missing patterns don't throw errors.\n  echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  elif [ -L \"${binary}\" ]; then\n    echo \"Destination binary is symlinked...\"\n    dirname=\"$(dirname \"${binary}\")\"\n    binary=\"${dirname}/$(readlink \"${binary}\")\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u)\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Copies and strips a vendored dSYM\ninstall_dsym() {\n  local source=\"$1\"\n  if [ -r \"$source\" ]; then\n    # Copy the dSYM into a the targets temp dir.\n    echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${DERIVED_FILES_DIR}\\\"\"\n    rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"\n\n    local basename\n    basename=\"$(basename -s .framework.dSYM \"$source\")\"\n    binary=\"${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}\"\n\n    # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n    if [[ \"$(file \"$binary\")\" == *\"Mach-O dSYM companion\"* ]]; then\n      strip_invalid_archs \"$binary\"\n    fi\n\n    if [[ $STRIP_BINARY_RETVAL == 1 ]]; then\n      # Move the stripped file into its final destination.\n      echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\\\" \\\"${DWARF_DSYM_FOLDER_PATH}\\\"\"\n      rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"\n    else\n      # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing.\n      touch \"${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM\"\n    fi\n  fi\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY:-}\" -a \"${CODE_SIGNING_REQUIRED:-}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identity\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    local code_sign_cmd=\"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'\"\n\n    if [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n      code_sign_cmd=\"$code_sign_cmd &\"\n    fi\n    echo \"$code_sign_cmd\"\n    eval \"$code_sign_cmd\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  # Get architectures for current target binary\n  binary_archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)\"\n  # Intersect them with the architectures we are building for\n  intersected_archs=\"$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\\n' | sort | uniq -d)\"\n  # If there are no archs supported by this binary then warn the user\n  if [[ -z \"$intersected_archs\" ]]; then\n    echo \"warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS).\"\n    STRIP_BINARY_RETVAL=0\n    return\n  fi\n  stripped=\"\"\n  for arch in $binary_archs; do\n    if ! [[ \"${ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\"\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n  STRIP_BINARY_RETVAL=1\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework\"\nfi\nif [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n  wait\nfi\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_CMPageTitleViewTestsVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_CMPageTitleViewTestsVersionString[];\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.debug.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"MJRefresh\" -framework \"Masonry\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.modulemap",
    "content": "framework module Pods_CMPageTitleViewTests {\n  umbrella header \"Pods-CMPageTitleViewTests-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewTests/Pods-CMPageTitleViewTests.release.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"MJRefresh\" -framework \"Masonry\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_CMPageTitleViewUITests : NSObject\n@end\n@implementation PodsDummy_Pods_CMPageTitleViewUITests\n@end\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_CMPageTitleViewUITestsVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_CMPageTitleViewUITestsVersionString[];\n\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.debug.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"MJRefresh\" -framework \"Masonry\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.modulemap",
    "content": "framework module Pods_CMPageTitleViewUITests {\n  umbrella header \"Pods-CMPageTitleViewUITests-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "CMPageTitleView/Pods/Target Support Files/Pods-CMPageTitleViewUITests/Pods-CMPageTitleViewUITests.release.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers\" \"${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"Foundation\" -framework \"MJRefresh\" -framework \"Masonry\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "CMPageTitleView.podspec",
    "content": "Pod::Spec.new do |s|\n    s.name         = 'CMPageTitleView'\n    s.version      = '0.7.4'\n    s.summary      = 'An easy way to use title bar'\n    s.homepage     = 'https://github.com/CrabMen/CMPageTitleView'\n    s.license      = 'MIT'\n    s.authors      = {'CrabMan' => 'tobecrabman@163.com'}\n    s.platform     = :ios, '8.0'\n    s.source       = {:git => 'https://github.com/CrabMen/CMPageTitleView.git', :tag => s.version}\n    s.source_files = '**/**/Class/*.{h,m}'\n    s.requires_arc = true\nend\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2018 CrabMan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "![](https://github.com/CrabMen/CMResources/blob/master/CMPageTitleView/logo.png)\n\n![](https://img.shields.io/cocoapods/p/CMPageTitleView.svg)\n![](https://img.shields.io/cocoapods/v/CMPageTitleView.svg)\n![GitHub last commit (branch)](https://img.shields.io/github/last-commit/CrabMen/CMPageTitleView/master)\n![](https://img.shields.io/apm/l/vim-mode.svg)\n\n* [效果展示](#screenshots)\n  * [效果展示 - 基本样式](#screenshots-basic)\n  * [效果展示 - 组合](#screenshots-multi)\n  * [效果展示 - 其他样式](#screenshots-others)\n\n* [安装](#installation)\n* [示例](#example)\n* [支持的配置](#properties)\n* [版本记录](#version)\n* [支持](#support)\n* [许可](#license)\n\n\n## <a id=\"screenshots\"></a>效果展示\n\n### <a id=\"screenshots-basic\"></a>效果展示 - 基本样式\n\n\n| 基本样式    |    GIF|\n| :-------- | --------:| \n|00-00.颜色效果 - RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_00.gif)|\n|00-01.颜色效果 - 填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_01.gif)|\n|00-02.颜色效果 - 无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_02.gif)|\n|00-03.切换样式 - 字体放大 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_03.gif)|\n|00-04.切换样式 - 下划线 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_04.gif)|\n|00-05.切换样式 - 遮罩 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_05.gif)|\n|00-06.切换样式 - 字体放大 - 延迟 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_06.gif)|\n|00-07.切换样式 - 下划线 - 延迟 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_07.gif)|\n|00-08.切换样式 - 遮罩 - 延迟 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_08.gif)|\n|00-09.附加效果 - 标题栏下方分割线 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_09.gif)|\n|00-10.附加效果 - 标题文字之间分割线 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_10.gif)|\n|00-11.对齐方式 -- 左对齐 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_11.gif)|\n|00-12.对齐方式 -- 右对齐 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_12.gif)|\n|00-13.对齐方式 -- 居中 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_13.gif)|\n|00-14.对齐方式 -- SpaceAround |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_14.gif)|\n|00-15.字体放大效果时对其方式 -- 居中对齐 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_15.gif)|\n|00-16.字体放大效果时对其方式 -- 上对齐 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_16.gif)|\n|00-17.字体放大效果时对其方式 -- 下对齐 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_00_17.gif)|\n\n\n\n### <a id=\"screenshots-multi\"></a>效果展示 - 组合样式\n\n根据上方的基本样式可以进行自由组合，从而达到你想要的效果；因组合样式过多，下方列出了部分\n\n| 组合样式    |    GIF|\n| :-------- | --------:| \n|01-00.字体放大 - 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_00.gif)|\n|01-01.字体放大 - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_01.gif)|\n|01-02.字体放大 - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_02.gif)|\n|01-03.字体放大(延迟) - 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_03.gif)|\n|01-04.字体放大(延迟) - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_04.gif)|\n|01-05.字体放大(延迟) - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_05.gif)|\n|01-06.下划线 - 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_06.gif)|\n|01-07.下划线 - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_07.gif)|\n|01-08.下划线 - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_08.gif)|\n|01-09.下划线(延迟) - 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_09.gif)|\n|01-10.下划线(延迟) - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_10.gif)|\n|01-11.下划线(延迟) - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_11.gif)|\n|01-12.下划线（固定宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_12.gif)|\n|01-13.下划线（固定宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_13.gif)|\n|01-14.下划线（固定宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_14.gif)|\n|01-15.下划线（延迟 && 固定宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_15.gif)|\n|01-16.下划线（延迟 && 固定宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_16.gif)|\n|01-17.下划线（延迟 && 固定宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_17.gif)|\n|01-18.下划线（比例宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_18.gif)|\n|01-19.下划线（比例宽度）- 颜色填充渐 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_19.gif)|\n|01-20.下划线（比例宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_20.gif)|\n|01-21.下划线（延迟 && 比例宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_21.gif)|\n|01-22.下划线（延迟 && 比例宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_22.gif)|\n|01-23.下划线（延迟 && 比例宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_23.gif)|\n|01-24.下划线（延展）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_24.gif)|\n|01-25.下划线（延展）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_25.gif)|\n|01-26.下划线（延展）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_26.gif)|\n|01-27.下划线（延展 && 固定宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_27.gif)|\n|01-28.下划线（延展 && 固定宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_28.gif)|\n|01-29.下划线（延展 && 固定宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_29.gif)|\n|01-30.下划线（延展 && 比例宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_30.gif)|\n|01-31.下划线（延展 && 比例宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_31.gif)|\n|01-32.下划线（延展 && 比例宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_32.gif)|\n|01-33.遮罩 - 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_33.gif)|\n|01-34.遮罩 - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_34.gif)|\n|01-35.遮罩 - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_35.gif)|\n|01-36.遮罩(延迟) - 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_36.gif)|\n|01-37.遮罩(延迟) - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_37.gif)|\n|01-38.遮罩(延迟) - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_38.gif)|\n|01-39.遮罩（固定宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_39.gif)|\n|01-40.遮罩（固定宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_40.gif)|\n|01-41.遮罩（固定宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_41.gif)|\n|01-42.遮罩（延迟 && 固定宽度）- 颜色RGB渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_42.gif)|\n|01-43.遮罩（延迟 && 固定宽度）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_43.gif)|\n|01-44.遮罩（延迟 && 固定宽度）- 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_44.gif)|\n|01-45.字体放大 && 下划线 - 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_45.gif)|\n|01-46.字体放大 && 下划线 && 延迟 - 颜色无渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_46.gif)|\n|01-47.字体放大 && 下划线（延展）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_47.gif)|\n|01-48.字体放大 && 下划线（延展 && 固定宽度 ）- 颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_48.gif)|\n|01-49.字体放大 && 下划线（延展 && 比例宽度 ）-颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_49.gif)|\n|01-50.字体放大 && 下划线（延展 && 放大时下对齐 ）-颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_50.gif)|\n|01-51.字体放大 && 下划线（延展 && 放大时下对齐 && 左对齐）-颜色填充渐变 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_01_51.gif)|\n\n\n### <a id=\"screenshots-others\"></a>效果展示 - 其他样式\n\n| 其他样式    |    GIF|\n| :-------- | --------:| \n|02-00.标题栏背景色 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_02_00.gif)|\n|02-01.标题栏背景图片 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_02_01.gif)|\n|02-02.rightView |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_02_02.gif)|\n|02-03.全屏穿透样式 |![](https://raw.githubusercontent.com/CrabMen/CMResources/master/CMPageTitleView/CMPageTitleView_02_03.gif)|\n\n## <a id=\"installation\"></a>安装 \n\n### CocoaPods安装:\n\n* For iOS8+: \n\n```ruby\nuse_frameworks!\ntarget '<Your Target Name>' do\n    pod 'CMPageTitleView'\nend\n```\n\n### 手动安装:\n将 `CMPageTitleView/CMPageTitleView/Class` 路径下的所有文件拖拽到你的项目中. \n\n\n## <a id=\"example\"></a>示例\n\n首先, 先要导入.h头文件.\n\n**如果cocoaposd安装:**\n```\n#import <CMPageTitleView/CMPageTitleView.h>\n```\n**如果手动安装:**\n\n```\n#import \"CMPageTitleView.h\"\n\n```\n\n创建CMPageTitleView 后，创建CMPageTitleConfig 对象并设置所需配置：\n\n```\n    CMPageTitleView *pageView = [[CMPageTitleView alloc] initWithFrame:frame];\n    pageView.delegate = self;\n    \n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers; //必传参数\n    pageView.cm_config = config;\n\n    [self.view addSubview:pageView];\n```\n\n同样支持Masonry布局，代码如下：\n\n```\n    CMPageTitleView *pageView = [[CMPageTitleView alloc] init];\n    [self.view addSubview:pageView];\n    \n    [pageView mas_makeConstraints:^(MASConstraintMaker *make) {\n        make.left.right.mas_equalTo(0);\n        make.top.mas_equalTo(CM_NAVI_BAR_H);\n        make.height.mas_equalTo(CM_SCREEN_H - CM_NAVI_BAR_H);\n        \n    }];\n    pageView.delegate = self;\n    \n    CMPageTitleConfig *config = [CMPageTitleConfig defaultConfig];\n    config.cm_childControllers = self.childControllers;//必传参数\n    \n    pageView.cm_config = config;\n\n```\n\n 按照上方代码，你已经创建了一个最简单的菜单栏🎉\n \n ## <a id=\"properties\"></a>支持的配置\n\n\n| 配置     |     描述 |    \n| :-------- | :--------| \n|  cm_gradientStyle  |  颜色渐变样式<br>``CMTitleColorGradientStyle_None``（ 颜色无渐变）<br>``CMTitleColorGradientStyle_RGB``（RGB颜色渐变） <br>``CMTitleColorGradientStyle_Fill``（填充色颜色渐变）|  \n|  cm_switchMode  |  标题切换样式<br>``CMPageTitleSwitchMode_Scale``(字体放大)<br>``CMPageTitleSwitchMode_Underline``（下划线样式）<br>``CMPageTitleSwitchMode_Cover`` （遮罩样式）<br>``CMPageTitleSwitchMode_Delay``（滑动切换时延迟，配合其他样式使用）|  \n|  cm_additionalMode  | 标题栏附加样式<br>``CMPageTitleAdditionalMode_Seperateline``（标题栏下方的分割线）<br>``CMPageTitleAdditionalMode_Splitter``（标题文字之间的分割线）|  \n|  cm_contentMode  |  对齐方式<br>``CMPageTitleContentMode_Center``（左右边距与标题间距一致）<br>``CMPageTitleContentMode_SpaceAround``(左右边距等于标题间距的一半)<br>``CMPageTitleContentMode_Left``（左对齐）<br>``CMPageTitleContentMode_Right``（右对齐） |  \n|  cm_scaleGradientContentMode  | 垂直方向上的对齐方式<br>``CMPageTitleScaleGradientContentMode_Center``（居中）<br>``CMPageTitleScaleGradientContentMode_Top``（上对齐）<br>``CMPageTitleScaleGradientContentMode_Bottom``（下对齐）<br>``注意：``只有属性``cm_switchMode``包含``CMPageTitleSwitchMode_Scale``下才有效果  |  \n|  cm_childControllers  |  子视图控制器数组 |  \n|  cm_titles  |  标题数组 |  \n|  cm_font  |  标题正常字体<br>默认字体大小：``[UIFont systemFontOfSize:15]`` |  \n|  cm_selectedFont  | 标题选中字体<br>默认选中字体大小：``cm_font``的1.15倍 |  \n|  cm_backgroundColor  | 视图的背景色<br>默认颜色：``[UIColor whiteColor]`` |  \n|  cm_normalColor  |  标题正常颜色<br>默认颜色：``[UIColor blackColor]`` |  \n|  cm_selectedColor  | 标题选中颜色<br>默认颜色：``[UIColor redColor]``|  \n|  cm_titleHeight  |  标题高度<br>默认高度：44|  \n|  cm_titleTop   |  标题视图距离上方的偏移量<br>默认高度：0|  \n|  cm_slideGestureEnable  | 是否支持侧滑<br>默认值：``YES``|  \n|  cm_titleMargin  |  标题之间的间隔|  \n|  cm_minTitleMargin  | 最小的标题间距<br>默认值为 20|  \n|  cm_defaultIndex  | 默认选中的index<br>默认选择第0个|  \n|  cm_seperaterLineColor  | 标题栏下方分割线的颜色<br>默认颜色：```[UIColor grayColor]```|  \n|  cm_seperateLineHeight  | 标题分割线的高度<br>默认值：1px|  \n|  cm_splitterColor  | 标题之间的分割线颜色<br>默认为：```[UIColor lightGrayColor]```|  \n|  cm_splitterSize  | 标题之间的分割线size<br> 默认宽度：1px<br>默认高度：标题栏高度的一半|  \n|  cm_animationDruction  | 下划线和遮罩，在点击标题时，动画的时间间隔 <br>默认值为：0.25 <br>``注意：``取值范围 0.25~0.8(超出范围会使用默认值)|  \n|  cm_rightView  | 垂直方向上的对齐方式<br>默认值：``CMPageTitleVerticalContentMode_Center``<br>``注意：``只有属性``cm_switchMode``包含``CMPageTitleSwitchMode_Scale``下有效果|  \n|  cm_parentController  |   父视图控制器 |  \n|  cm_fullScreen (getter=cm_isFullScreen)  | 是否全屏显示 <br>默认值：``NO`` |  \n|  cm_scale  |  标题的缩放等级 默认为 1.15<br>``注意：``不建议依赖该属性，后期可能会废弃，可以使用``cm_selectedFont``配合``cm_font``属性进行设置）|  \n|  cm_titleWidths  |   标题宽度数组<br>``注意：readonly`` |  \n|  cm_minContentWidth  |  标题的总宽度 + 左右边距 + 所有的标题最小间距<br>``注意：readonly``|  \n|  cm_titlesWidth  |   所有标题的总宽度<br>``注意： readonnly``）|  \n |  cm_underlineBorder  |  下划线视图是否圆角<br>默认值:``NO``|  \n|  cm_underlineHeight  |  下划线高度<br>默认值：2|  \n|  cm_underlineWidth  |  下划线宽度<br>默认情况下跟随文字宽度，但是设置该属性后下划线会固定使用该宽度|  \n|  cm_underlineWidthScale  |  下划线跟随文字宽度 * ``cm_underlineWidthScale``<br>``注意：``比例范围 0 ~ 1.3（超出 1.3 按 1.0 处理）|  \n|  cm_underlineColor  |  下划线颜色<br>默认跟随标题的选中颜色|  \n|  cm_underlineStretch  |  下划线是否延长<br>默认值：``NO`` （具体效果可以看github效果展示）|  \n|  cm_coverColor  |  遮罩颜色|  \n|  cm_coverRadius |  遮罩圆角半径<br>默认为 cover高度的一半|  \n|  cm_coverWidth  |  遮罩固定宽度 <br>``注意：``未做最大最小限制，请根据实际情况妥善设置|  \n|  cm_coverVerticalMargin  |   遮罩垂直方向边距<br>``注意：``未做最大最小限制，请根据实际情况妥善设置|  \n|  cm_coverHorizontalMargin  |  遮罩水平方向边距<br>``注意：``未做最大最小限制，请根据实际情况妥善设置|  \n\n\n\n**注意：** 倘若需要复杂效果，可以通过创建``CMPageTitleConfig``对象中的 ``cm_gradientStyle``（颜色渐变样式）、``cm_switchMode``（标题切换样式）、``cm_additionalMode``（附加效果）、``cm_contentMode``（对齐方式）、``cm_scaleGradientContentMode``（放大效果时的对齐样式）等基本样式的组合实现各种复杂效果，可以下载Demo查看具体效果，但是能实现的组合远远不止这些，更多组合可以集成到项目中尝试😊\n \n## <a id=\"version\"></a> 版本\n* 2018-08-13 初始化项目 \n* 2019-04-26 版本 **0.3.0** 新增 下划线比例宽度跟随标题文字宽度\n* 2019-05-03 版本 **0.3.1**\n  * cm_scale可以继续使用，新增``cm_selectedFont``属性，便于设置选中字体大小；\n  * 支持**Masonry**\n* 2019-05-09 版本 **0.4.0**\n  * 新增设置标题分割线Size以及Color功能\n  * 新增对外暴露的代理方法，便于用户做对应处理\n  * 新增断言异常提示；新增设置是否允许侧滑功能\n* 2019-05-16 版本 **0.4.1** 修复``cm_seperateLineHeight``为0时无效的问题\n* 2019-05-17 版本 **0.4.2** 新增``cm_animationDruction``属性，便于用户设置动画时间\n* 2019-05-23 版本 **0.5.0** \n  * 新增``cm_verticalContentMode``，可以设置标题文字垂直方向的对齐方式\n  * 新增``cm_additionalMode``，便于设置分割线\n  * 优化``cm_backgroundColor``效果；\n  * 优化相关代码调用时机\n* ~~2019-07-13 版本 **0.5.1** ``CMPageTitleView``中新增``-(void)cm_reloadConfig``方法，便于用户刷新配置~~\n* 2019-07-13 版本 **0.5.2** \n  * ``CMPageTitleView``中新增``-(void)cm_reloadConfig``方法，便于用户刷新配置；\n  * 修复**0.5.1**中的布局bug；修复部分情况下``CMPageTitleContentView``对象尺寸不准确问题\n* 2019-08-14 版本 **0.6.0** \n  * 新增cm_rightView属性\n  * 使用``NSLayoutConstraint``优化界面布局\n  * 优化``CMPageTitleConfig``类的``getter``方法，大幅提高三方库性能\n  * 解决与导航栏侧滑手势冲突的问题\n  * 修复设置``cm_defaultIndex``为非0时，界面动画闪动问题\n  * 新增示例\n* 2019-12-21 版本 **0.6.1** \n  * 手动管理childController的生命周期\n  * 优化rightView展示样式\n  * 新增childController中跳转逻辑demo\n* 2019-05-10 版本 **0.6.2** \n  * 紧急修复iOS10机型标题栏的NSLayoutConstraint偏移问题\n* 2020-06-07 版本 **0.7.0** \n  * 新增全屏穿透样式\n* 2020-07-15 版本 **0.7.1** \n  * 紧急修复iOS11 在滑动内容视图时,Cell向上偏移的问题\n  * 适配MJRefresh\n* 2020-10-15 版本 **0.7.2** \n  * 适配横竖屏切换\n* 2020-10-29 版本 **0.7.3** \n    * 新增 ``cm_titleTop``属性\n* 2020-12-17 版本 **0.7.4** \n        * 修复设置 ``cm_titleTop``时,rightview偏移问题\n## 注意\n**1. UIScrollView、UITableView、UICollectionView 在标题栏切换时，下沉问题**\n在``UIScrollView``、``UITableView``、``UICollectionView``视图所在的Controller中添加如下代码，（具体可以参考Demo中``CMChildTableController.m``的第95行）\n\n```\n  if (@available(iOS 11.0, *)) {\n        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;\n    } else {\n        self.automaticallyAdjustsScrollViewInsets = NO;\n    }\n```\n**2. 0.7.0版本中新增的全屏穿透样式**\n全屏穿透样式在使用**MJRefresh**作为视图的下拉刷新时，透过标题栏是可以看到下拉刷新的布局的，请合理使用。\n目前暂未想到良好的解决方案，如果你有好的方案，可以提PR\n\n\n## <a id=\"support\"></a>支持\n* 如果觉得该三方库还不错，可以[**★Star**](#)支持一下你的[**★Star**](#)就是我最大的动力\n* 如果发现bug或想有其他的新功能，可以 **[issue](https://github.com/CrabMen/CMPageTitleView/issues)** 我\n\n## <a id=\"license\"></a>许可\nCMPageTitleView 基于MIT许可\n\n"
  }
]