[
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\n# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore\n\n## Build generated\nbuild/\nDerivedData/\n\n## Various settings\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n\n## Other\n*.moved-aside\n*.xcuserstate\n\n## Obj-C/Swift specific\n*.hmap\n*.ipa\n*.dSYM.zip\n*.dSYM\n\n# CocoaPods\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control\n#\n# Pods/\n\n# Carthage\n#\n# Add this line if you want to avoid checking in source code from Carthage dependencies.\n# Carthage/Checkouts\n\nCarthage/Build\n\n# fastlane\n#\n# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the \n# screenshots whenever they are needed.\n# For more information about the recommended setup visit:\n# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md\n\nfastlane/report.xml\nfastlane/screenshots\n\n#Code Injection\n#\n# After new code Injection tools there's a generated folder /iOSInjectionProject\n# https://github.com/johnno1962/injectionforxcode\n\niOSInjectionProject/\n"
  },
  {
    "path": "InputView/YZInputView.h",
    "content": "//\n//  YZInputView.h\n//  YZInputView\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface YZInputView : UITextView\n\n/**\n *  textView最大行数\n */\n@property (nonatomic, assign) NSUInteger maxNumberOfLines;\n\n/**\n *  文字高度改变block → 文字高度改变会自动调用\n *  block参数(text) → 文字内容\n *  block参数(textHeight) → 文字高度\n */\n@property (nonatomic, strong) void(^yz_textHeightChangeBlock)(NSString *text,CGFloat textHeight);\n\n/**\n *  设置圆角\n */\n@property (nonatomic, assign) NSUInteger cornerRadius;\n\n/**\n *  占位文字\n */\n@property (nonatomic, strong) NSString *placeholder;\n\n/**\n *  占位文字颜色\n */\n@property (nonatomic, strong) UIColor *placeholderColor;\n\n@end\n"
  },
  {
    "path": "InputView/YZInputView.m",
    "content": "//\n//  YZInputView.m\n//  YZInputView\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. All rights reserved.\n//\n\n#import \"YZInputView.h\"\n\n@interface YZInputView ()\n\n/**\n *  占位文字View: 为什么使用UITextView，这样直接让占位文字View = 当前textView,文字就会重叠显示\n */\n@property (nonatomic, weak) UITextView *placeholderView;\n\n/**\n *  文字高度\n */\n@property (nonatomic, assign) NSInteger textH;\n\n/**\n *  文字最大高度\n */\n@property (nonatomic, assign) NSInteger maxTextH;\n\n@end\n\n@implementation YZInputView\n\n- (UITextView *)placeholderView\n{\n    if (_placeholderView == nil) {\n        UITextView *placeholderView = [[UITextView alloc] init];\n        _placeholderView = placeholderView;\n        _placeholderView.scrollEnabled = NO;\n        _placeholderView.showsHorizontalScrollIndicator = NO;\n        _placeholderView.showsVerticalScrollIndicator = NO;\n        _placeholderView.userInteractionEnabled = NO;\n        _placeholderView.font = self.font;\n        _placeholderView.textColor = [UIColor lightGrayColor];\n        _placeholderView.backgroundColor = [UIColor clearColor];\n        [self addSubview:placeholderView];\n    }\n    return _placeholderView;\n}\n\n- (void)awakeFromNib\n{\n    [self setup];\n}\n\n- (instancetype)initWithFrame:(CGRect)frame\n{\n    if (self = [super initWithFrame:frame]) {\n        [self setup];\n    }\n    return self;\n}\n\n- (void)setup\n{\n    self.scrollEnabled = NO;\n    self.scrollsToTop = NO;\n    self.showsHorizontalScrollIndicator = NO;\n    self.enablesReturnKeyAutomatically = YES;\n    self.layer.borderWidth = 1;\n    self.layer.cornerRadius = 5;\n    self.layer.borderColor = [UIColor lightGrayColor].CGColor;\n    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textDidChange) name:UITextViewTextDidChangeNotification object:self];\n}\n\n- (void)setMaxNumberOfLines:(NSUInteger)maxNumberOfLines\n{\n    _maxNumberOfLines = maxNumberOfLines;\n    \n    // 计算最大高度 = (每行高度 * 总行数 + 文字上下间距)\n    _maxTextH = ceil(self.font.lineHeight * maxNumberOfLines + self.textContainerInset.top + self.textContainerInset.bottom);\n    \n}\n\n- (void)setCornerRadius:(NSUInteger)cornerRadius\n{\n    _cornerRadius = cornerRadius;\n    self.layer.cornerRadius = cornerRadius;\n}\n\n- (void)setYz_textHeightChangeBlock:(void (^)(NSString *, CGFloat))yz_textChangeBlock\n{\n    _yz_textHeightChangeBlock = yz_textChangeBlock;\n    \n    [self textDidChange];\n}\n\n- (void)setPlaceholderColor:(UIColor *)placeholderColor\n{\n    _placeholderColor = placeholderColor;\n    \n    self.placeholderView.textColor = placeholderColor;\n}\n\n- (void)setPlaceholder:(NSString *)placeholder\n{\n    _placeholder = placeholder;\n    \n    self.placeholderView.text = placeholder;\n}\n\n- (void)textDidChange\n{\n    // 占位文字是否显示\n    self.placeholderView.hidden = self.text.length > 0;\n    \n    NSInteger height = ceilf([self sizeThatFits:CGSizeMake(self.bounds.size.width, MAXFLOAT)].height);\n    \n    if (_textH != height) { // 高度不一样，就改变了高度\n        \n        // 最大高度，可以滚动\n        self.scrollEnabled = height > _maxTextH && _maxTextH > 0;\n        \n        _textH = height;\n        \n        if (_yz_textHeightChangeBlock && self.scrollEnabled == NO) {\n            _yz_textHeightChangeBlock(self.text,height);\n            [self.superview layoutIfNeeded];\n            self.placeholderView.frame = self.bounds;\n        }\n    }\n}\n\n- (void)dealloc\n{\n    [[NSNotificationCenter defaultCenter] removeObserver:self];\n}\n\n@end\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 iThinker_YZ\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": "# YZInputView\n类似微信文本输入框实现，底部评论输入View，随着文字的增加，textView自增长高度\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/AppDelegate.h",
    "content": "//\n//  AppDelegate.h\n//  YZInputViewDemo\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. 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": "YZInputViewDemo/YZInputViewDemo/AppDelegate.m",
    "content": "//\n//  AppDelegate.m\n//  YZInputViewDemo\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. All rights reserved.\n//\n\n#import \"AppDelegate.h\"\n\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    return YES;\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 throttle down OpenGL ES frame rates. Games should use this method to pause the game.\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- (void)applicationWillEnterForeground:(UIApplication *)application {\n    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.\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- (void)applicationWillTerminate:(UIApplication *)application {\n    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n}\n\n@end\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\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  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/Assets.xcassets/plus.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"plus.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": "YZInputViewDemo/YZInputViewDemo/Assets.xcassets/smail.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"smail.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": "YZInputViewDemo/YZInputViewDemo/Assets.xcassets/sound.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"sound.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": "YZInputViewDemo/YZInputViewDemo/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"8150\" systemVersion=\"15A204g\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"8122\"/>\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=\"Llm-lL-Icb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"xb3-aO-Qok\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"600\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <animations/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\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": "YZInputViewDemo/YZInputViewDemo/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"9532\" systemVersion=\"14F1505\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" initialViewController=\"BYZ-38-t0r\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"9530\"/>\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=\"y3c-jy-aDJ\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"wfy-db-euE\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"8bC-Xf-vdC\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"duu-fl-Co6\" userLabel=\"Bottom\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"632\" width=\"375\" height=\"35\"/>\n                                <subviews>\n                                    <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oS5-jy-gci\">\n                                        <rect key=\"frame\" x=\"5\" y=\"2\" width=\"30\" height=\"30\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"width\" constant=\"30\" id=\"UQN-au-UAb\"/>\n                                            <constraint firstAttribute=\"height\" constant=\"30\" id=\"bpK-tg-1Ed\"/>\n                                        </constraints>\n                                        <state key=\"normal\" image=\"sound\"/>\n                                    </button>\n                                    <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Il-ts-6iQ\">\n                                        <rect key=\"frame\" x=\"340\" y=\"2\" width=\"30\" height=\"30\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"30\" id=\"DzF-C1-f3e\"/>\n                                            <constraint firstAttribute=\"width\" constant=\"30\" id=\"IPc-cX-FIm\"/>\n                                        </constraints>\n                                        <state key=\"normal\" image=\"plus\"/>\n                                    </button>\n                                    <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9Ef-Kk-n35\">\n                                        <rect key=\"frame\" x=\"300\" y=\"2\" width=\"30\" height=\"30\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"30\" id=\"aOB-Fw-tMW\"/>\n                                            <constraint firstAttribute=\"width\" constant=\"30\" id=\"e26-JM-q0j\"/>\n                                        </constraints>\n                                        <state key=\"normal\" image=\"smail\"/>\n                                    </button>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" textAlignment=\"natural\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Jcz-cV-kam\" customClass=\"YZInputView\">\n                                        <rect key=\"frame\" x=\"45\" y=\"5\" width=\"250\" height=\"25\"/>\n                                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                    </textView>\n                                </subviews>\n                                <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                <constraints>\n                                    <constraint firstItem=\"Jcz-cV-kam\" firstAttribute=\"leading\" secondItem=\"oS5-jy-gci\" secondAttribute=\"trailing\" constant=\"10\" id=\"4QF-PL-kEE\"/>\n                                    <constraint firstItem=\"oS5-jy-gci\" firstAttribute=\"centerY\" secondItem=\"duu-fl-Co6\" secondAttribute=\"centerY\" id=\"7xb-nH-It4\"/>\n                                    <constraint firstItem=\"oS5-jy-gci\" firstAttribute=\"leading\" secondItem=\"duu-fl-Co6\" secondAttribute=\"leading\" constant=\"5\" id=\"Gqq-1d-Go3\"/>\n                                    <constraint firstItem=\"9Ef-Kk-n35\" firstAttribute=\"leading\" secondItem=\"Jcz-cV-kam\" secondAttribute=\"trailing\" constant=\"5\" id=\"HEI-Dp-yfw\"/>\n                                    <constraint firstItem=\"9Ef-Kk-n35\" firstAttribute=\"centerY\" secondItem=\"duu-fl-Co6\" secondAttribute=\"centerY\" id=\"KEj-c8-db5\"/>\n                                    <constraint firstItem=\"3Il-ts-6iQ\" firstAttribute=\"centerY\" secondItem=\"duu-fl-Co6\" secondAttribute=\"centerY\" id=\"X1Q-cP-aHv\"/>\n                                    <constraint firstAttribute=\"height\" constant=\"35\" id=\"YaA-hr-IGp\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"3Il-ts-6iQ\" secondAttribute=\"trailing\" constant=\"5\" id=\"bg3-ms-IYK\"/>\n                                    <constraint firstItem=\"Jcz-cV-kam\" firstAttribute=\"top\" secondItem=\"duu-fl-Co6\" secondAttribute=\"top\" constant=\"5\" id=\"iQH-oe-kJa\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"oS5-jy-gci\" secondAttribute=\"bottom\" id=\"kK6-fl-0ku\"/>\n                                    <constraint firstItem=\"3Il-ts-6iQ\" firstAttribute=\"leading\" secondItem=\"9Ef-Kk-n35\" secondAttribute=\"trailing\" constant=\"10\" id=\"vDG-Dw-6LH\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"Jcz-cV-kam\" secondAttribute=\"bottom\" constant=\"5\" id=\"zem-wV-BT8\"/>\n                                </constraints>\n                                <variation key=\"default\">\n                                    <mask key=\"constraints\">\n                                        <exclude reference=\"kK6-fl-0ku\"/>\n                                    </mask>\n                                </variation>\n                            </view>\n                        </subviews>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                        <constraints>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"duu-fl-Co6\" secondAttribute=\"trailing\" id=\"a2I-DW-b59\"/>\n                            <constraint firstItem=\"wfy-db-euE\" firstAttribute=\"top\" secondItem=\"duu-fl-Co6\" secondAttribute=\"bottom\" id=\"lwD-E3-NvV\"/>\n                            <constraint firstItem=\"duu-fl-Co6\" firstAttribute=\"leading\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"leading\" id=\"yOP-6r-wBB\"/>\n                        </constraints>\n                    </view>\n                    <simulatedScreenMetrics key=\"simulatedDestinationMetrics\" type=\"retina47\"/>\n                    <connections>\n                        <outlet property=\"bottomCons\" destination=\"lwD-E3-NvV\" id=\"3qm-3l-mCJ\"/>\n                        <outlet property=\"bottomHCons\" destination=\"YaA-hr-IGp\" id=\"m6J-gG-BMj\"/>\n                        <outlet property=\"inputView\" destination=\"Jcz-cV-kam\" id=\"24X-i4-K6X\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dkx-z0-nzr\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"plus\" width=\"30\" height=\"30\"/>\n        <image name=\"smail\" width=\"30\" height=\"30\"/>\n        <image name=\"sound\" width=\"30\" height=\"30\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/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>en</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>CFBundleSignature</key>\n\t<string>????</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</dict>\n</plist>\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/ViewController.h",
    "content": "//\n//  ViewController.h\n//  YZInputViewDemo\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface ViewController : UIViewController\n\n\n@end\n\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/ViewController.m",
    "content": "//\n//  ViewController.m\n//  YZInputViewDemo\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. All rights reserved.\n//\n\n#import \"ViewController.h\"\n#import \"YZInputView.h\"\n\n@interface ViewController ()\n@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomCons;\n@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomHCons;\n@property (weak, nonatomic) IBOutlet YZInputView *inputView;\n@end\n\n@implementation ViewController\n\n-  (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event\n{\n    [self.view endEditing:YES];\n}\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    // Do any additional setup after loading the view, typically from a nib.\n    \n    // 监听键盘弹出\n    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];\n    \n    // 设置文本框占位文字\n    _inputView.placeholder = @\"小码哥 iOS培训 吖了个峥\";\n    _inputView.placeholderColor = [UIColor redColor];\n    \n    // 监听文本框文字高度改变\n    _inputView.yz_textHeightChangeBlock = ^(NSString *text,CGFloat textHeight){\n        // 文本框文字高度改变会自动执行这个【block】，可以在这【修改底部View的高度】\n        // 设置底部条的高度 = 文字高度 + textView距离上下间距约束\n        // 为什么添加10 ？（10 = 底部View距离上（5）底部View距离下（5）间距总和）\n        _bottomHCons.constant = textHeight + 10;\n    };\n    \n    // 设置文本框最大行数\n    _inputView.maxNumberOfLines = 4;\n}\n\n// 键盘弹出会调用\n- (void)keyboardWillChangeFrame:(NSNotification *)note\n{\n    // 获取键盘frame\n    CGRect endFrame = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];\n    \n    // 获取键盘弹出时长\n    CGFloat duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue];\n    CGFloat screenH = [UIScreen mainScreen].bounds.size.height;\n    \n    // 修改底部视图距离底部的间距\n    _bottomCons.constant = endFrame.origin.y != screenH?endFrame.size.height:0;\n    \n    // 约束动画\n    [UIView animateWithDuration:duration animations:^{\n        [self.view layoutIfNeeded];\n    }];\n}\n\n@end\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo/main.m",
    "content": "//\n//  main.m\n//  YZInputViewDemo\n//\n//  Created by yz on 16/8/1.\n//  Copyright © 2016年 yz. 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": "YZInputViewDemo/YZInputViewDemo.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\tEC7C2BCF1D4FA49200DA94EE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = EC7C2BCE1D4FA49200DA94EE /* main.m */; };\n\t\tEC7C2BD21D4FA49200DA94EE /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EC7C2BD11D4FA49200DA94EE /* AppDelegate.m */; };\n\t\tEC7C2BD51D4FA49200DA94EE /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EC7C2BD41D4FA49200DA94EE /* ViewController.m */; };\n\t\tEC7C2BD81D4FA49200DA94EE /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EC7C2BD61D4FA49200DA94EE /* Main.storyboard */; };\n\t\tEC7C2BDA1D4FA49200DA94EE /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EC7C2BD91D4FA49200DA94EE /* Assets.xcassets */; };\n\t\tEC7C2BDD1D4FA49200DA94EE /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EC7C2BDB1D4FA49200DA94EE /* LaunchScreen.storyboard */; };\n\t\tEC7C2BEB1D4FB87B00DA94EE /* YZInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = EC7C2BEA1D4FB87B00DA94EE /* YZInputView.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXFileReference section */\n\t\tEC7C2BCA1D4FA49200DA94EE /* YZInputViewDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = YZInputViewDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tEC7C2BCE1D4FA49200DA94EE /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\tEC7C2BD01D4FA49200DA94EE /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = \"<group>\"; };\n\t\tEC7C2BD11D4FA49200DA94EE /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = \"<group>\"; };\n\t\tEC7C2BD31D4FA49200DA94EE /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = \"<group>\"; };\n\t\tEC7C2BD41D4FA49200DA94EE /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = \"<group>\"; };\n\t\tEC7C2BD71D4FA49200DA94EE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\tEC7C2BD91D4FA49200DA94EE /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\tEC7C2BDC1D4FA49200DA94EE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\tEC7C2BDE1D4FA49200DA94EE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tEC7C2BE91D4FB87B00DA94EE /* YZInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YZInputView.h; sourceTree = \"<group>\"; };\n\t\tEC7C2BEA1D4FB87B00DA94EE /* YZInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YZInputView.m; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tEC7C2BC71D4FA49200DA94EE /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\tEC7C2BC11D4FA49200DA94EE = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BE81D4FB87B00DA94EE /* InputView */,\n\t\t\t\tEC7C2BCC1D4FA49200DA94EE /* YZInputViewDemo */,\n\t\t\t\tEC7C2BCB1D4FA49200DA94EE /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC7C2BCB1D4FA49200DA94EE /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BCA1D4FA49200DA94EE /* YZInputViewDemo.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC7C2BCC1D4FA49200DA94EE /* YZInputViewDemo */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BD01D4FA49200DA94EE /* AppDelegate.h */,\n\t\t\t\tEC7C2BD11D4FA49200DA94EE /* AppDelegate.m */,\n\t\t\t\tEC7C2BD31D4FA49200DA94EE /* ViewController.h */,\n\t\t\t\tEC7C2BD41D4FA49200DA94EE /* ViewController.m */,\n\t\t\t\tEC7C2BD61D4FA49200DA94EE /* Main.storyboard */,\n\t\t\t\tEC7C2BD91D4FA49200DA94EE /* Assets.xcassets */,\n\t\t\t\tEC7C2BDB1D4FA49200DA94EE /* LaunchScreen.storyboard */,\n\t\t\t\tEC7C2BDE1D4FA49200DA94EE /* Info.plist */,\n\t\t\t\tEC7C2BCD1D4FA49200DA94EE /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = YZInputViewDemo;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC7C2BCD1D4FA49200DA94EE /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BCE1D4FA49200DA94EE /* main.m */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC7C2BE81D4FB87B00DA94EE /* InputView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BE91D4FB87B00DA94EE /* YZInputView.h */,\n\t\t\t\tEC7C2BEA1D4FB87B00DA94EE /* YZInputView.m */,\n\t\t\t);\n\t\t\tname = InputView;\n\t\t\tpath = ../InputView;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\tEC7C2BC91D4FA49200DA94EE /* YZInputViewDemo */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = EC7C2BE11D4FA49200DA94EE /* Build configuration list for PBXNativeTarget \"YZInputViewDemo\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tEC7C2BC61D4FA49200DA94EE /* Sources */,\n\t\t\t\tEC7C2BC71D4FA49200DA94EE /* Frameworks */,\n\t\t\t\tEC7C2BC81D4FA49200DA94EE /* 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 = YZInputViewDemo;\n\t\t\tproductName = YZInputViewDemo;\n\t\t\tproductReference = EC7C2BCA1D4FA49200DA94EE /* YZInputViewDemo.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tEC7C2BC21D4FA49200DA94EE /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0720;\n\t\t\t\tORGANIZATIONNAME = yz;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tEC7C2BC91D4FA49200DA94EE = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.2.1;\n\t\t\t\t\t\tDevelopmentTeam = YKYB5YMSRP;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = EC7C2BC51D4FA49200DA94EE /* Build configuration list for PBXProject \"YZInputViewDemo\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\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 = EC7C2BC11D4FA49200DA94EE;\n\t\t\tproductRefGroup = EC7C2BCB1D4FA49200DA94EE /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tEC7C2BC91D4FA49200DA94EE /* YZInputViewDemo */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tEC7C2BC81D4FA49200DA94EE /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tEC7C2BDD1D4FA49200DA94EE /* LaunchScreen.storyboard in Resources */,\n\t\t\t\tEC7C2BDA1D4FA49200DA94EE /* Assets.xcassets in Resources */,\n\t\t\t\tEC7C2BD81D4FA49200DA94EE /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\tEC7C2BC61D4FA49200DA94EE /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tEC7C2BD51D4FA49200DA94EE /* ViewController.m in Sources */,\n\t\t\t\tEC7C2BD21D4FA49200DA94EE /* AppDelegate.m in Sources */,\n\t\t\t\tEC7C2BEB1D4FB87B00DA94EE /* YZInputView.m in Sources */,\n\t\t\t\tEC7C2BCF1D4FA49200DA94EE /* main.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXVariantGroup section */\n\t\tEC7C2BD61D4FA49200DA94EE /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BD71D4FA49200DA94EE /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC7C2BDB1D4FA49200DA94EE /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7C2BDC1D4FA49200DA94EE /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\tEC7C2BDF1D4FA49200DA94EE /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\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_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"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 = gnu99;\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 = 9.2;\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\tEC7C2BE01D4FA49200DA94EE /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\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_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"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 = gnu99;\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 = 9.2;\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\tEC7C2BE21D4FA49200DA94EE /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = YZInputViewDemo/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = iThinker.YZInputViewDemo;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tEC7C2BE31D4FA49200DA94EE /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = YZInputViewDemo/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = iThinker.YZInputViewDemo;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\tEC7C2BC51D4FA49200DA94EE /* Build configuration list for PBXProject \"YZInputViewDemo\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tEC7C2BDF1D4FA49200DA94EE /* Debug */,\n\t\t\t\tEC7C2BE01D4FA49200DA94EE /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tEC7C2BE11D4FA49200DA94EE /* Build configuration list for PBXNativeTarget \"YZInputViewDemo\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tEC7C2BE21D4FA49200DA94EE /* Debug */,\n\t\t\t\tEC7C2BE31D4FA49200DA94EE /* 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 = EC7C2BC21D4FA49200DA94EE /* Project object */;\n}\n"
  },
  {
    "path": "YZInputViewDemo/YZInputViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:YZInputViewDemo.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  }
]