[
  {
    "path": ".codeclimate.yml",
    "content": "languages:\n   Objective C: true\n   Swift: true\nexclude_paths:\n- \"Screenshot/*\"\n"
  },
  {
    "path": ".gitattributes",
    "content": "*.m linguist-detectable=false\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "github: hackiftekhar\nbuy_me_a_coffee: hackiftekhar\ncustom: [\"https://www.paypal.me/hackiftekhar\"]\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Demo Project**\nIf applicable, add demo project.\n\n### Versions\n**Xcode:** x.x\n**Mac OS:** xx.xx.x\n**Simulator/Device:** xx.x\n**Simulator/Device Name:** iPhone xx\n**Library Version:** x.x.x\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/copilot-instructions.md",
    "content": "# IQKeyboardManager\n\nIQKeyboardManager is an iOS library available in both Objective-C and Swift versions that provides automatic keyboard management functionality. The library includes comprehensive demo applications and supports CocoaPods, Carthage, and Swift Package Manager.\n\nAlways reference these instructions first and fallback to search or bash commands only when you encounter unexpected information that does not match the info here.\n\n## Working Effectively\n\n### Environment Requirements\n- **CRITICAL**: This is an iOS-specific library that requires macOS with Xcode for full development\n- Minimum Xcode 15 for Demo projects\n- Minimum Xcode 13 for library development  \n- iOS 13.0+ target for both Objective-C and Swift versions\n- Swift 5.7+ supported\n\n### Dependency Management and Setup\n**ALWAYS** perform these steps in order for fresh repository setup:\n\n1. **Install CocoaPods** (on macOS only):\n   ```bash\n   gem install cocoapods --user-install\n   export PATH=$HOME/.local/share/gem/ruby/3.2.0/bin:$PATH\n   ```\n\n2. **Install dependencies** (macOS only - NEVER CANCEL - takes 5-10 minutes):\n   ```bash\n   cd /path/to/IQKeyboardManager\n   pod install --repo-update\n   ```\n   Set timeout to 15+ minutes. This downloads all dependencies including SwiftLint.\n   **NOTE**: `pod install` fails in sandboxed environments due to network restrictions.\n\n3. **Verify Swift Package Manager dependencies** (works on both macOS and Linux - takes ~2 seconds):\n   ```bash\n   swift package resolve\n   ```\n   This resolves all SPM dependencies successfully even on Linux.\n\n4. **Show dependency tree**:\n   ```bash\n   swift package show-dependencies\n   ```\n\n### Build and Test\n**IMPORTANT**: Full builds require macOS with Xcode installed. Linux environments can only validate Swift Package Manager dependency resolution.\n\n#### On macOS with Xcode:\n1. **Build Demo Applications** (NEVER CANCEL - takes 10-15 minutes):\n   ```bash\n   cd /path/to/IQKeyboardManager\n   xcodebuild -workspace Demo.xcworkspace -scheme DemoSwift -sdk iphonesimulator clean build\n   xcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator clean build\n   ```\n   Set timeout to 30+ minutes for each command.\n\n2. **Run UI Tests** (NEVER CANCEL - takes 15-20 minutes):\n   ```bash\n   xcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.0' test\n   ```\n   Set timeout to 45+ minutes.\n\n#### On Linux (Limited Validation):\n- **Dependency resolution works**: `swift package resolve` (takes ~2 seconds)\n- **Dependency analysis works**: `swift package show-dependencies`\n- **Building FAILS**: `swift build` fails with \"no such module 'UIKit'\" error (expected)\n- **Cannot run simulators or UI tests** \n- **CocoaPods may fail** due to network restrictions in sandboxed environments\n\n### Linting and Code Quality\n1. **SwiftLint** (macOS only - installed via CocoaPods):\n   ```bash\n   Pods/SwiftLint/swiftlint\n   ```\n   **NOTE**: Not available on Linux or when CocoaPods installation fails.\n   \n2. **Check formatting** before commits (macOS only):\n   ```bash\n   Pods/SwiftLint/swiftlint --fix\n   ```\n\n3. **Manual code review** (any platform):\n   - Review Swift files in `IQKeyboardManagerSwift/`\n   - Check Objective-C files in `IQKeyboardManager/`\n   - Verify integration examples in demo apps\n\n## Validation\n\n### Required Manual Testing Scenarios\n**ALWAYS** test these scenarios after making changes to keyboard management:\n\n1. **Basic Keyboard Management**:\n   - Run DemoSwift app in iOS Simulator  \n   - Navigate to \"UITextField/UITextView example\"\n   - Tap text fields - verify keyboard shows/hides smoothly\n   - Verify toolbar appears above keyboard with Previous/Next/Done buttons\n   - Test scrolling behavior when keyboard appears\n   - **Validate**: No text fields are obscured by keyboard\n\n2. **Multi-Field Navigation**:\n   - Use Previous/Next buttons in toolbar to navigate between text fields\n   - Verify focus moves correctly between fields\n   - Test with different keyboard types (number pad, email, etc.)\n   - **Validate**: All fields are accessible via keyboard navigation\n\n3. **Configuration Testing**:\n   - Open Settings in demo app  \n   - Toggle \"Enable IQKeyboardManager\" - verify keyboard behavior changes\n   - Test different toolbar management options\n   - Verify appearance customization works\n   - **Validate**: Settings changes take effect immediately\n\n4. **Both Platform Testing**:\n   - Test identical scenarios in both DemoSwift and DemoObjC apps\n   - Ensure Objective-C and Swift versions behave identically\n   - **Validate**: Feature parity between both implementations\n\n5. **Edge Cases**:\n   - Test with collection views and table views containing text fields\n   - Test with modal presentations and popovers\n   - Test device rotation during text input\n   - **Validate**: Keyboard management works in complex UI scenarios\n\n### CI Validation\nThe project uses Travis CI (`.travis.yml`) with these validation steps:\n```bash\nxcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator\nxcodebuild -workspace Demo.xcworkspace -scheme DemoSwift -sdk iphonesimulator\n```\n\n**Always** run these commands locally before committing changes.\n\n## Key Project Structure\n\n### Library Files\n- `IQKeyboardManager/` - Objective-C version (legacy)\n- `IQKeyboardManagerSwift/` - Swift version (current)\n  - `IQKeyboardManager/` - Core keyboard management\n  - `Appearance/` - UI appearance customization\n  - `Resign/` - Keyboard dismissal handling\n  - `IQKeyboardToolbarManager/` - Toolbar management\n\n### Demo Applications  \n- `Demo/Swift_Demo/` - Swift demonstration app (45 Swift files)\n- `Demo/Objective_C_Demo/` - Objective-C demonstration app (28 Objective-C files)\n- `DemoObjCUITests/` - UI test suite\n\n### Dependencies (Swift Package Manager)\nThe Swift version depends on separate modular libraries:\n- IQKeyboardNotification (1.0.5+)\n- IQTextInputViewNotification (1.0.8+) \n- IQKeyboardToolbarManager (1.1.3+)\n- IQKeyboardReturnManager (1.0.5+)\n- IQTextView (1.0.5+)\n\n## Platform-Specific Instructions\n\n### macOS Development\n- Use Xcode 15+ for demo projects\n- Open `Demo.xcworkspace` (NOT `Demo.xcodeproj`)\n- Build times: 10-15 minutes for clean builds\n- UI test runs: 15-20 minutes\n\n### Linux Development (Limited)\n- Can validate Swift Package Manager dependencies only\n- Cannot build iOS targets or run simulators\n- Use for dependency analysis and non-iOS-specific code review only\n\n## Validated Commands and Timing\n\n### Commands That Work on Any Platform\n```bash\n# Fast dependency resolution (~2 seconds)\nswift package resolve\n\n# Show dependency tree (~1 second)\nswift package show-dependencies\n\n# Basic file exploration and structure analysis\nfind . -name \"*.swift\" | wc -l  # Count Swift files\nfind . -name \"*.m\" | wc -l      # Count Objective-C files\n```\n\n### Commands That Work Only on macOS\n```bash\n# CocoaPods installation (5-10 minutes)\npod install --repo-update\n\n# Xcode builds (10-15 minutes each)\nxcodebuild -workspace Demo.xcworkspace -scheme DemoSwift -sdk iphonesimulator clean build\nxcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator clean build\n\n# UI Tests (15-20 minutes)\nxcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator test\n```\n\n### Commands That Fail on Linux (Expected)\n```bash\n# Fails with \"no such module 'UIKit'\" error\nswift build\n\n# May fail due to network restrictions\npod install --repo-update\n```\n\n## Common Tasks\n\n### Repository Structure Overview\n```\nIQKeyboardManager/\n├── README.md (236 lines) - Main documentation\n├── CONTRIBUTING.md (52 lines) - Contribution guidelines  \n├── Package.swift - Swift Package Manager configuration\n├── Podfile - CocoaPods configuration for demo apps\n├── Demo.xcworkspace - Xcode workspace (use this, not .xcodeproj)\n├── IQKeyboardManager/ - Objective-C version (legacy)\n├── IQKeyboardManagerSwift/ - Swift version (current)\n│   ├── IQKeyboardManager/ - Core keyboard management (~40KB main file)\n│   │   ├── Configuration/ - Runtime configuration classes\n│   │   ├── Debug/ - Debug utilities\n│   │   ├── Deprecated/ - Backward compatibility  \n│   │   ├── IQKeyboardManagerExtension/ - UIKit extensions\n│   │   └── UIKitExtensions/ - Additional UIKit helpers\n│   ├── Appearance/ - UI appearance customization\n│   ├── Resign/ - Keyboard dismissal handling\n│   └── IQKeyboardToolbarManager/ - Toolbar management\n├── Demo/\n│   ├── Swift_Demo/ - Swift demonstration app (45 Swift files)\n│   │   ├── AppDelegate.swift - Shows basic integration\n│   │   └── ViewController/ - Various usage examples\n│   └── Objective_C_Demo/ - Objective-C demonstration app (28 .m files)\n├── DemoObjCUITests/ - UI test suite\n└── Documentation/ - Migration guides for major versions\n```\n\n### Key Files to Check After Changes\n- `IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift` - Main library class\n- `Demo/Swift_Demo/AppDelegate.swift` - Basic integration example\n- `Demo/Objective_C_Demo/AppDelegate.m` - Objective-C integration example  \n- Any files in `IQKeyboardManagerSwift/IQKeyboardManagerExtension/` when modifying UIKit behavior\n\n### Basic Usage Integration\n**Swift**:\n```swift\nimport IQKeyboardManagerSwift\n\n// In AppDelegate.swift\nIQKeyboardManager.shared.isEnabled = true\nIQKeyboardManager.shared.enableAutoToolbar = true\n```\n\n**Objective-C**:\n```objc\n#import <IQKeyboardManager/IQKeyboardManager.h>\n\n// In AppDelegate.m\n[[IQKeyboardManager sharedManager] setEnable:YES];\n```\n\n### Installation Methods\n1. **CocoaPods**: `pod 'IQKeyboardManagerSwift'` or `pod 'IQKeyboardManager'`\n2. **Swift Package Manager**: `https://github.com/hackiftekhar/IQKeyboardManager.git`\n3. **Carthage**: `github \"hackiftekhar/IQKeyboardManager\"`\n\n### Documentation Locations\n- `Documentation/` - Migration guides for major versions\n- `README.md` - Installation and basic usage\n- `CONTRIBUTING.md` - Development guidelines\n- Demo apps serve as comprehensive usage examples\n\n## Troubleshooting\n\n### Common Issues and Solutions\n\n**\"No such module 'UIKit'\" error:**\n- Expected on Linux - this is an iOS-only library\n- Build and test only on macOS with Xcode\n\n**CocoaPods installation fails:**\n- Check internet connectivity and firewall restrictions\n- Try `pod install --verbose` for detailed error messages  \n- In sandboxed environments, network access may be limited\n\n**Xcode build fails:**\n- Ensure you're opening `Demo.xcworkspace`, not `Demo.xcodeproj`\n- Clean build folder: `cmd+shift+k` in Xcode\n- Reset simulators if needed\n\n**UI tests fail:**\n- Ensure iOS Simulator is available and running\n- Check that test devices match requirements (iOS 13.0+)\n- Verify simulator has sufficient disk space\n\n## CRITICAL: Timeout and Cancellation Guidelines\n\n### NEVER CANCEL These Commands\nSet appropriate timeouts and wait for completion:\n\n**Swift Package Manager (works on any platform):**\n- `swift package resolve` - Takes ~2 seconds, set 60 second timeout\n- `swift package show-dependencies` - Takes ~1 second, set 30 second timeout\n\n**CocoaPods (macOS only):**  \n- `pod install --repo-update` - Takes 5-10 minutes, set 15+ minute timeout\n- NEVER CANCEL during \"Installing\" or \"Generating Pods project\" phases\n\n**Xcode Builds (macOS only):**\n- Clean builds: 10-15 minutes, set 30+ minute timeout\n- Incremental builds: 2-5 minutes, set 15+ minute timeout\n- UI test runs: 15-20 minutes, set 45+ minute timeout\n\n**Expected Command Failures:**\n- `swift build` on Linux - WILL FAIL with UIKit error (this is correct)\n- `pod install` in restricted networks - MAY FAIL due to network access\n\n### Build Command Examples with Timeouts\n```bash\n# Swift Package Manager (any platform)\ntimeout 60 swift package resolve\n\n# CocoaPods (macOS only)  \ntimeout 900 pod install --repo-update  # 15 minutes\n\n# Xcode builds (macOS only)\ntimeout 1800 xcodebuild -workspace Demo.xcworkspace -scheme DemoSwift -sdk iphonesimulator clean build  # 30 minutes\ntimeout 2700 xcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator test  # 45 minutes\n```"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "# Description\n\nPlease include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.\n\nFixes # (issue)\n\n## Type of change\n\nPlease delete options that are not relevant.\n\n- [ ] Bug fix (non-breaking change which fixes an issue)\n- [ ] New feature (non-breaking change which adds functionality)\n- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)\n- [ ] This change requires a documentation update\n"
  },
  {
    "path": ".gitignore",
    "content": "# Xcode\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata\n*.xccheckout\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n*.xcuserstate\n\n#CocoaPods\nPods/\n\n# Carthage\nCarthage/Checkouts\nCarthage/Build/\n\n# MacOS X\n.DS_Store\n*.DS_Store\n**/.DS_Store\n\n#Swift Package Manager\n.build\n/.previous-build\n*~\n\\#*\n.\\#*\n*.xcscmblueprint\n/default.profraw\nUtilities/Docker/*.tar.gz\n.swiftpm\nPackages/\nPackage.pins\nPackage.resolved\n"
  },
  {
    "path": ".travis.yml",
    "content": "matrix:\n  include:\n    - language: objective-c\n      branches:\n          only:\n              - master\n      os: osx\n      osx_image: xcode15\n      xcode_workspace: Demo.xcworkspace\n      xcode_project: Demo.xcodeproj\n      xcode_scheme: DemoObjC\n      before_install:\n          - sudo gem install activesupport -v 4.2.6\n          - rvm install 2.3.1\n          - rvm use 2.3.1\n          - sudo gem install cocoapods\n      script:\n        - xcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator\n\n    - language: swift\n      branches:\n          only:\n              - master\n      os: osx\n      osx_image: xcode15\n      xcode_workspace: Demo.xcworkspace\n      xcode_project: Demo.xcodeproj\n      xcode_scheme: DemoSwift\n      before_install:\n          - sudo gem install activesupport -v 4.2.6\n          - rvm install 2.3.1\n          - rvm use 2.3.1\n          - sudo gem install cocoapods\n      script:\n        - xcodebuild -workspace Demo.xcworkspace -scheme DemoSwift -sdk iphonesimulator\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Code of Conduct\n\n## 1. Purpose\n\nA primary goal of IQKeyboardManager is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof).\n\nThis code of conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior.\n\nWe invite all those who participate in IQKeyboardManager to help us create safe and positive experiences for everyone.\n\n## 2. Open Source Citizenship\n\nA supplemental goal of this Code of Conduct is to increase open source citizenship by encouraging participants to recognize and strengthen the relationships between our actions and their effects on our community.\n\nCommunities mirror the societies in which they exist and positive action is essential to counteract the many forms of inequality and abuses of power that exist in society.\n\nIf you see someone who is making an extra effort to ensure our community is welcoming, friendly, and encourages all participants to contribute to the fullest extent, we want to know.\n\n## 3. Expected Behavior\n\nThe following behaviors are expected and requested of all community members:\n\n*   Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community.\n*   Exercise consideration and respect in your speech and actions.\n*   Attempt collaboration before conflict.\n*   Refrain from demeaning, discriminatory, or harassing behavior and speech.\n*   Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential.\n*   Remember that community event venues may be shared with members of the public; please be respectful to all patrons of these locations.\n\n## 4. Unacceptable Behavior\n\nThe following behaviors are considered harassment and are unacceptable within our community:\n\n*   Violence, threats of violence or violent language directed against another person.\n*   Sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory jokes and language.\n*   Posting or displaying sexually explicit or violent material.\n*   Posting or threatening to post other people’s personally identifying information (\"doxing\").\n*   Personal insults, particularly those related to gender, sexual orientation, race, religion, or disability.\n*   Inappropriate photography or recording.\n*   Inappropriate physical contact. You should have someone’s consent before touching them.\n*   Unwelcome sexual attention. This includes, sexualized comments or jokes; inappropriate touching, groping, and unwelcomed sexual advances.\n*   Deliberate intimidation, stalking or following (online or in person).\n*   Advocating for, or encouraging, any of the above behavior.\n*   Sustained disruption of community events, including talks and presentations.\n\n## 5. Consequences of Unacceptable Behavior\n\nUnacceptable behavior from any community member, including sponsors and those with decision-making authority, will not be tolerated.\n\nAnyone asked to stop unacceptable behavior is expected to comply immediately.\n\nIf a community member engages in unacceptable behavior, the community organizers may take any action they deem appropriate, up to and including a temporary ban or permanent expulsion from the community without warning (and without refund in the case of a paid event).\n\n## 6. Reporting Guidelines\n\nIf you are subject to or witness unacceptable behavior, or have any other concerns, please notify a community organizer as soon as possible. \nhack.iftekhar@gmail.com\n\n\n\nAdditionally, community organizers are available to help community members engage with local law enforcement or to otherwise help those experiencing unacceptable behavior feel safe. In the context of in-person events, organizers will also provide escorts as desired by the person experiencing distress.\n\n## 7. Addressing Grievances\n\nIf you feel you have been falsely or unfairly accused of violating this Code of Conduct, you should notify Hackiftekhar with a concise description of your grievance. Your grievance will be handled in accordance with our existing governing policies.\n\n\n\n## 8. Scope\n\nWe expect all community participants (contributors, paid or otherwise; sponsors; and other guests) to abide by this Code of Conduct in all community venues–online and in-person–as well as in all one-on-one communications pertaining to community business.\n\nThis code of conduct and its related procedures also applies to unacceptable behavior occurring outside the scope of community activities when such behavior has the potential to adversely affect the safety and well-being of community members.\n\n## 9. Contact info\n\nhack.iftekhar@gmail.com\n\n## 10. License and attribution\n\nThis Code of Conduct is distributed under a [Creative Commons Attribution-ShareAlike license](http://creativecommons.org/licenses/by-sa/3.0/).\n\nPortions of text derived from the [Django Code of Conduct](https://www.djangoproject.com/conduct/) and the [Geek Feminism Anti-Harassment Policy](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy).\n\nRetrieved on November 22, 2016 from [http://citizencodeofconduct.org/](http://citizencodeofconduct.org/)\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to IQKeyboardManager\nWe love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:\n\n- Reporting a bug\n- Discussing the current state of the code\n- Submitting a fix\n- Proposing new features\n\n## We Develop with Github\nWe use github to host code, to track issues and feature requests, as well as accept pull requests.\n\n## We Use [Github Flow](https://guides.github.com/introduction/flow/index.html), So All Code Changes Happen Through Pull Requests\nPull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests:\n\n1. Fork the repo and create your branch from `master`.\n2. If you've changed APIs, update the documentation.\n3. Make sure your code lints.\n4. Make same changes for Objective-C and Swift version of library.\n4. Issue that pull request!\n\n## Any contributions you make will be under the MIT Software License\nIn short, when you submit code changes, your submissions are understood to be under the same [MIT License](http://choosealicense.com/licenses/mit/) that covers the project. Feel free to contact the maintainers if that's a concern.\n\n## Report bugs using Github's [issues](https://github.com/briandk/transcriptase-atom/issues)\nWe use GitHub issues to track public bugs. Report a bug by [opening a new issue](); it's that easy!\n\n## Write bug reports with detail, background, and sample code\n[This is an example](http://stackoverflow.com/q/12488905/180626) of a bug report. Here's [another example from Craig Hockenberry](http://www.openradar.me/11905408).\n\n**Great Bug Reports** tend to have:\n\n- A quick summary and/or background\n- Steps to reproduce\n  - Be specific!\n  - Give sample code if you can. [Example stackoverflow question](http://stackoverflow.com/q/12488905/180626) includes sample code that *anyone* with a base R setup can run to reproduce.\n- What you expected would happen\n- What actually happens\n- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)\n\nPeople *love* thorough bug reports. I'm not even kidding.\n\n## Use a Consistent Coding Style\nI'm again borrowing these from [Facebook's Guidelines](https://github.com/facebook/draft-js/blob/a9316a723f9e918afde44dea68b5f9f39b7d9b00/CONTRIBUTING.md)\n\n* 2 spaces for indentation rather than tabs\n* You can try running `npm run lint` for style unification\n\n## License\nBy contributing, you agree that your contributions will be licensed under its MIT License.\n\n## References\nThis document was adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/a9316a723f9e918afde44dea68b5f9f39b7d9b00/CONTRIBUTING.md)\n"
  },
  {
    "path": "Cartfile",
    "content": "github \"hackiftekhar/IQKeyboardNotification\"\ngithub \"hackiftekhar/IQTextInputViewNotification\"\ngithub \"hackiftekhar/IQKeyboardToolbarManager\"\ngithub \"hackiftekhar/IQKeyboardReturnManager\"\ngithub \"hackiftekhar/IQTextView\""
  },
  {
    "path": "Cartfile.resolved",
    "content": "github \"hackiftekhar/IQKeyboardCore\" \"1.0.7\"\ngithub \"hackiftekhar/IQKeyboardNotification\" \"1.0.5\"\ngithub \"hackiftekhar/IQKeyboardReturnManager\" \"1.0.5\"\ngithub \"hackiftekhar/IQKeyboardToolbar\" \"1.1.1\"\ngithub \"hackiftekhar/IQKeyboardToolbarManager\" \"1.1.1\"\ngithub \"hackiftekhar/IQTextInputViewNotification\" \"1.0.8\"\ngithub \"hackiftekhar/IQTextView\" \"1.0.5\"\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 1.0 TO 2.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 1.0 TO 2.0\n==========================\n\n### 1. Class Name changed\n\nOld class name\n```objc\n@interface IQKeyBoardManager : NSObject {\n    //...\n}\n```\nNew Class Name\n```objc\n@interface IQKeyboardManager : NSObject {\n    //...\n}\n```\n\n### 2. Function name changes\n\nOld function and property names\n```objc\n+(void)installKeyboardManager;\n+(void)setTextFieldDistanceFromKeyboard:(CGFloat)distance;\n+(void)enableKeyboardManger;\n+(void)disableKeyboardManager;\n```\nNew function and property names\n```objc\n+ (IQKeyboardManager*)sharedManager;\n@property(nonatomic, assign) CGFloat keyboardDistanceFromTextField;\n@property(nonatomic, assign, getter = isEnabled) BOOL enable;\n```\n\n### 3. New features\n\n#### IQKeyboardManager\n```objc\n@property(nonatomic, assign, getter = isEnableAutoToolbar) BOOL enableAutoToolbar;\n@property(nonatomic, assign) IQAutoToolbarManageBehaviour toolbarManageBehaviour;\n- (void)resignFirstResponder;\n```\n\n- Cocoapods support added\n\n#### UIVIew Category\n```objc\n- (void)addCancelDoneOnKeyboardWithTarget:(id)target cancelAction:(SEL)cancelAction doneAction:(SEL)doneAction;\n```\n\n\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 2.0 TO 3.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 2.0 TO 3.0\n==========================\n\n### 1. New features\n\n#### IQKeyboardManager\n```objc\n@property(nonatomic, assign) BOOL shouldResignOnTouchOutside;\n@property(nonatomic, assign) BOOL shouldShowTextFieldPlaceholder;\n@property(nonatomic, assign) BOOL canAdjustTextView;\n```\n\n- Cocoapods support added\n\n#### UIVIew Category\n```objc\n- (void)addDoneOnKeyboardWithTarget:(id)target action:(SEL)action shouldShowPlaceholder:(BOOL)showPlaceholder;\n- (void)addCancelDoneOnKeyboardWithTarget:(id)target cancelAction:(SEL)cancelAction doneAction:(SEL)doneAction shouldShowPlaceholder:(BOOL)showPlaceholder;\n- (void)addPreviousNextDoneOnKeyboardWithTarget:(id)target previousAction:(SEL)previousAction nextAction:(SEL)nextAction doneAction:(SEL)doneAction shouldShowPlaceholder:(BOOL)showPlaceholder;\n```\n\n\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 3.0 TO 4.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 3.0 TO 4.0\n==========================\n\n### 1. New features\n\nNew Class\n```objc\n@interface IQKeyboardReturnKeyHandler : NSObject {\n    //...\n}\n-(nonnull instancetype)initWithViewController:(nullable UIViewController*)controller\n@property(nullable, nonatomic, weak) id<UITextFieldDelegate,UITextViewDelegate> delegate;\n@property(nonatomic, assign) UIReturnKeyType lastTextFieldReturnKeyType;\n-(void)addTextFieldView:(nonnull UIView*)textFieldView;\n-(void)removeTextFieldView:(nonnull UIView*)textFieldView;\n-(void)addResponderFromView:(nonnull UIView*)view;\n-(void)removeResponderFromView:(nonnull UIView*)view;\n@end\n```\n\nNew Class\n```objc\n@interface IQTextView : UITextView\n@property(nullable, nonatomic,copy)   NSString    *placeholder;\n@end\n```\n\n#### IQKeyboardManager\n```objc\n@property(nonatomic, assign) BOOL preventShowingBottomBlankSpace;\n@property(nonatomic, assign) BOOL shouldToolbarUsesTextFieldTintColor;\n@property(nullable, nonatomic, strong) UIColor *toolbarTintColor;\n@property(nullable, nonatomic, strong) UIImage *toolbarDoneBarButtonItemImage;\n@property(nullable, nonatomic, strong) NSString *toolbarDoneBarButtonItemText;\n@property(nonatomic, assign) BOOL shouldShowTextFieldPlaceholder;\n@property(nullable, nonatomic, strong) UIFont *placeholderFont;\n@property(nonatomic, assign) BOOL shouldFixTextViewClip;\n@property(nonatomic, assign) BOOL overrideKeyboardAppearance;\n@property(nonatomic, assign) UIKeyboardAppearance keyboardAppearance;\n@property (nonatomic, readonly) BOOL canGoPrevious;\n@property (nonatomic, readonly) BOOL canGoNext;\n@property(nonatomic, assign) BOOL shouldPlayInputClicks;\n@property(nonatomic, assign) BOOL shouldAdoptDefaultKeyboardAnimation;\n@property(nonatomic, assign) BOOL layoutIfNeededOnUpdate;\n- (BOOL)goPrevious;\n- (BOOL)goNext;\n-(void)disableDistanceHandlingInViewControllerClass:(nonnull Class)disabledClass;\n-(void)removeDisableDistanceHandlingInViewControllerClass:(nonnull Class)disabledClass;\n-( NSSet* _Nonnull )disabledInViewControllerClasses;\n-(void)disableToolbarInViewControllerClass:(nonnull Class)toolbarDisabledClass;\n-(void)removeDisableToolbarInViewControllerClass:(nonnull Class)toolbarDisabledClass;\n-( NSSet* _Nonnull )disabledToolbarInViewControllerClasses;\n-(void)considerToolbarPreviousNextInViewClass:(nonnull Class)toolbarPreviousNextConsideredClass;\n-(void)removeConsiderToolbarPreviousNextInViewClass:(nonnull Class)toolbarPreviousNextConsideredClass;\n-(NSSet* _Nonnull)consideredToolbarPreviousNextViewClasses;\n```\n\n#### UIVIew Category\n```objc\n@property (assign, nonatomic) BOOL shouldHideTitle;\n-(void)setCustomPreviousTarget:(nullable id)target action:(nullable SEL)action;\n-(void)setCustomNextTarget:(nullable id)target action:(nullable SEL)action;\n-(void)setCustomDoneTarget:(nullable id)target action:(nullable SEL)action;\n- (void)addRightButtonOnKeyboardWithImage:(nullable UIImage*)image target:(nullable id)target action:(nullable SEL)action titleText:(nullable NSString*)titleText;\n- (void)addCancelDoneOnKeyboardWithTarget:(nullable id)target cancelAction:(nullable SEL)cancelAction doneAction:(nullable SEL)doneAction titleText:(nullable NSString*)titleText;\n- (void)addLeftRightOnKeyboardWithTarget:(nullable id)target leftButtonTitle:(nullable NSString*)leftButtonTitle rightButtonTitle:(nullable NSString*)rightButtonTitle leftButtonAction:(nullable SEL)leftButtonAction rightButtonAction:(nullable SEL)rightButtonAction titleText:(nullable NSString*)titleText;\n- (void)addPreviousNextDoneOnKeyboardWithTarget:(nullable id)target previousAction:(nullable SEL)previousAction nextAction:(nullable SEL)nextAction doneAction:(nullable SEL)doneAction titleText:(nullable NSString*)titleText;\n- (void)addPreviousNextRightOnKeyboardWithTarget:(nullable id)target rightButtonTitle:(nullable NSString*)rightButtonTitle previousAction:(nullable SEL)previousAction nextAction:(nullable SEL)nextAction rightButtonAction:(nullable SEL)rightButtonAction titleText:(nullable NSString*)titleText;\n```\n\n#### UIVIew Category\n```objc\n@property (nonatomic, readonly) BOOL isAskingCanBecomeFirstResponder;\n@property (nullable, nonatomic, readonly, strong) UIViewController *viewController;\n@property (nullable, nonatomic, readonly, strong) UIViewController *topMostController;\n-(nullable UIView*)superviewOfClassType:(nonnull Class)classType;\n@property (nonatomic, getter=isSearchBarTextField, readonly) BOOL searchBarTextField;\n@property (nonatomic, getter=isAlertViewTextField, readonly) BOOL alertViewTextField;\n-(CGAffineTransform)convertTransformToView:(nullable UIView*)toView;\n```\n\n#### UIScrollView Category\n```objc\n@property(nonatomic, assign) BOOL shouldRestoreScrollViewContentOffset;\n```\n\n#### UIView Category (For UITextField and UITextView)\n```objc\n@property(nonatomic, assign) CGFloat keyboardDistanceFromTextField;\n```\n\n#### UIViewController Category\n```objc\n@property(nullable, nonatomic, strong) IBOutlet NSLayoutConstraint *IQLayoutGuideConstraint;\n```\n\n#### Swift version added\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 4.0 TO 5.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 4.0 TO 5.0\n==========================\n\n### 1. Removed UIView Category features\n```swift\npublic var isAskingCanBecomeFirstResponder: Bool // This is not necessary now\n```\n\n### 1. Removed IQKeyboardManager features\n```swift\npublic var shouldFixTextViewClip = true // These are internally handled, so no more needed\npublic var canAdjustTextView = false // These are internally handled, so no more needed\npublic var shouldAdoptDefaultKeyboardAnimation = true   // This no longer needed\n```\n\n### 2. IQKeyboardManager functions\n\n#### Old IQKeyboardManager functions\n```swift\npublic func disableDistanceHandlingInViewControllerClass(disabledClass : AnyClass)\npublic func removeDisableDistanceHandlingInViewControllerClass(disabledClass : AnyClass)\npublic func disabledInViewControllerClassesString() -> Set<String>\npublic func disableToolbarInViewControllerClass(toolbarDisabledClass : AnyClass)\npublic func removeDisableToolbarInViewControllerClass(toolbarDisabledClass : AnyClass)\npublic func disabledToolbarInViewControllerClassesString() -> Set<String>\npublic func considerToolbarPreviousNextInViewClass(toolbarPreviousNextConsideredClass : AnyClass)\npublic func removeConsiderToolbarPreviousNextInViewClass(toolbarPreviousNextConsideredClass : AnyClass)\npublic func consideredToolbarPreviousNextViewClassesString() -> Set<String>\n```\n#### New IQKeyboardManager functions\n```swift\nopen var disabledDistanceHandlingClasses = [UIViewController.Type]()\nopen var enabledDistanceHandlingClasses = [UIViewController.Type]()\nopen var disabledToolbarClasses = [UIViewController.Type]()\nopen var enabledToolbarClasses = [UIViewController.Type]()\nopen var toolbarPreviousNextAllowedClasses = [UIView.Type]()\nopen var disabledTouchResignedClasses = [UIViewController.Type]()\nopen var enabledTouchResignedClasses = [UIViewController.Type]()\nopen var touchResignedGestureIgnoreClasses = [UIView.Type]()\n```\n\n### 3. UIView Category functions\n\n#### Old UIView Category functions\n```swift\npublic var shouldHideTitle: Bool?\npublic var drawingPlaceholderText: String?\npublic func setCustomPreviousTarget(target: AnyObject?, selector: Selector?)\npublic func setCustomNextTarget(target: AnyObject?, selector: Selector?)\n```\n\n#### New UIView Category functions\n```swift\npublic var shouldHidePlaceholderText: Bool\npublic var keyboardToolbar: IQToolbar\npublic var shouldHideToolbarPlaceholder: Bool\npublic var drawingToolbarPlaceholder: String?\nopen func setTarget(_ target: AnyObject?, action: Selector?) // in IQBarButtonItem\n```\n\n### 4. New features\n\n#### IQKeyboardManager\n```swift\nopen var toolbarBarTintColor : UIColor?\nopen var keyboardShowing: Bool\nopen var movedDistance: CGFloat\nopen var enableDebugging = false\nopen var shouldFixInteractivePopGestureRecognizer = true\nopen var previousNextDisplayMode = IQPreviousNextDisplayMode.Default\nopen func reloadInputViews()\nopen func reloadLayoutIfNeeded()\nopen func registerAllNotifications()\nopen func registerTextFieldViewClass(_ aClass: UIView.Type, didBeginEditingNotificationName : String, didEndEditingNotificationName : String)\nopen func unregisterTextFieldViewClass(_ aClass: UIView.Type, didBeginEditingNotificationName : String, didEndEditingNotificationName : String)\n```\n\n#### UIScrollView Category\n```swift\npublic var shouldIgnoreScrollingAdjustment: Bool\n```\n\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 5.0 TO 6.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 5.0 TO 6.0\n==========================\n\n### 1. IQKeyboardManager functions\n\n#### Old IQKeyboardManager functions\n```swift\nopen class func sharedManager() -> IQKeyboardManager\n@objc public class var shared: IQKeyboardManager\n```\n#### New IQKeyboardManager functions\n```swift\n```\n\n### 2. UIView Category functions\n\n#### Old UIView Category functions\n```swift\npublic func viewController()->UIViewController?\n```\n\n#### New UIView Category functions\n```swift\n@objc public func viewContainingController()->UIViewController?\n```\n\n### 3. New features\n\n#### IQKeyboardManager\n```swift\n@objc public var placeholderColor: UIColor?\n@objc public var placeholderButtonColor: UIColor?\n@objc public var canAdjustAdditionalSafeAreaInsets = false\n```\n\n#### UIView Category functions\n```swift\n@objc public var ignoreSwitchingByNextPrevious: Bool\n@objc public var shouldResignOnTouchOutsideMode: IQEnableMode\n@objc public func parentContainerViewController()->UIViewController?\n```\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 6.0 TO 7.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 6.0 TO 7.0\n==========================\n\n### 1. Removed IQKeyboardManager functions\n```swift\n@objc public var preventShowingBottomBlankSpace = true\n@objc public var shouldFixInteractivePopGestureRecognizer = true\n@objc public var canAdjustAdditionalSafeAreaInsets = false\n@objc func registerTextFieldViewClass(_ aClass: UIView.Type,\n                                      didBeginEditingNotificationName: String,\n                                      didEndEditingNotificationName: String)\n@objc func unregisterTextFieldViewClass(_ aClass: UIView.Type,\n                                        didBeginEditingNotificationName: String,\n                                        didEndEditingNotificationName: String)                                          \n```\n\n### 2. Removed UIViewController functions\n```swift\n@IBOutlet @objc public var IQLayoutGuideConstraint: NSLayoutConstraint?\n```\n\n### 3. IQKeyboardManager functions\n\n#### Old IQKeyboardManager functions\n```swift\n@objc var shouldResignOnTouchOutside: Bool\n@objc var shouldPlayInputClicks: Bool\n\n@objc var toolbarManageBehaviour: IQAutoToolbarManageBehavior\n@objc var shouldToolbarUsesTextFieldTintColor: Bool\n@objc var toolbarTintColor: UIColor?\n@objc var toolbarBarTintColor: UIColor?\n@objc var previousNextDisplayMode: IQPreviousNextDisplayMode\n\n@objc var toolbarPreviousBarButtonItemImage: UIImage?\n@objc var toolbarPreviousBarButtonItemText: String?\n@objc var toolbarPreviousBarButtonItemAccessibilityLabel: String?\n\n@objc var toolbarNextBarButtonItemImage: UIImage?\n@objc var toolbarNextBarButtonItemText: String?\n@objc var toolbarNextBarButtonItemAccessibilityLabel: String?\n\n@objc var toolbarDoneBarButtonItemImage: UIImage?\n@objc var toolbarDoneBarButtonItemText: String?\n@objc var toolbarDoneBarButtonItemAccessibilityLabel: String?\n\n@objc var toolbarTitlBarButtonItemAccessibilityLabel: String?\n@objc var shouldShowToolbarPlaceholder: Bool\n@objc var placeholderFont: UIFont?\n@objc var placeholderColor: UIColor?\n@objc var placeholderButtonColor: UIColor?\n\n@objc var overrideKeyboardAppearance: Bool\n@objc var keyboardAppearance: UIKeyboardAppearance\n\n@objc func registerKeyboardSizeChange(identifier: AnyHashable, sizeHandler: @escaping SizeBlock)\n@objc func unregisterKeyboardSizeChange(identifier: AnyHashable) {}   \n@objc var keyboardShowing: Bool\n@objc var keyboardFrame: CGRect\n```\n#### New IQKeyboardManager functions\n```swift\n@objc public var resignOnTouchOutside: Bool\n@objc public var playInputClicks: Bool\n\n@objc public let toolbarConfiguration: IQToolbarConfiguration = .init()\n/*\ntoolbarConfiguration.manageBehavior\ntoolbarConfiguration.useTextFieldTintColor\ntoolbarConfiguration.tintColor\ntoolbarConfiguration.barTintColor\ntoolbarConfiguration.previousNextDisplayMode\n*/\n\n@objc public var previousBarButtonConfiguration: IQBarButtonItemConfiguration?\n/*\ntoolbarConfiguration.previousBarButtonConfiguration.image\ntoolbarConfiguration.previousBarButtonConfiguration.title\ntoolbarConfiguration.previousBarButtonConfiguration.accessibilityLabel    \n*/\n\n@objc public var nextBarButtonConfiguration: IQBarButtonItemConfiguration?\n/*\ntoolbarConfiguration.nextBarButtonConfiguration.image\ntoolbarConfiguration.nextBarButtonConfiguration.title\ntoolbarConfiguration.nextBarButtonConfiguration.accessibilityLabel    \n*/\n\n@objc public var doneBarButtonConfiguration: IQBarButtonItemConfiguration?\n/*\ntoolbarConfiguration.doneBarButtonConfiguration.image\ntoolbarConfiguration.doneBarButtonConfiguration.title\ntoolbarConfiguration.doneBarButtonConfiguration.accessibilityLabel    \n*/\n\n@objc public let placeholderConfiguration: IQToolbarPlaceholderConfiguration\n/*\ntoolbarConfiguration.placeholderConfiguration.accessibilityLabel\ntoolbarConfiguration.placeholderConfiguration.showPlaceholder\ntoolbarConfiguration.placeholderConfiguration.font\ntoolbarConfiguration.placeholderConfiguration.color\ntoolbarConfiguration.placeholderConfiguration.buttonColor\n*/\n\n@objc public let keyboardConfiguration: IQKeyboardConfiguration\n/*\nkeyboardConfiguration.overrideAppearance\nkeyboardConfiguration.appearance\n*/\n\nclass IQKeyboardListener {\n    public var keyboardShowing: Bool\n    public var frame: CGRect\n    public init()\n    public func registerSizeChange(identifier: AnyHashable, changeHandler: @escaping SizeCompletion)\n    public func unregisterSizeChange(identifier: AnyHashable)\n}\n}\n```\n\n### 1. UIScrollView extension functions\n\n#### Old functions\n```swift\nvar shouldIgnoreScrollingAdjustment: Bool\nvar shouldIgnoreContentInsetAdjustment: Bool\nvar shouldRestoreScrollViewContentOffset: Bool\n```\n#### New functions\n```swift\nvar iq: IQKeyboardManagerWrapper<UIScrollView>\n/*\niq.ignoreScrollingAdjustment\niq.ignoreContentInsetAdjustment\niq.restoreContentOffset\n*/\n```\n\n### 1. UIView extension functions\n\n#### Old functions\n```swift\nvar keyboardDistanceFromTextField: CGFloat\nvar ignoreSwitchingByNextPrevious: Bool\nvar enableMode: IQEnableMode\nvar shouldResignOnTouchOutsideMode: IQEnableMode\n```\n#### New functions\n```swift\nvar iq: IQKeyboardManagerWrapper<UIView>\n/*\niq.distanceFromKeyboard\niq.ignoreSwitchingByNextPrevious\niq.enableMode\niq.resignOnTouchOutsideMode\n*/\n```\n\n\n### 2. UIView extension functions\n\n#### Old UIView extension functions\n```swift\nfunc viewContainingController() -> UIViewController?\nfunc topMostController() -> UIViewController?\nfunc parentContainerViewController() -> UIViewController?\nfunc superviewOfClassType(_ classType: UIView.Type, belowView: UIView? = nil) -> UIView?\n```\n\n#### New UIView extension functions\n```swift\nvar iq: IQKeyboardManagerWrapper<UIView>\n/*\niq.viewContainingController()\niq.topMostController()\niq.parentContainerViewController()\niq.superviewOf(type:belowView:)\n*/\n```\n\n### 2. UIView extension functions\n\n#### Old UIView extension functions\n```swift\nvar keyboardToolbar: IQToolbar\nvar shouldHideToolbarPlaceholder: Bool\nvar toolbarPlaceholder: String?\nvar drawingToolbarPlaceholder: String?\nfunc addKeyboardToolbarWithTarget(target: AnyObject?,\n                                  titleText: String?,\n                                  titleAccessibilityLabel: String? = nil,\n                                  rightBarButtonConfiguration: IQBarButtonItemConfiguration?,\n                                  previousBarButtonConfiguration: IQBarButtonItemConfiguration? = nil,\n                                  nextBarButtonConfiguration: IQBarButtonItemConfiguration? = nil)\n```\n\n#### New UIView extension functions\n```swift\nvar iq: IQKeyboardManagerWrapper<UIView>\n/*\niq.toolbar\niq.hidePlaceholder\niq.placeholder\niq.drawingPlaceholder\niq.addToolbar(target:previousConfiguration:nextConfiguration:rightConfiguration:title:titleAccessibilityLabel:)\n*/\n```\n\n\n### 2. UIViewController extension functions\n\n#### Old UIViewController extension functions\n```swift\nopen func parentIQContainerViewController() -> UIViewController?\n```\n\n#### New UIViewController extension functions\n```swift\nopen func iq_parentContainerViewController() -> UIViewController?\n```\n\n### 3. New features\n\n#### IQKeyboardManager\n```swift\n```\n\n#### UIView Category functions\n```swift\n@property(nonatomic, assign) BOOL shouldIgnoreContentInsetAdjustment;\n@property(nonatomic, assign) IQEnableMode enableMode;\n```\n#### UIViewController functions\n```swift\n-(nullable UIViewController*)parentIQContainerViewController;\n```\n"
  },
  {
    "path": "Documentation/MIGRATION GUIDE 7.0 TO 8.0.md",
    "content": "IQKeyboardManager MIGRATION GUIDE 7.0 TO 8.0\n==========================\n\n### Keyboard Toolbar\n`IQKeyboardManager.shared.enableAutoToolbar` is now default to `false`. Actually it's now part of the `IQKeyboardToolbarManager` library. Due to this change, you may not see the toolbar over keyboard.\n- **Solution 1:** Either Add `IQKeyboardManager.shared.enableAutoToolbar = true` in your app delegate\n- **Solution 2:** Or Use `IQKeyboardToolbarManager` directly to enable keyboard toolbar using `IQKeyboardToolbarManager.shared.isEnabled = true`\n\n### 1. Features removed (Moved to their own independent libraries)\n- All features related to toolbar handling has been moved to `IQKeyboardToolbarManager` [Link](https://github.com/hackiftekhar/IQKeyboardToolbarManager)\n- `IQKeyboardListener` [Link](https://github.com/hackiftekhar/IQKeyboardNotification) (Renamed to `IQKeyboardNotification`)\n- `IQTextFieldViewListener` [Link](https://github.com/hackiftekhar/IQTextInputViewNotification) (Renamed to `IQTextInputViewNotification`)\n- `IQReturnKeyHandler` [Link](https://github.com/hackiftekhar/IQKeyboardReturnManager) (Renamed to `IQKeyboardReturnManager`)\n- `IQKeyboardToolbar` [Link](https://github.com/hackiftekhar/IQKeyboardToolbar)\n- `IQTextView` [Link](https://github.com/hackiftekhar/IQTextView)\n\n### 2. Features moved to IQKeyboardToolbarManager\n- `IQPreviousNextView` class (Renamed to `IQDeepResponderContainerView`)\n    If you are using `IQPreviousNextView` in your storyboard then you have to change the class to `IQDeepResponderContainerView` and also have to change the module to `IQKeyboardToolbarManager`.\n- `IQToolbarConfiguration` class (Renamed to `IQKeyboardToolbarConfiguration`)\n- `IQToolbarPlaceholderConfiguration` class (Renamed to `IQKeyboardToolbarPlaceholderConfiguration`)\n- `public enum IQAutoToolbarManageBehavior: Int`\n- `public enum IQPreviousNextDisplayMode: Int`\n- `IQBarButtonItemConfiguration` class\n\n```swift\n// These were part of IQKeyboardManager\nvar enableAutoToolbar: Bool (Renamed to `isEnabled`)\nvar toolbarConfiguration: IQToolbarConfiguration\nvar playInputClicks: Bool\nvar disabledToolbarClasses: [UIViewController.Type]\nvar enabledToolbarClasses: [UIViewController.Type]\nvar deepResponderAllowedContainerClasses: [UIView.Type]\nvar canGoPrevious: Bool\nvar canGoNext: Bool\nfunc goPrevious() -> Bool\nfunc goNext() -> Bool\nfunc reloadInputViews()\n```\n```swift\n// UITextField/UITextView extensions, This can be used like textField.iq.ignoreSwitchingByNextPrevious = true\nvar ignoreSwitchingByNextPrevious: Bool\n```\n\n### 3. Features moved to IQKeyboardToolbar\n- `IQToolbar` class (Renamed to `IQKeyboardToolbar`)\n- `IQToolbarConfiguration` class (Renamed to `IQKeyboardToolbarConfiguration`)\n- `IQToolbarPlaceholderConfiguration` class (Renamed to `IQKeyboardToolbarPlaceholderConfiguration`)\n- `IQBarButtonItemConfiguration` class\n- `IQTitleBarButtonItem` class\n- `IQBarButtonItem` class\n- `IQInvocation` class\n- `IQPlaceholderable` protocol\n\n```swift\n// UITextField/UITextView extensions, This can be used like textField.iq.hidePlaceholder = true\nvar toolbar: IQToolbar\nvar hidePlaceholder: Bool\nvar placeholder: String?\nvar drawingPlaceholder: String?\nfunc addToolbar(target: AnyObject?,\n                    previousConfiguration: IQBarButtonItemConfiguration? = nil,\n                    nextConfiguration: IQBarButtonItemConfiguration? = nil,\n                    rightConfiguration: IQBarButtonItemConfiguration? = nil,\n                    title: String?,\n                    titleAccessibilityLabel: String? = nil)\nfunc addDone(...)\nfunc addRightButton(...)\nfunc addRightLeft(...)\nfunc addPreviousNextRight(...)\nfunc addPreviousNextDone(...)\n```\n\n\n### 1. Features moved to subspecs (Cocoapods)\n- `IQKeyboardManagerSwift/Appearance`\n```swift\n// IQKeyboardManager\npublic var overrideAppearance: Bool\npublic var appearance: UIKeyboardAppearance\n```\n- `IQKeyboardManagerSwift/IQKeyboardReturnManager`\n```swift\n// https://github.com/hackiftekhar/IQKeyboardReturnManager\n- This subspec add `IQKeyboardReturnManager` as dependency for easier migration.\n```\n- `IQKeyboardManagerSwift/IQKeyboardToolbarManager`\n```swift\n// https://github.com/hackiftekhar/IQKeyboardToolbarManager\n- This subspec add `IQKeyboardToolbarManager` as dependency for easier migration.\n```\n- `IQKeyboardManagerSwift/IQTextView`\n```swift\n// https://github.com/hackiftekhar/IQTextView\n- This subspec add `IQTextView` as dependency for easier migration.\n```\n- `IQKeyboardManagerSwift/Resign`\n```swift\n// IQKeyboardManager\nvar resignOnTouchOutside: Bool\nvar resignGesture: UITapGestureRecognizer\nvar disabledTouchResignedClasses: [UIViewController.Type]\nvar enabledTouchResignedClasses: [UIViewController.Type]\nvar touchResignedGestureIgnoreClasses: [UIView.Type]\nfunc resignFirstResponder() -> Bool\n```\n```swift\n// UITextField/UITextView extensions, This can be used like textField.iq.resignOnTouchOutsideMode = .default\nvar resignOnTouchOutsideMode: IQEnableMode\n```\n"
  },
  {
    "path": "Example/.swiftlint.yml",
    "content": "\nexcluded:\n  - Pods\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardToolbarManager\n\n@main\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n    func application(_ application: UIApplication,\n                     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {\n        // Override point for customization after application launch.\n\n        window?.backgroundColor = UIColor.white\n        IQKeyboardManager.shared.isEnabled = true\n        IQKeyboardManager.shared.isDebuggingEnabled = true\n        IQKeyboardToolbarManager.shared.isEnabled = true\n        IQKeyboardToolbarManager.shared.isDebuggingEnabled = true\n        return true\n    }\n\n    func applicationWillResignActive(_ application: UIApplication) {\n    }\n\n    func applicationDidEnterBackground(_ application: UIApplication) {\n    }\n\n    func applicationWillEnterForeground(_ application: UIApplication) {\n    }\n\n    func applicationDidBecomeActive(_ application: UIApplication) {\n    }\n\n    func applicationWillTerminate(_ application: UIApplication) {\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/ColorTableViewCell.swift",
    "content": "//\n//  ColorTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass ColorTableViewCell: UITableViewCell {\n\n    @IBOutlet var labelTitle: UILabel!\n    @IBOutlet var labelSubtitle: UILabel!\n    @IBOutlet var selectedColorView: UIView!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/ImageSwitchTableViewCell.swift",
    "content": "//\n//  ImageSwitchTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass ImageSwitchTableViewCell: SwitchTableViewCell {\n\n    @IBOutlet var arrowImageView: UIImageView!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/NavigationTableViewCell.swift",
    "content": "//\n//  NavigationTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass NavigationTableViewCell: UITableViewCell {\n\n    @IBOutlet var labelTitle: UILabel!\n    @IBOutlet var labelSubtitle: UILabel!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/OptionTableViewCell.swift",
    "content": "//\n//  OptionTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass OptionTableViewCell: UITableViewCell {\n\n    @IBOutlet var labelOption: UILabel!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/StepperTableViewCell.swift",
    "content": "//\n//  StepperTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass StepperTableViewCell: UITableViewCell {\n\n    @IBOutlet var labelTitle: UILabel!\n    @IBOutlet var labelSubtitle: UILabel!\n    @IBOutlet var stepper: UIStepper!\n    @IBOutlet var labelStepperValue: UILabel!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/SwitchTableViewCell.swift",
    "content": "//\n//  SwitchTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass SwitchTableViewCell: UITableViewCell {\n\n    @IBOutlet var labelTitle: UILabel!\n    @IBOutlet var labelSubtitle: UILabel!\n    @IBOutlet var switchEnable: UISwitch!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Cell/TextFieldTableViewCell.swift",
    "content": "//\n//  TextFieldTableViewCell.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TextFieldTableViewCell: UITableViewCell {\n\n    @IBOutlet var labelTitle: UILabel!\n    @IBOutlet var labelSubtitle: UILabel!\n    @IBOutlet var textField: UITextField!\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Extension/UITableView+Extension.swift",
    "content": "//\n//  UITableView+Extension.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nextension UITableView {\n    func dequeueCell<T: UITableViewCell>(_: T.Type, for indexPath: IndexPath) -> T {\n        let identifier: String = String(describing: T.self)\n        guard let cell = dequeueReusableCell(withIdentifier: identifier, for: indexPath) as? T else {\n            fatalError(\"Could not dequeue \\(T.self)\")\n        }\n\n        return cell\n    }\n\n    func dequeueHeaderFooter<T: UITableViewHeaderFooterView>(_: T.Type) -> T {\n        let identifier: String = String(describing: T.self)\n        if let view = dequeueReusableHeaderFooterView(withIdentifier: identifier) as? T {\n            return view\n        } else {\n            return T(reuseIdentifier: identifier)\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Base.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/IQKeyboardManagerSwiftExample.entitlements",
    "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>com.apple.security.app-sandbox</key>\n\t<true/>\n\t<key>com.apple.security.network.client</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/IQKeyboardManger-Swift-Bridging-Header.h",
    "content": "//\n//  IQKeyboardManger-Swift-Bridging-Header.h\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#ifndef IQKeyboardManager_IQKeyboardManger_Swift_Bridging_Header_h_h\n#define IQKeyboardManager_IQKeyboardManger_Swift_Bridging_Header_h_h\n\n#endif\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"logo_blue.jpeg\",\n      \"idiom\" : \"universal\",\n      \"platform\" : \"ios\",\n      \"size\" : \"1024x1024\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/171717.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0x17\",\n          \"green\" : \"0x17\",\n          \"red\" : \"0x17\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/3C3C43.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0x43\",\n          \"green\" : \"0x3C\",\n          \"red\" : \"0x3C\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/404040.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0x40\",\n          \"green\" : \"0x40\",\n          \"red\" : \"0x40\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/535353.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0x53\",\n          \"green\" : \"0x53\",\n          \"red\" : \"0x53\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/757677.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0x77\",\n          \"green\" : \"0x76\",\n          \"red\" : \"0x75\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/A1A1A1.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0xA1\",\n          \"green\" : \"0xA1\",\n          \"red\" : \"0xA1\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/ABB0BA.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0xBA\",\n          \"green\" : \"0xB0\",\n          \"red\" : \"0xAB\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/D1D2D9.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0xD9\",\n          \"green\" : \"0xD2\",\n          \"red\" : \"0xD1\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/DEDEDE.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0xDE\",\n          \"green\" : \"0xDE\",\n          \"red\" : \"0xDE\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/EBEDF0.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0xF0\",\n          \"green\" : \"0xED\",\n          \"red\" : \"0xEB\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Color/EBF0F7.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"color\" : {\n        \"color-space\" : \"srgb\",\n        \"components\" : {\n          \"alpha\" : \"1.000\",\n          \"blue\" : \"0xF7\",\n          \"green\" : \"0xF0\",\n          \"red\" : \"0xEB\"\n        }\n      },\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/IQButtonBarArrowDown.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"IQButtonBarArrowDown@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"IQButtonBarArrowDown@3x.png\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/logo_blue.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"logo_blue.jpeg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/logo_brown.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"logo_brown.jpeg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/logo_gray.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"logo_gray.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/original1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"original1.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/Images.xcassets/settings.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"settings@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/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>CFBundleDisplayName</key>\n\t<string>IQKB Swift</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>FMWK</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>$(MARKETING_VERSION)</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(CURRENT_PROJECT_VERSION)</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>Launch</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIStatusBarHidden</key>\n\t<false/>\n\t<key>UIStatusBarStyle</key>\n\t<string></string>\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\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t</array>\n\t<key>UIUserInterfaceStyle</key>\n\t<string>Light</string>\n\t<key>UIViewControllerBasedStatusBarAppearance</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Resources/ar.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/FullScreenControllers.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"24127\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\">\n    <device id=\"retina4_7\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"24063\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--TextViewController-->\n        <scene sceneID=\"MpH-Uf-nZC\">\n            <objects>\n                <viewController storyboardIdentifier=\"TextViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"P7P-UN-ggT\" customClass=\"TextViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"BLa-72-1s6\">\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                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" textAlignment=\"natural\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"50p-P4-9dL\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"20\" width=\"375\" height=\"647\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"lPX-qe-xgb\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"50p-P4-9dL\" firstAttribute=\"leading\" secondItem=\"lPX-qe-xgb\" secondAttribute=\"leading\" id=\"6LD-6S-lZE\"/>\n                            <constraint firstItem=\"lPX-qe-xgb\" firstAttribute=\"bottom\" secondItem=\"50p-P4-9dL\" secondAttribute=\"bottom\" id=\"Lqc-NC-Mvm\"/>\n                            <constraint firstItem=\"50p-P4-9dL\" firstAttribute=\"top\" secondItem=\"lPX-qe-xgb\" secondAttribute=\"top\" id=\"fZP-US-l4g\"/>\n                            <constraint firstItem=\"lPX-qe-xgb\" firstAttribute=\"trailing\" secondItem=\"50p-P4-9dL\" secondAttribute=\"trailing\" id=\"xLZ-cs-lb0\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"TextViewController\" id=\"WU4-It-O6g\"/>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"XAg-W4-HTJ\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"3529\" y=\"218\"/>\n        </scene>\n        <!--UISearchController-->\n        <scene sceneID=\"YrW-53-U1r\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"SearchViewController\" id=\"MeU-Ah-guT\" customClass=\"SearchViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"28\" sectionFooterHeight=\"28\" id=\"zLu-Df-8RT\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"MeU-Ah-guT\" id=\"YWF-A3-nXh\"/>\n                            <outlet property=\"delegate\" destination=\"MeU-Ah-guT\" id=\"vRY-e8-2bB\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"UISearchController\" id=\"4DZ-MZ-qyC\"/>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"W5m-gW-u7K\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"4210\" y=\"216\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <namedColor name=\"EBEDF0\">\n            <color red=\"0.92156862745098034\" green=\"0.92941176470588238\" blue=\"0.94117647058823528\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <systemColor name=\"labelColor\">\n            <color white=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemBackgroundColor\">\n            <color white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/General.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"22505\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\">\n    <device id=\"retina5_9\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"22504\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--TextField Demo-->\n        <scene sceneID=\"kAr-5b-4Sn\">\n            <objects>\n                <viewController storyboardIdentifier=\"TextFieldViewController\" id=\"csO-qF-Ohn\" customClass=\"TextFieldViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"i84-jm-CzI\" customClass=\"IQDeepResponderContainerView\" customModule=\"IQKeyboardToolbarManager\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"07C-Jx-O92\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"50\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Easiest integration\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Rr4-Yx-SRn\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28.666666666666671\" width=\"335\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.0080750879139513537\" green=\"0.47692340353260865\" blue=\"0.083980094677913134\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Rr4-Yx-SRn\" secondAttribute=\"trailing\" constant=\"20\" id=\"bAd-7H-DYl\"/>\n                                    <constraint firstItem=\"Rr4-Yx-SRn\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" constant=\"20\" id=\"ceV-9C-R7f\"/>\n                                    <constraint firstItem=\"Rr4-Yx-SRn\" firstAttribute=\"centerY\" secondItem=\"07C-Jx-O92\" secondAttribute=\"centerY\" id=\"oLM-Sg-xTa\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mYe-Gd-Tgq\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"141\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"90\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Device Orientation support\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Kdq-Kn-JCR\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28.666666666666657\" width=\"335\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.24970456063326163\" green=\"0.47692340353260865\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"alphabet\"/>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"Kdq-Kn-JCR\" firstAttribute=\"centerY\" secondItem=\"mYe-Gd-Tgq\" secondAttribute=\"centerY\" id=\"2CN-F1-3El\"/>\n                                    <constraint firstItem=\"Kdq-Kn-JCR\" firstAttribute=\"leading\" secondItem=\"mYe-Gd-Tgq\" secondAttribute=\"leading\" constant=\"20\" id=\"7iO-kF-IB8\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Kdq-Kn-JCR\" secondAttribute=\"trailing\" constant=\"20\" id=\"Vo2-yk-WEW\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gKE-F4-xNG\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"232\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"This textField observes custom prev/next/done selector\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"s35-Qq-Nsv\">\n                                        <rect key=\"frame\" x=\"20\" y=\"16.666666666666657\" width=\"335\" height=\"12\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                        <color key=\"textColor\" red=\"0.66666666666666663\" green=\"0.66666666666666663\" blue=\"0.66666666666666663\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"102\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"UITextField Category for Keyboard\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"f9i-hv-EJj\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28.666666666666686\" width=\"335\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"0.42763441709464001\" blue=\"0.014257565567641661\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"f9i-hv-EJj\" firstAttribute=\"leading\" secondItem=\"gKE-F4-xNG\" secondAttribute=\"leading\" constant=\"20\" id=\"0oh-fc-6jB\"/>\n                                    <constraint firstItem=\"s35-Qq-Nsv\" firstAttribute=\"leading\" secondItem=\"f9i-hv-EJj\" secondAttribute=\"leading\" id=\"2In-2R-Uae\"/>\n                                    <constraint firstItem=\"f9i-hv-EJj\" firstAttribute=\"centerY\" secondItem=\"gKE-F4-xNG\" secondAttribute=\"centerY\" id=\"P8Y-MY-e5d\"/>\n                                    <constraint firstItem=\"f9i-hv-EJj\" firstAttribute=\"top\" secondItem=\"s35-Qq-Nsv\" secondAttribute=\"bottom\" id=\"VG2-w7-fo3\"/>\n                                    <constraint firstItem=\"s35-Qq-Nsv\" firstAttribute=\"trailing\" secondItem=\"f9i-hv-EJj\" secondAttribute=\"trailing\" id=\"cHT-2E-Hld\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"f9i-hv-EJj\" secondAttribute=\"trailing\" constant=\"20\" id=\"v2l-rD-nJs\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0lP-yw-jhD\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"323\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Customised keyboardDistanceFromTextField = 150\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6fq-Kb-dPm\">\n                                        <rect key=\"frame\" x=\"20\" y=\"16.666666666666686\" width=\"335\" height=\"12\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                        <color key=\"textColor\" red=\"0.66666666666666663\" green=\"0.66666666666666663\" blue=\"0.66666666666666663\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"103\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Customize InputView support\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"z7r-JB-8xa\" customClass=\"IQDropDownTextField\" customModule=\"IQDropDownTextFieldSwift\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28.666666666666686\" width=\"335\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"0.19614955952842716\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"numberPad\"/>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"6fq-Kb-dPm\" firstAttribute=\"leading\" secondItem=\"z7r-JB-8xa\" secondAttribute=\"leading\" id=\"Pgf-3n-VIk\"/>\n                                    <constraint firstItem=\"6fq-Kb-dPm\" firstAttribute=\"trailing\" secondItem=\"z7r-JB-8xa\" secondAttribute=\"trailing\" id=\"QfT-5x-y4a\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"z7r-JB-8xa\" secondAttribute=\"trailing\" constant=\"20\" id=\"k61-8p-0mh\"/>\n                                    <constraint firstItem=\"z7r-JB-8xa\" firstAttribute=\"leading\" secondItem=\"0lP-yw-jhD\" secondAttribute=\"leading\" constant=\"20\" id=\"oGm-eX-KIF\"/>\n                                    <constraint firstItem=\"z7r-JB-8xa\" firstAttribute=\"top\" secondItem=\"6fq-Kb-dPm\" secondAttribute=\"bottom\" id=\"q3r-jM-Bre\"/>\n                                    <constraint firstItem=\"z7r-JB-8xa\" firstAttribute=\"centerY\" secondItem=\"0lP-yw-jhD\" secondAttribute=\"centerY\" id=\"t9P-7m-wj3\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"IVr-ue-nU2\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"414\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"This is IQTextView with placeholder support\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eGW-E3-wza\">\n                                        <rect key=\"frame\" x=\"20\" y=\"16\" width=\"335\" height=\"12\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                        <color key=\"textColor\" red=\"0.66666666666666663\" green=\"0.66666666666666663\" blue=\"0.66666666666666663\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" tag=\"101\" contentMode=\"scaleToFill\" textAlignment=\"natural\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Nry-4j-VcI\" customClass=\"IQTextView\" customModule=\"IQTextView\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28\" width=\"335\" height=\"35\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"0.013985326711680755\" blue=\"0.039278733763664801\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"35\" id=\"rby-6H-tEV\"/>\n                                        </constraints>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                        <userDefinedRuntimeAttributes>\n                                            <userDefinedRuntimeAttribute type=\"string\" keyPath=\"placeholder\" value=\"IQTextView for placeholder support\"/>\n                                        </userDefinedRuntimeAttributes>\n                                        <connections>\n                                            <outlet property=\"delegate\" destination=\"csO-qF-Ohn\" id=\"59W-2Q-qQA\"/>\n                                        </connections>\n                                    </textView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"eGW-E3-wza\" firstAttribute=\"leading\" secondItem=\"Nry-4j-VcI\" secondAttribute=\"leading\" id=\"6wv-uc-6aQ\"/>\n                                    <constraint firstItem=\"Nry-4j-VcI\" firstAttribute=\"top\" secondItem=\"eGW-E3-wza\" secondAttribute=\"bottom\" id=\"EIR-De-VfU\"/>\n                                    <constraint firstItem=\"Nry-4j-VcI\" firstAttribute=\"leading\" secondItem=\"IVr-ue-nU2\" secondAttribute=\"leading\" constant=\"20\" id=\"HjN-uE-Mdv\"/>\n                                    <constraint firstItem=\"Nry-4j-VcI\" firstAttribute=\"centerY\" secondItem=\"IVr-ue-nU2\" secondAttribute=\"centerY\" id=\"XM3-2g-cO8\"/>\n                                    <constraint firstItem=\"eGW-E3-wza\" firstAttribute=\"trailing\" secondItem=\"Nry-4j-VcI\" secondAttribute=\"trailing\" id=\"pXr-tY-Uoo\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Nry-4j-VcI\" secondAttribute=\"trailing\" constant=\"20\" id=\"wu3-r7-nD2\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mBP-UW-teE\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"505\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" tag=\"105\" contentMode=\"scaleToFill\" text=\"Can set keyboard and textFiled distance\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0xQ-D1-B5M\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28\" width=\"335\" height=\"35\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"3.6346713731378741e-05\" blue=\"0.45383219108448247\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"35\" id=\"dj6-cH-Zri\"/>\n                                        </constraints>\n                                        <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                    </textView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"0xQ-D1-B5M\" secondAttribute=\"trailing\" constant=\"20\" id=\"6wL-Xg-D9P\"/>\n                                    <constraint firstItem=\"0xQ-D1-B5M\" firstAttribute=\"leading\" secondItem=\"mBP-UW-teE\" secondAttribute=\"leading\" constant=\"20\" id=\"AvC-kW-sHd\"/>\n                                    <constraint firstItem=\"0xQ-D1-B5M\" firstAttribute=\"centerY\" secondItem=\"mBP-UW-teE\" secondAttribute=\"centerY\" id=\"twT-Uj-sP3\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"63Q-wt-23t\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"596\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" tag=\"108\" contentMode=\"scaleToFill\" text=\"Can resign on touching outside\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wIC-LZ-asw\" customClass=\"IQTextView\" customModule=\"IQTextView\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28\" width=\"335\" height=\"35\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.2440839877768155\" green=\"0.0\" blue=\"0.47692340353260865\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"35\" id=\"gC4-aw-Xji\"/>\n                                        </constraints>\n                                        <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                        <userDefinedRuntimeAttributes>\n                                            <userDefinedRuntimeAttribute type=\"string\" keyPath=\"placeholder\" value=\"enableMode = .disabled\"/>\n                                        </userDefinedRuntimeAttributes>\n                                    </textView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"wIC-LZ-asw\" firstAttribute=\"centerY\" secondItem=\"63Q-wt-23t\" secondAttribute=\"centerY\" id=\"XAL-DX-Pj3\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"wIC-LZ-asw\" secondAttribute=\"trailing\" constant=\"20\" id=\"Zn4-Uf-ZKq\"/>\n                                    <constraint firstItem=\"wIC-LZ-asw\" firstAttribute=\"leading\" secondItem=\"63Q-wt-23t\" secondAttribute=\"leading\" constant=\"20\" id=\"rDb-Nr-G5H\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"TZX-d4-nhG\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"687\" width=\"375\" height=\"91\"/>\n                                <subviews>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" tag=\"94\" contentMode=\"scaleToFill\" text=\"can adjust textView's height when it is too big to fit on screen\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Inj-lY-mEU\">\n                                        <rect key=\"frame\" x=\"20\" y=\"28\" width=\"335\" height=\"35\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <color key=\"tintColor\" red=\"0.018422932627533785\" green=\"0.05210980157170237\" blue=\"0.47692340353260865\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"35\" id=\"fqp-Cj-Fie\"/>\n                                        </constraints>\n                                        <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                    </textView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"Inj-lY-mEU\" firstAttribute=\"centerY\" secondItem=\"TZX-d4-nhG\" secondAttribute=\"centerY\" id=\"N5d-eJ-vYa\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Inj-lY-mEU\" secondAttribute=\"trailing\" constant=\"20\" id=\"bDY-z9-6Jn\"/>\n                                    <constraint firstItem=\"Inj-lY-mEU\" firstAttribute=\"leading\" secondItem=\"TZX-d4-nhG\" secondAttribute=\"leading\" constant=\"20\" id=\"gdX-rf-hFR\"/>\n                                </constraints>\n                            </view>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"gVk-b7-f0c\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"TZX-d4-nhG\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"0hd-mo-Nbr\"/>\n                            <constraint firstItem=\"mBP-UW-teE\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"1wB-RF-TD2\"/>\n                            <constraint firstItem=\"gKE-F4-xNG\" firstAttribute=\"top\" secondItem=\"mYe-Gd-Tgq\" secondAttribute=\"bottom\" id=\"5Mu-tk-54t\"/>\n                            <constraint firstItem=\"gKE-F4-xNG\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"5WL-oC-M6f\"/>\n                            <constraint firstItem=\"0lP-yw-jhD\" firstAttribute=\"top\" secondItem=\"gKE-F4-xNG\" secondAttribute=\"bottom\" id=\"64J-Fg-DyW\"/>\n                            <constraint firstItem=\"IVr-ue-nU2\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"7OP-86-mbQ\"/>\n                            <constraint firstItem=\"mBP-UW-teE\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"80g-CY-fpl\"/>\n                            <constraint firstItem=\"mBP-UW-teE\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"9wv-3X-JPl\"/>\n                            <constraint firstItem=\"mYe-Gd-Tgq\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"A9W-n2-3cc\"/>\n                            <constraint firstItem=\"mYe-Gd-Tgq\" firstAttribute=\"top\" secondItem=\"07C-Jx-O92\" secondAttribute=\"bottom\" id=\"B6L-Sg-0ku\"/>\n                            <constraint firstItem=\"mYe-Gd-Tgq\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"Ctf-1u-yGa\"/>\n                            <constraint firstItem=\"63Q-wt-23t\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"JXg-EF-ytI\"/>\n                            <constraint firstItem=\"63Q-wt-23t\" firstAttribute=\"top\" secondItem=\"mBP-UW-teE\" secondAttribute=\"bottom\" id=\"MX4-HF-JHW\"/>\n                            <constraint firstItem=\"0lP-yw-jhD\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"MeK-lL-4e8\"/>\n                            <constraint firstItem=\"07C-Jx-O92\" firstAttribute=\"top\" secondItem=\"gVk-b7-f0c\" secondAttribute=\"top\" id=\"NAD-o2-nJE\"/>\n                            <constraint firstItem=\"IVr-ue-nU2\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"RDf-mv-Y9e\"/>\n                            <constraint firstItem=\"mBP-UW-teE\" firstAttribute=\"top\" secondItem=\"IVr-ue-nU2\" secondAttribute=\"bottom\" id=\"TzG-Or-vP3\"/>\n                            <constraint firstItem=\"mYe-Gd-Tgq\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"U78-vR-Rha\"/>\n                            <constraint firstItem=\"63Q-wt-23t\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"WSG-tC-CoY\"/>\n                            <constraint firstItem=\"63Q-wt-23t\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"Z33-KT-FYf\"/>\n                            <constraint firstItem=\"gVk-b7-f0c\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"ccN-qD-Mnn\"/>\n                            <constraint firstItem=\"gKE-F4-xNG\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"d1Q-fZ-jHN\"/>\n                            <constraint firstItem=\"0lP-yw-jhD\" firstAttribute=\"leading\" secondItem=\"07C-Jx-O92\" secondAttribute=\"leading\" id=\"dXf-vS-oZH\"/>\n                            <constraint firstItem=\"IVr-ue-nU2\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"iDS-Ml-QGf\"/>\n                            <constraint firstItem=\"gKE-F4-xNG\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"mi6-j9-Azn\"/>\n                            <constraint firstItem=\"TZX-d4-nhG\" firstAttribute=\"top\" secondItem=\"63Q-wt-23t\" secondAttribute=\"bottom\" id=\"nOd-tP-M9I\"/>\n                            <constraint firstItem=\"TZX-d4-nhG\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"qri-tx-hEw\"/>\n                            <constraint firstItem=\"IVr-ue-nU2\" firstAttribute=\"top\" secondItem=\"0lP-yw-jhD\" secondAttribute=\"bottom\" id=\"rVE-gO-9xX\"/>\n                            <constraint firstItem=\"TZX-d4-nhG\" firstAttribute=\"trailing\" secondItem=\"07C-Jx-O92\" secondAttribute=\"trailing\" id=\"uue-y8-WME\"/>\n                            <constraint firstItem=\"0lP-yw-jhD\" firstAttribute=\"height\" secondItem=\"07C-Jx-O92\" secondAttribute=\"height\" id=\"xRS-DP-aWL\"/>\n                            <constraint firstItem=\"gVk-b7-f0c\" firstAttribute=\"bottom\" secondItem=\"TZX-d4-nhG\" secondAttribute=\"bottom\" id=\"xgQ-SX-FLa\"/>\n                            <constraint firstItem=\"07C-Jx-O92\" firstAttribute=\"leading\" secondItem=\"gVk-b7-f0c\" secondAttribute=\"leading\" id=\"zTi-hu-eO8\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"TextField Demo\" id=\"s8z-5e-RBK\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"qRy-Jd-18s\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"dropDownTextField\" destination=\"z7r-JB-8xa\" id=\"lNo-Ce-mO7\"/>\n                        <outlet property=\"textField3\" destination=\"f9i-hv-EJj\" id=\"DBN-J6-duh\"/>\n                        <outlet property=\"textView1\" destination=\"Nry-4j-VcI\" id=\"TlE-FP-Tnc\"/>\n                        <outlet property=\"textView2\" destination=\"wIC-LZ-asw\" id=\"f9v-Pn-QjU\"/>\n                        <outlet property=\"textView3\" destination=\"Inj-lY-mEU\" id=\"nnY-RW-NSk\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"XLS-w0-J9V\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-2410\" y=\"218\"/>\n        </scene>\n        <!--Manual UIToolbar-->\n        <scene sceneID=\"EHW-3w-JeB\">\n            <objects>\n                <viewController storyboardIdentifier=\"ManualToolbarViewController\" id=\"BmV-Mf-VMv\" customClass=\"ManualToolbarViewController\" customModule=\"DemoSwift\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"HJo-1K-fJY\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" text=\"1\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dET-Cl-VUb\">\n                                <rect key=\"frame\" x=\"10\" y=\"75\" width=\"355\" height=\"34\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                            </textField>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Pgv-Nr-BWR\">\n                                <rect key=\"frame\" x=\"10\" y=\"114\" width=\"355\" height=\"44\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" text=\"3\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ai2-LR-bIl\">\n                                        <rect key=\"frame\" x=\"10\" y=\"5\" width=\"335\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                <constraints>\n                                    <constraint firstItem=\"ai2-LR-bIl\" firstAttribute=\"top\" secondItem=\"Pgv-Nr-BWR\" secondAttribute=\"top\" constant=\"5\" id=\"A3I-cA-GyO\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"ai2-LR-bIl\" secondAttribute=\"trailing\" constant=\"10\" id=\"ZGf-Oh-wdZ\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"ai2-LR-bIl\" secondAttribute=\"bottom\" constant=\"5\" id=\"dPk-S2-Azk\"/>\n                                    <constraint firstItem=\"ai2-LR-bIl\" firstAttribute=\"leading\" secondItem=\"Pgv-Nr-BWR\" secondAttribute=\"leading\" constant=\"10\" id=\"jrD-p6-2uZ\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"1qv-RL-5nG\">\n                                <rect key=\"frame\" x=\"10\" y=\"620\" width=\"355\" height=\"56\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"This textField customise toolbar titile to use as UIButton\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"R4y-qs-Tiw\">\n                                        <rect key=\"frame\" x=\"10\" y=\"5\" width=\"335\" height=\"12\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                        <color key=\"textColor\" name=\"535353\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Enter Username\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dQK-Ms-QYa\">\n                                        <rect key=\"frame\" x=\"10\" y=\"17\" width=\"335\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                <constraints>\n                                    <constraint firstItem=\"R4y-qs-Tiw\" firstAttribute=\"leading\" secondItem=\"dQK-Ms-QYa\" secondAttribute=\"leading\" id=\"7ov-eH-Nhx\"/>\n                                    <constraint firstItem=\"dQK-Ms-QYa\" firstAttribute=\"top\" secondItem=\"R4y-qs-Tiw\" secondAttribute=\"bottom\" id=\"K3V-NR-RFI\"/>\n                                    <constraint firstItem=\"dQK-Ms-QYa\" firstAttribute=\"leading\" secondItem=\"1qv-RL-5nG\" secondAttribute=\"leading\" constant=\"10\" id=\"OBZ-E2-1EM\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"dQK-Ms-QYa\" secondAttribute=\"trailing\" constant=\"10\" id=\"UA8-qq-Ybl\"/>\n                                    <constraint firstItem=\"R4y-qs-Tiw\" firstAttribute=\"top\" secondItem=\"1qv-RL-5nG\" secondAttribute=\"top\" constant=\"5\" id=\"efc-JE-Ih3\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"dQK-Ms-QYa\" secondAttribute=\"bottom\" constant=\"5\" id=\"j3g-1c-1ng\"/>\n                                    <constraint firstItem=\"R4y-qs-Tiw\" firstAttribute=\"trailing\" secondItem=\"dQK-Ms-QYa\" secondAttribute=\"trailing\" id=\"wei-vJ-WEo\"/>\n                                </constraints>\n                            </view>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Zjk-gc-QEr\">\n                                <rect key=\"frame\" x=\"10\" y=\"163\" width=\"355\" height=\"452\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <string key=\"text\">2 There are also nice optional features allowing you to customize the distance from the text field, add the next/previous done button as a keyboard UIToolbar, play sounds when the user navigations through the form and more. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oB6-a2-0nS\">\n                                <rect key=\"frame\" x=\"10\" y=\"686\" width=\"355\" height=\"48\"/>\n                                <string key=\"text\">If you do not want to add any UIToolbar on a textField, just set ablank UIView as it's inputAccessoryView\n                                    \n                                    textField.inputAcessoryView = [[UIView alloc] init];</string>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                <color key=\"textColor\" systemColor=\"systemGrayColor\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9al-mX-KU2\">\n                                <rect key=\"frame\" x=\"10\" y=\"739\" width=\"355\" height=\"34\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                            </textField>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Yjf-Wp-up3\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"Pgv-Nr-BWR\" firstAttribute=\"leading\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"leading\" id=\"3le-BI-CJa\"/>\n                            <constraint firstItem=\"Yjf-Wp-up3\" firstAttribute=\"bottom\" secondItem=\"9al-mX-KU2\" secondAttribute=\"bottom\" constant=\"5\" id=\"4HV-1n-B4X\"/>\n                            <constraint firstItem=\"dET-Cl-VUb\" firstAttribute=\"top\" secondItem=\"Yjf-Wp-up3\" secondAttribute=\"top\" constant=\"25\" id=\"6H5-cx-nVG\"/>\n                            <constraint firstItem=\"Yjf-Wp-up3\" firstAttribute=\"trailing\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"trailing\" constant=\"10\" id=\"BXC-53-WaL\"/>\n                            <constraint firstItem=\"oB6-a2-0nS\" firstAttribute=\"top\" secondItem=\"1qv-RL-5nG\" secondAttribute=\"bottom\" constant=\"10\" id=\"BwN-QK-0hQ\"/>\n                            <constraint firstItem=\"Pgv-Nr-BWR\" firstAttribute=\"top\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"bottom\" constant=\"5\" id=\"JMG-i3-v34\"/>\n                            <constraint firstItem=\"Zjk-gc-QEr\" firstAttribute=\"leading\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"leading\" id=\"Jgh-Kb-isa\"/>\n                            <constraint firstItem=\"1qv-RL-5nG\" firstAttribute=\"trailing\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"trailing\" id=\"Mbb-rm-sRE\"/>\n                            <constraint firstItem=\"Pgv-Nr-BWR\" firstAttribute=\"trailing\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"trailing\" id=\"Mk2-JS-Zsp\"/>\n                            <constraint firstItem=\"dET-Cl-VUb\" firstAttribute=\"leading\" secondItem=\"Yjf-Wp-up3\" secondAttribute=\"leading\" constant=\"10\" id=\"Nhv-We-MSD\"/>\n                            <constraint firstItem=\"oB6-a2-0nS\" firstAttribute=\"trailing\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"trailing\" id=\"etb-1Z-4lg\"/>\n                            <constraint firstItem=\"oB6-a2-0nS\" firstAttribute=\"leading\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"leading\" id=\"jc7-ud-YEv\"/>\n                            <constraint firstItem=\"9al-mX-KU2\" firstAttribute=\"top\" secondItem=\"oB6-a2-0nS\" secondAttribute=\"bottom\" constant=\"5\" id=\"kVs-y0-B8I\"/>\n                            <constraint firstItem=\"9al-mX-KU2\" firstAttribute=\"leading\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"leading\" id=\"oo1-jf-rsZ\"/>\n                            <constraint firstItem=\"Zjk-gc-QEr\" firstAttribute=\"top\" secondItem=\"Pgv-Nr-BWR\" secondAttribute=\"bottom\" constant=\"5\" id=\"rUw-Es-cy9\"/>\n                            <constraint firstItem=\"1qv-RL-5nG\" firstAttribute=\"top\" secondItem=\"Zjk-gc-QEr\" secondAttribute=\"bottom\" constant=\"5\" id=\"rz6-wV-SSa\"/>\n                            <constraint firstItem=\"1qv-RL-5nG\" firstAttribute=\"leading\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"leading\" id=\"vMi-Ct-4eU\"/>\n                            <constraint firstItem=\"9al-mX-KU2\" firstAttribute=\"trailing\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"trailing\" id=\"xDs-zv-VIN\"/>\n                            <constraint firstItem=\"Zjk-gc-QEr\" firstAttribute=\"trailing\" secondItem=\"dET-Cl-VUb\" secondAttribute=\"trailing\" id=\"zIO-cM-iyj\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Manual UIToolbar\" id=\"Bsk-WG-eqv\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"EP2-V0-ARn\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"textField1\" destination=\"dET-Cl-VUb\" id=\"bJd-Xd-5BS\"/>\n                        <outlet property=\"textField2\" destination=\"ai2-LR-bIl\" id=\"Fip-nM-yvi\"/>\n                        <outlet property=\"textField4\" destination=\"dQK-Ms-QYa\" id=\"HCJ-fa-BwX\"/>\n                        <outlet property=\"textField5\" destination=\"9al-mX-KU2\" id=\"xPc-vR-IFK\"/>\n                        <outlet property=\"textView3\" destination=\"Zjk-gc-QEr\" id=\"TE7-Z9-bH1\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"bYo-9Y-oOp\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-1268\" y=\"217\"/>\n        </scene>\n        <!--UITextView-->\n        <scene sceneID=\"3sv-pN-G2Q\">\n            <objects>\n                <viewController storyboardIdentifier=\"TextViewSpecialCaseViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"S5Z-0B-U3b\" customClass=\"TextViewSpecialCaseViewController\" customModule=\"DemoSwift\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"WXo-oP-G5s\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"L8v-ua-y0A\">\n                                <rect key=\"frame\" x=\"4.9999999999999929\" y=\"50\" width=\"118.33333333333331\" height=\"728\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <color key=\"tintColor\" red=\"0.037223728980000002\" green=\"0.2286975034\" blue=\"0.47692340350000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <string key=\"text\">`IQKeyboardManager` allows you to prevent issues of the keyboard sliding up and covering a text field without needing you to enter any code.\n                                    \n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rUI-UY-dtz\">\n                                <rect key=\"frame\" x=\"128.33333333333334\" y=\"50\" width=\"118.33333333333334\" height=\"361.66666666666669\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <color key=\"tintColor\" red=\"0.17938000649999999\" green=\"0.47692340350000001\" blue=\"0.46705995909999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <string key=\"text\">One of the Speciality of this Library is `It Works Automatically`.\n                                    \n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2d0-tG-Pzx\">\n                                <rect key=\"frame\" x=\"251.66666666666666\" y=\"50\" width=\"118.33333333333334\" height=\"241\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <color key=\"tintColor\" red=\"0.35979851940000002\" green=\"0.47692340350000001\" blue=\"0.23990625860000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <string key=\"text\">`IQKeyboardManager` works on all orientations, and with the toolbar.\n                                    \n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"m72-tJ-oyd\">\n                                <rect key=\"frame\" x=\"128.33333333333334\" y=\"416.66666666666674\" width=\"118.33333333333334\" height=\"361.33333333333326\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <color key=\"tintColor\" red=\"0.1750397256\" green=\"0.47692340350000001\" blue=\"0.27988265709999999\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <string key=\"text\">`ZERO LINE OF CODE`, `No More imports`, `No More Subclasses`, `No More Manual Work`.\n                                    \n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LEb-Ei-7Sx\">\n                                <rect key=\"frame\" x=\"251.66666666666666\" y=\"296\" width=\"118.33333333333334\" height=\"482\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <color key=\"tintColor\" red=\"0.47692340350000001\" green=\"0.36313484200000001\" blue=\"0.25518210050000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <string key=\"text\">To use `IQKeyboardManager` you simply need to add the framework to your project or add the source files to your project.\n                                    \n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"4Hs-Z1-5S0\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"L8v-ua-y0A\" firstAttribute=\"leading\" secondItem=\"4Hs-Z1-5S0\" secondAttribute=\"leading\" constant=\"5\" id=\"1Z6-kz-nkX\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"bottom\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"bottom\" id=\"7jW-xw-uDa\"/>\n                            <constraint firstItem=\"rUI-UY-dtz\" firstAttribute=\"top\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"top\" id=\"9jH-nR-8Ko\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"width\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"width\" id=\"C9t-kP-qh4\"/>\n                            <constraint firstItem=\"rUI-UY-dtz\" firstAttribute=\"width\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"width\" id=\"Dto-Rj-fEC\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"leading\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"trailing\" constant=\"5\" id=\"Em0-VM-97A\"/>\n                            <constraint firstItem=\"L8v-ua-y0A\" firstAttribute=\"top\" secondItem=\"4Hs-Z1-5S0\" secondAttribute=\"top\" id=\"KWN-6I-voR\"/>\n                            <constraint firstItem=\"2d0-tG-Pzx\" firstAttribute=\"top\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"top\" id=\"McL-1G-XOY\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"top\" secondItem=\"2d0-tG-Pzx\" secondAttribute=\"bottom\" constant=\"5\" id=\"NOG-mS-YIV\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"leading\" secondItem=\"rUI-UY-dtz\" secondAttribute=\"leading\" id=\"RW0-VM-sPH\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"top\" secondItem=\"rUI-UY-dtz\" secondAttribute=\"bottom\" constant=\"5\" id=\"Tqi-zV-DFJ\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"leading\" secondItem=\"m72-tJ-oyd\" secondAttribute=\"trailing\" constant=\"5\" id=\"Uul-rf-JOo\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"height\" secondItem=\"2d0-tG-Pzx\" secondAttribute=\"height\" multiplier=\"2:1\" id=\"Y2v-8q-AZo\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"bottom\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"bottom\" id=\"YlB-va-Idl\"/>\n                            <constraint firstItem=\"4Hs-Z1-5S0\" firstAttribute=\"bottom\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"bottom\" id=\"dbY-GW-xN8\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"trailing\" secondItem=\"2d0-tG-Pzx\" secondAttribute=\"trailing\" id=\"euN-2B-39x\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"width\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"width\" id=\"fzt-8G-ESW\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"trailing\" secondItem=\"rUI-UY-dtz\" secondAttribute=\"trailing\" id=\"jud-Tn-Z0v\"/>\n                            <constraint firstItem=\"4Hs-Z1-5S0\" firstAttribute=\"trailing\" secondItem=\"2d0-tG-Pzx\" secondAttribute=\"trailing\" constant=\"5\" id=\"nCU-Uf-YaN\"/>\n                            <constraint firstItem=\"m72-tJ-oyd\" firstAttribute=\"height\" secondItem=\"rUI-UY-dtz\" secondAttribute=\"height\" id=\"oSn-aq-5n8\"/>\n                            <constraint firstItem=\"2d0-tG-Pzx\" firstAttribute=\"width\" secondItem=\"L8v-ua-y0A\" secondAttribute=\"width\" id=\"rfn-CF-5FM\"/>\n                            <constraint firstItem=\"LEb-Ei-7Sx\" firstAttribute=\"leading\" secondItem=\"2d0-tG-Pzx\" secondAttribute=\"leading\" id=\"yOI-0E-V1k\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"UITextView\" id=\"Qen-Wv-SxX\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"3yn-Xo-guq\"/>\n                    </navigationItem>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"I5w-ff-duj\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-310\" y=\"216\"/>\n        </scene>\n        <!--Safe Area-->\n        <scene sceneID=\"9fU-TF-E5D\">\n            <objects>\n                <viewController storyboardIdentifier=\"SafeAreaViewController\" id=\"ICH-Xc-ydU\" userLabel=\"Safe Area\" customClass=\"SafeAreaViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"hC1-xV-1iw\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" distribution=\"equalSpacing\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XPo-YC-Qv5\">\n                                <rect key=\"frame\" x=\"20\" y=\"70\" width=\"157.66666666666666\" height=\"688\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5bJ-5h-HEC\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CRH-AN-Q1M\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"81.666666666666657\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pFQ-qK-3Sk\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"163.66666666666666\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4Aa-Xv-H4G\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"245.33333333333331\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DZ4-MB-gMd\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"327\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"d3c-i6-5rn\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"408.66666666666669\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tqi-ZZ-bIw\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"490.66666666666663\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"1xZ-Gm-mcg\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"572.33333333333337\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Safe Area\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fNi-X2-ujc\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"654\" width=\"157.66666666666666\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                            </stackView>\n                            <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" distribution=\"equalSpacing\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nMg-hh-XNK\">\n                                <rect key=\"frame\" x=\"197.66666666666663\" y=\"20\" width=\"157.33333333333337\" height=\"772\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LRV-UA-aJI\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4kg-ow-w8s\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"92.333333333333329\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tZX-Ud-h5e\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"184.66666666666666\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LYh-cE-9Z2\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"276.66666666666669\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2o4-KZ-U1b\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"369\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ljO-yP-wR6\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"461.33333333333331\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"K98-Yn-lms\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"553.66666666666663\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"41Q-ZA-71m\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"645.66666666666663\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"100\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Superview\" minimumFontSize=\"17\" clearButtonMode=\"always\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CAN-Fy-xiC\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"738\" width=\"157.33333333333334\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                            </stackView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"yGM-h5-Ibm\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"nMg-hh-XNK\" firstAttribute=\"top\" secondItem=\"hC1-xV-1iw\" secondAttribute=\"top\" constant=\"20\" id=\"4zj-zT-RxS\"/>\n                            <constraint firstItem=\"yGM-h5-Ibm\" firstAttribute=\"bottom\" secondItem=\"XPo-YC-Qv5\" secondAttribute=\"bottom\" constant=\"20\" id=\"AgI-E2-hWN\"/>\n                            <constraint firstItem=\"nMg-hh-XNK\" firstAttribute=\"leading\" secondItem=\"XPo-YC-Qv5\" secondAttribute=\"trailing\" constant=\"20\" id=\"CEV-mf-rM2\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"nMg-hh-XNK\" secondAttribute=\"bottom\" constant=\"20\" id=\"IgY-YY-vfQ\"/>\n                            <constraint firstItem=\"XPo-YC-Qv5\" firstAttribute=\"leading\" secondItem=\"yGM-h5-Ibm\" secondAttribute=\"leading\" constant=\"20\" id=\"L4i-4D-1RO\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"nMg-hh-XNK\" secondAttribute=\"trailing\" constant=\"20\" id=\"MmU-7Y-tqh\"/>\n                            <constraint firstItem=\"XPo-YC-Qv5\" firstAttribute=\"top\" secondItem=\"yGM-h5-Ibm\" secondAttribute=\"top\" constant=\"20\" id=\"sQO-qH-HN3\"/>\n                            <constraint firstItem=\"nMg-hh-XNK\" firstAttribute=\"width\" secondItem=\"XPo-YC-Qv5\" secondAttribute=\"width\" id=\"uUO-Ik-5nN\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Safe Area vs Superview\" id=\"5dW-ym-N3p\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"8zL-ef-0dg\"/>\n                    </navigationItem>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"XRR-Xd-R6p\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-3206\" y=\"218\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"settings\" width=\"25\" height=\"25\"/>\n        <namedColor name=\"535353\">\n            <color red=\"0.32549019607843138\" green=\"0.32549019607843138\" blue=\"0.32549019607843138\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"DEDEDE\">\n            <color red=\"0.87058823529411766\" green=\"0.87058823529411766\" blue=\"0.87058823529411766\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"EBEDF0\">\n            <color red=\"0.92156862745098034\" green=\"0.92941176470588238\" blue=\"0.94117647058823528\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <systemColor name=\"labelColor\">\n            <color white=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemBackgroundColor\">\n            <color white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemGrayColor\">\n            <color red=\"0.55686274509803924\" green=\"0.55686274509803924\" blue=\"0.57647058823529407\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/Launch.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"22505\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"SLD-W0-iHs\">\n    <device id=\"retina5_9\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment version=\"5120\" identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"22504\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"Upz-E2-HnO\">\n            <objects>\n                <viewController id=\"SLD-W0-iHs\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"gvr-2z-xYP\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"IQKeyboardManager Swift\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8Gp-lr-M5c\">\n                                <rect key=\"frame\" x=\"67.333333333333329\" y=\"376\" width=\"240.33333333333337\" height=\"60\"/>\n                                <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"25\"/>\n                                <color key=\"textColor\" red=\"0.0\" green=\"0.47843137250000001\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"DYU-Qw-MNf\"/>\n                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                        <constraints>\n                            <constraint firstItem=\"8Gp-lr-M5c\" firstAttribute=\"centerY\" secondItem=\"gvr-2z-xYP\" secondAttribute=\"centerY\" id=\"Niw-IN-QDx\"/>\n                            <constraint firstItem=\"8Gp-lr-M5c\" firstAttribute=\"centerX\" secondItem=\"DYU-Qw-MNf\" secondAttribute=\"centerX\" id=\"jBs-oW-3q8\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"473-od-mMH\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"84\" y=\"160\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <namedColor name=\"EBEDF0\">\n            <color red=\"0.92156862745098034\" green=\"0.92941176470588238\" blue=\"0.94117647058823528\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/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=\"24127\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"iFF-SZ-t3m\">\n    <device id=\"retina6_1\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment version=\"5120\" identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"24063\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--IQKeyboardManagerSwift-->\n        <scene sceneID=\"q9Q-KK-LGH\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"ViewController\" id=\"hc7-47-3EI\" customClass=\"ViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"static\" style=\"grouped\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"18\" sectionFooterHeight=\"18\" id=\"hWg-0w-ugq\">\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\" systemColor=\"groupTableViewBackgroundColor\"/>\n                        <sections>\n                            <tableViewSection headerTitle=\"Library Properties\" id=\"fYv-iE-p8L\">\n                                <cells>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"itr-sp-j54\" detailTextLabel=\"ko2-SX-mJs\" rowHeight=\"180\" style=\"IBUITableViewCellStyleSubtitle\" id=\"rV8-ZH-g8s\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"38\" width=\"414\" height=\"180\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"rV8-ZH-g8s\" id=\"uzP-S2-ijJ\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"180\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UITextField/UITextView example\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"itr-sp-j54\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"6\" width=\"237.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"ko2-SX-mJs\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"28.5\" width=\"264\" height=\"143.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <string key=\"text\">- enable - shouldToolbarUsesTextFieldTintColor - keyboardDistanceFromTextField - shouldShowToolbarPlaceholder - placeholderFont - keyboardDistanceFromTextField (Category) - IQTextView (Class) - setCustomPreviousTarget: action: (Category) - setCustomNextTarget: action: (Category) - setCustomDoneTarget: action: (Category)</string>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"KZJ-ih-4D1\" kind=\"show\" id=\"W2Y-70-Q2B\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"F3P-4I-j2h\" detailTextLabel=\"KuD-1z-36f\" rowHeight=\"200\" style=\"IBUITableViewCellStyleSubtitle\" id=\"Bu6-lO-Ym3\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"218\" width=\"414\" height=\"200\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Bu6-lO-Ym3\" id=\"KwX-VJ-NI2\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"200\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"NavigationBar &amp; Toolbar\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"F3P-4I-j2h\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"9\" width=\"180\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"KuD-1z-36f\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"31.5\" width=\"245.5\" height=\"158\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <string key=\"text\">- enableAutoToolbar - toolbarManageBehaviour - overrideKeyboardAppearance - keyboardAppearance - shouldResignOnTouchOutside - IQKeyboardReturnKeyHandler (Class) - shouldHideToolbarPlaceholder (Category) - toolbarPlaceholder (Category) - toolbarTintColor - toolbarDoneBarButtonItemImage - toolbarDoneBarButtonItemText</string>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"Ms3-hB-G13\" kind=\"show\" id=\"yE3-3X-hi4\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"xCu-GT-OP1\" detailTextLabel=\"wqF-JW-cmz\" rowHeight=\"120\" style=\"IBUITableViewCellStyleSubtitle\" id=\"gaM-pl-FBU\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"418\" width=\"414\" height=\"120\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"gaM-pl-FBU\" id=\"cHL-Ey-3Jx\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"120\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Manual UIToolbar + No UIToolbar\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"xCu-GT-OP1\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"19\" width=\"244.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"wqF-JW-cmz\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"41.5\" width=\"297\" height=\"57.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <string key=\"text\">- addPreviousNextDoneOnKeyboardWithTarget: previousAction: nextAction: doneAction: - addDoneOnKeyboardWithTarget: action: - Use Toolbar title as button to do something special</string>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"WgA-YP-cxW\" kind=\"show\" id=\"tP0-zH-Mg3\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"ask-lD-56a\" detailTextLabel=\"YB6-DC-bfI\" rowHeight=\"140\" style=\"IBUITableViewCellStyleSubtitle\" id=\"r6j-Mg-HQ1\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"538\" width=\"414\" height=\"140\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"r6j-Mg-HQ1\" id=\"QPI-y0-8Cp\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"140\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"CustomView example\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"ask-lD-56a\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"7\" width=\"159.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"YB6-DC-bfI\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"29.5\" width=\"212\" height=\"100.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <string key=\"text\">- disabledDistanceHandlingClasses - enabledDistanceHandlingClasses - disabledToolbarClasses - enabledToolbarClasses - toolbarPreviousNextAllowedClasses - disabledTouchResignedClasses\n- enabledTouchResignedClasses</string>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"nmC-1p-Jwt\" kind=\"show\" id=\"oNo-g4-5Ja\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"C0s-kb-Bl8\" detailTextLabel=\"Dzz-bo-Ft8\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"FRT-I5-NmU\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"678\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"FRT-I5-NmU\" id=\"vYL-GT-yKg\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Refreshing Layout on the fly\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"C0s-kb-Bl8\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"208\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"- (void)reloadLayoutIfNeeded\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"Dzz-bo-Ft8\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"167\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"5CX-b7-6hI\" kind=\"show\" id=\"aOV-sa-4P6\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"mbB-Qz-Hhy\" detailTextLabel=\"UVI-e1-Sde\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"YIN-Gz-qfd\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"728\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"YIN-Gz-qfd\" id=\"QeO-AZ-sgs\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Safe Area\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"mbB-Qz-Hhy\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"72\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Safe Area vs Superview\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"UVI-e1-Sde\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"133\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"ndP-wQ-Hwk\" kind=\"show\" id=\"uMd-Sm-cFX\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                            <tableViewSection headerTitle=\"UIScrollView &amp; it's subclasses example\" id=\"6Y6-J2-kBv\">\n                                <cells>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"fsu-LW-S6P\" rowHeight=\"50\" style=\"IBUITableViewCellStyleDefault\" id=\"Qfe-BD-23A\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"834\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Qfe-BD-23A\" id=\"DQj-0u-qKi\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"395.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"UITextView ContentInset adjustment\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"fsu-LW-S6P\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"0.0\" width=\"379.5\" height=\"50\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"Jvz-H7-DbK\" kind=\"show\" id=\"sR5-0y-Wzc\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"xTK-Wa-4qX\" detailTextLabel=\"JUG-pm-L0a\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"qPe-ob-ZTP\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"884\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"qPe-ob-ZTP\" id=\"6nU-q7-oiF\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"395.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"UIScrollView+UITableView example\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"xTK-Wa-4qX\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"8\" width=\"261.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"UITableView inside UIScrollView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"JUG-pm-L0a\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"27.5\" width=\"180.5\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"KBE-H2-1jZ\" kind=\"show\" id=\"9av-Xi-YnQ\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"4tu-ej-glw\" detailTextLabel=\"hfZ-RB-s53\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"ot2-7f-aNH\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"934\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"ot2-7f-aNH\" id=\"Tj4-Rs-RwZ\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"395.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"UITableView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"4tu-ej-glw\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"8\" width=\"91\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"UITextField, UITextView inside UITableView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"hfZ-RB-s53\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"27.5\" width=\"242\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"L4D-AU-yn1\" kind=\"show\" id=\"Ab6-BT-DfX\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"JTC-NP-c0d\" detailTextLabel=\"ed7-8b-Ck4\" rowHeight=\"90\" style=\"IBUITableViewCellStyleSubtitle\" id=\"LNE-gT-3q0\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"984\" width=\"414\" height=\"90\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"LNE-gT-3q0\" id=\"G2E-Hk-9ZA\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"395.5\" height=\"90\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UITableView in Container\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"JTC-NP-c0d\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"11\" width=\"185\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"ed7-8b-Ck4\">\n                                                    <rect key=\"frame\" x=\"8\" y=\"33.5\" width=\"353\" height=\"43\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <string key=\"text\">- shouldRestoreScrollViewContentOffset A UITableView as a child of UIViewController embedded in the storyboard using a container view.</string>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"fTs-AT-oCq\" kind=\"show\" id=\"qZY-b0-84K\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"47J-01-GaW\" detailTextLabel=\"dVp-ny-Wn7\" rowHeight=\"110\" style=\"IBUITableViewCellStyleSubtitle\" id=\"vuY-Rx-OnZ\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1074\" width=\"414\" height=\"110\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"vuY-Rx-OnZ\" id=\"ZaG-kT-jP9\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"110\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UITableViewController\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"47J-01-GaW\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"14\" width=\"165\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"dVp-ny-Wn7\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"36.5\" width=\"355.5\" height=\"57.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <string key=\"text\">IQKeyboardManager doesn't affet UITableViewController default scrolling implementation. UITableViewController class automatically resizes and repositions its table view when there is in-line editing of text fields</string>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"toN-3j-Zvf\" kind=\"show\" id=\"9G0-Y5-Eh7\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"5G2-JX-PU5\" detailTextLabel=\"bC5-7g-33X\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"FDn-gK-hQn\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1054\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"FDn-gK-hQn\" id=\"DWg-Lc-ZMB\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UICollectionView example\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"5G2-JX-PU5\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"192.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Navigate next/prev in collectionView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"bC5-7g-33X\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"204.5\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"nH6-xd-Gey\" kind=\"show\" id=\"WJg-c0-hWM\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                            <tableViewSection headerTitle=\"Full Screen\" id=\"GLu-hg-zhP\">\n                                <cells>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"29q-7C-AJL\" detailTextLabel=\"gQK-gD-yCA\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"8nY-Oo-eik\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1160\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"8nY-Oo-eik\" id=\"l8C-Do-RuW\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Full Screen TextViewController\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"29q-7C-AJL\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"227.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"- TextViewController using IQLayoutGuide\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"gQK-gD-yCA\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"237\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"Ux9-L6-crs\" kind=\"show\" id=\"8cT-j2-OpA\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                            <tableViewSection headerTitle=\"Others\" id=\"t68-ki-Vqj\">\n                                <cells>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"hSl-CV-20a\" detailTextLabel=\"dYe-IU-fRj\" rowHeight=\"60\" style=\"IBUITableViewCellStyleSubtitle\" id=\"JJE-ig-CPI\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1266\" width=\"414\" height=\"60\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"JJE-ig-CPI\" id=\"171-25-oZq\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"60\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Special Cases\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"hSl-CV-20a\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"10\" width=\"104\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"- UISearchBar, UIAlertView, UITextField within different UIView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"dYe-IU-fRj\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"32.5\" width=\"352\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"CHc-pX-jPW\" kind=\"show\" id=\"Axs-rb-S8k\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"686-2k-7Sa\" detailTextLabel=\"7nn-db-1QM\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"PRT-OI-M1e\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1326\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"PRT-OI-M1e\" id=\"iaT-ou-9rD\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"StackView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"686-2k-7Sa\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"78\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UIStackView example in iOS9\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"7nn-db-1QM\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"166\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"gKm-0E-HQY\" kind=\"show\" id=\"gKZ-F1-dZI\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"8XY-A5-dnk\" detailTextLabel=\"zU8-4C-nid\" rowHeight=\"60\" style=\"IBUITableViewCellStyleSubtitle\" id=\"1iO-qy-ctD\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1376\" width=\"414\" height=\"60\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"1iO-qy-ctD\" id=\"fgW-Pp-eb8\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"60\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"WKWebView example\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"8XY-A5-dnk\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"10\" width=\"161\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"- Doesn't affect WKWebView default scrolling implementation\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"zU8-4C-nid\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"32.5\" width=\"349\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"BSS-M6-XQn\" kind=\"show\" id=\"VZh-6b-TCZ\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"ira-UX-Ixl\" detailTextLabel=\"sfy-kL-TLi\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"pa8-rB-h9v\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1436\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"pa8-rB-h9v\" id=\"0ld-cl-eO2\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UISearchController\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"ira-UX-Ixl\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"142\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Search Controller\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"sfy-kL-TLi\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"99\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"Mxi-Qi-Yiu\" kind=\"show\" id=\"1qd-Sc-1yW\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"XnQ-PR-MXs\" rowHeight=\"50\" style=\"IBUITableViewCellStyleDefault\" id=\"aKl-hm-GqD\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1486\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"aKl-hm-GqD\" id=\"Gtp-OD-9bp\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Popover\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"XnQ-PR-MXs\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"0.0\" width=\"355.5\" height=\"50\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"Vsn-gv-yTQ\" kind=\"show\" identifier=\"PopoverViewController\" id=\"Zbp-gc-klV\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"Gc8-g0-sng\" rowHeight=\"50\" style=\"IBUITableViewCellStyleDefault\" id=\"eWq-aT-eOT\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1536\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"eWq-aT-eOT\" id=\"VKn-xK-daJ\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"UIPageViewController\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"Gc8-g0-sng\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"0.0\" width=\"355.5\" height=\"50\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"f5j-Ik-3WM\" kind=\"show\" id=\"8bd-ak-q5z\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"J7u-Nk-Qlg\" rowHeight=\"50\" style=\"IBUITableViewCellStyleDefault\" id=\"Set-Qd-9WY\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1586\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Set-Qd-9WY\" id=\"TXK-nb-0nN\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Test Screen\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"J7u-Nk-Qlg\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"0.0\" width=\"355.5\" height=\"50\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"bAz-FG-cZz\" kind=\"show\" id=\"Pzx-WA-COe\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                            <tableViewSection headerTitle=\"Test Cases\" id=\"bNl-bw-4IZ\">\n                                <cells>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"WIY-wJ-lgq\" detailTextLabel=\"5Sl-ZO-6OH\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"quf-zQ-cpd\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1692\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"quf-zQ-cpd\" id=\"PTi-Jj-0ZG\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Text Selection\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"WIY-wJ-lgq\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"105\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"#56\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"5Sl-ZO-6OH\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"23\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333333333331\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"2vS-eP-Rai\" kind=\"show\" id=\"CLa-5P-QkY\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"2kV-kD-vj0\" detailTextLabel=\"2VG-Md-lPJ\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"8DE-le-O1o\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1742\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"8DE-le-O1o\" id=\"oql-uu-pnO\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"Autofill Password\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"2kV-kD-vj0\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"128.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"#1763, #1888\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"2VG-Md-lPJ\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"78\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"RVx-hs-dhD\" kind=\"show\" id=\"YeC-ne-3VF\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"ywL-TH-rBQ\" detailTextLabel=\"GI6-zu-4dp\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"FMV-iY-37k\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1792\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"FMV-iY-37k\" id=\"ZcV-pO-sru\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"SwiftUI\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"ywL-TH-rBQ\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"54\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" text=\"#1606\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"GI6-zu-4dp\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"36\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"46b-VS-dd5\" kind=\"show\" id=\"6bB-7b-W4x\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"jFn-dp-SXx\" detailTextLabel=\"3Fz-GA-w5e\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"ySU-HG-ED7\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1842\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"ySU-HG-ED7\" id=\"zGM-Ot-Fne\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"reloadLayoutIfNeeded positioning\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"jFn-dp-SXx\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"251.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"#1892\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"3Fz-GA-w5e\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"36\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"quw-3S-SMb\" kind=\"show\" id=\"MVj-wO-OGP\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"qsH-5f-F3x\" detailTextLabel=\"0qp-T9-839\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"tCR-ud-fMV\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1892\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"tCR-ud-fMV\" id=\"Kgy-lT-RrG\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"edgesForExtendedLayout = .all\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"qsH-5f-F3x\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"230\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"#1935\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"0qp-T9-839\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"36\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"a70-aq-iDB\" kind=\"show\" id=\"IJt-tq-H3n\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"F2W-NR-geP\" detailTextLabel=\"PDb-oQ-b5l\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"PCg-m5-7yp\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1942\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"PCg-m5-7yp\" id=\"wvz-7f-AcN\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"Non Scrollable TextView\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"F2W-NR-geP\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"179.5\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"#1979\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"PDb-oQ-b5l\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"35\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"mvp-tr-78k\" kind=\"show\" id=\"I0P-wa-CQs\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" textLabel=\"D4O-ad-jfW\" detailTextLabel=\"ChK-x8-G8e\" rowHeight=\"50\" style=\"IBUITableViewCellStyleSubtitle\" id=\"Hox-Gr-7k4\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1908.5\" width=\"414\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Hox-Gr-7k4\" id=\"pr1-kM-yUM\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"383.5\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"enableMode = .disable\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"D4O-ad-jfW\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"8\" width=\"168\" height=\"19.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                                    <nil key=\"textColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" multipleTouchEnabled=\"YES\" contentMode=\"left\" ambiguous=\"YES\" text=\"#2000\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"ChK-x8-G8e\">\n                                                    <rect key=\"frame\" x=\"20\" y=\"27.5\" width=\"37.5\" height=\"14.5\"/>\n                                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                                    <color key=\"textColor\" white=\"0.33333333329999998\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                        </tableViewCellContentView>\n                                        <connections>\n                                            <segue destination=\"pt9-Ql-j9D\" kind=\"show\" id=\"IHh-Wg-vxb\"/>\n                                        </connections>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                        </sections>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"hc7-47-3EI\" id=\"9kn-3d-QPu\"/>\n                            <outlet property=\"delegate\" destination=\"hc7-47-3EI\" id=\"R9r-gn-wDZ\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"IQKeyboardManagerSwift\" id=\"tP6-QK-Jl8\">\n                        <barButtonItem key=\"leftBarButtonItem\" systemItem=\"action\" id=\"2aL-6Q-w1Q\">\n                            <connections>\n                                <action selector=\"shareClicked:\" destination=\"hc7-47-3EI\" id=\"TrM-O2-jce\"/>\n                            </connections>\n                        </barButtonItem>\n                    </navigationItem>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"AFK-iz-gCV\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"5007.1999999999998\" y=\"216.34182908545728\"/>\n        </scene>\n        <!--Navigation Controller-->\n        <scene sceneID=\"d5l-vV-OYi\">\n            <objects>\n                <navigationController automaticallyAdjustsScrollViewInsets=\"NO\" id=\"iFF-SZ-t3m\" customClass=\"NavigationController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <toolbarItems/>\n                    <navigationBar key=\"navigationBar\" contentMode=\"scaleToFill\" largeTitles=\"YES\" id=\"sxS-VT-UFI\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"96\" width=\"414\" height=\"106\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <color key=\"barTintColor\" systemColor=\"systemBlueColor\"/>\n                    </navigationBar>\n                    <nil name=\"viewControllers\"/>\n                    <connections>\n                        <segue destination=\"hc7-47-3EI\" kind=\"relationship\" relationship=\"rootViewController\" id=\"bs1-IW-fUh\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"MbP-Qp-qTJ\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"4068\" y=\"216.34182908545728\"/>\n        </scene>\n        <!--TextFieldViewController-->\n        <scene sceneID=\"dXj-u2-VPl\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"General\" referencedIdentifier=\"TextFieldViewController\" id=\"KZJ-ih-4D1\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dJd-VZ-7EW\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6294\" y=\"-798\"/>\n        </scene>\n        <!--ManualToolbarViewController-->\n        <scene sceneID=\"YzD-PX-z0z\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"General\" referencedIdentifier=\"ManualToolbarViewController\" id=\"WgA-YP-cxW\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"opS-rx-zmB\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6323\" y=\"-737\"/>\n        </scene>\n        <!--NavigationBarViewController-->\n        <scene sceneID=\"iTk-sh-3ab\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"ScrollView\" referencedIdentifier=\"NavigationBarViewController\" id=\"Ms3-hB-G13\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"cxc-JV-Fd5\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6318\" y=\"-770\"/>\n        </scene>\n        <!--CustomViewController-->\n        <scene sceneID=\"EQM-2b-bTk\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"CustomViewController\" id=\"nmC-1p-Jwt\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"ACZ-SJ-usF\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6290\" y=\"-707\"/>\n        </scene>\n        <!--RefreshLayoutViewController-->\n        <scene sceneID=\"3vu-u0-0Rp\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"RefreshLayoutViewController\" id=\"5CX-b7-6hI\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"ZGf-J3-aZ2\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6318\" y=\"-607\"/>\n        </scene>\n        <!--TextViewSpecialCaseViewController-->\n        <scene sceneID=\"zQF-nj-VQz\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"General\" referencedIdentifier=\"TextViewSpecialCaseViewController\" id=\"Jvz-H7-DbK\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Qay-3e-MJ1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6351\" y=\"-371\"/>\n        </scene>\n        <!--ScrollViewController-->\n        <scene sceneID=\"tzv-O9-Ypv\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"ScrollView\" referencedIdentifier=\"ScrollViewController\" id=\"KBE-H2-1jZ\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"k2l-Yb-oAe\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6276\" y=\"-336\"/>\n        </scene>\n        <!--ExampleTableViewController-->\n        <scene sceneID=\"d6z-MC-4en\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"ScrollView\" referencedIdentifier=\"ExampleTableViewController\" id=\"L4D-AU-yn1\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"kJU-ah-Vv5\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6314\" y=\"-300\"/>\n        </scene>\n        <!--TableViewContainerViewController-->\n        <scene sceneID=\"27e-jC-Yoe\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"ScrollView\" referencedIdentifier=\"TableViewContainerViewController\" id=\"fTs-AT-oCq\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"J6T-gh-amz\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6343\" y=\"-267\"/>\n        </scene>\n        <!--TableViewController-->\n        <scene sceneID=\"hrV-AT-jac\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"ScrollView\" referencedIdentifier=\"TableViewController\" id=\"toN-3j-Zvf\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"JMD-AO-lyy\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6271\" y=\"-234\"/>\n        </scene>\n        <!--CollectionViewDemoController-->\n        <scene sceneID=\"W7t-uW-8lK\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"ScrollView\" referencedIdentifier=\"CollectionViewDemoController\" id=\"nH6-xd-Gey\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"GrK-fa-MTc\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6318\" y=\"-197\"/>\n        </scene>\n        <!--TextViewController-->\n        <scene sceneID=\"yTF-qr-qN6\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"FullScreenControllers\" referencedIdentifier=\"TextViewController\" id=\"Ux9-L6-crs\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"I0I-tJ-boa\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6291\" y=\"49\"/>\n        </scene>\n        <!--SpecialCaseViewController-->\n        <scene sceneID=\"hfj-ZO-5U9\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"SpecialCaseViewController\" id=\"CHc-pX-jPW\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"DFK-MF-b7e\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6309\" y=\"204\"/>\n        </scene>\n        <!--StackViewController-->\n        <scene sceneID=\"vUn-kY-Yiq\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"StackViewController\" id=\"gKm-0E-HQY\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"doy-mQ-Gv3\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6278\" y=\"244\"/>\n        </scene>\n        <!--WebViewController-->\n        <scene sceneID=\"TJa-4c-dCq\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"WebViewController\" id=\"BSS-M6-XQn\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"fft-Sl-rcd\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6272\" y=\"282\"/>\n        </scene>\n        <!--TextSelectionViewController-->\n        <scene sceneID=\"Nqt-vu-od8\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"TestCases\" referencedIdentifier=\"TextSelectionViewController\" id=\"2vS-eP-Rai\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"l3l-B9-euS\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"kMf-Vc-36w\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6281\" y=\"597\"/>\n        </scene>\n        <!--SearchViewController-->\n        <scene sceneID=\"2CN-KP-H3t\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"FullScreenControllers\" referencedIdentifier=\"SearchViewController\" id=\"Mxi-Qi-Yiu\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Qy5-Un-1CP\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6282\" y=\"356\"/>\n        </scene>\n        <!--PopoverViewController-->\n        <scene sceneID=\"9mV-Oa-czZ\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"PopoverViewController\" id=\"Vsn-gv-yTQ\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"gLb-68-F8x\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6288\" y=\"395\"/>\n        </scene>\n        <!--PageViewController-->\n        <scene sceneID=\"IAn-uY-Ruf\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"PageViewController\" id=\"f5j-Ik-3WM\" sceneMemberID=\"viewController\"/>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Okn-ex-GfE\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6269\" y=\"432\"/>\n        </scene>\n        <!--TestViewController-->\n        <scene sceneID=\"yd1-W6-gSt\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"SpecialCase\" referencedIdentifier=\"TestViewController\" id=\"bAz-FG-cZz\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"MON-wV-ToV\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Fdc-HX-d4p\" userLabel=\"First Responder\" customClass=\"UIResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6269\" y=\"475\"/>\n        </scene>\n        <!--AutofillPasswordViewController-->\n        <scene sceneID=\"AVe-8p-QNv\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"TestCases\" referencedIdentifier=\"AutofillPasswordViewController\" id=\"RVx-hs-dhD\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"eQc-FM-NEQ\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"MoR-ik-jEs\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6264\" y=\"692\"/>\n        </scene>\n        <!--ReloadLayout1892ViewController-->\n        <scene sceneID=\"cRv-Bk-2gS\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"TestCases\" referencedIdentifier=\"ReloadLayout1892ViewController\" id=\"quw-3S-SMb\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"uAE-EA-Ogs\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"7u8-kc-Ivf\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6275\" y=\"777\"/>\n        </scene>\n        <!--SafeAreaViewController-->\n        <scene sceneID=\"JFc-Je-BdN\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"General\" referencedIdentifier=\"SafeAreaViewController\" id=\"ndP-wQ-Hwk\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"4gN-Qb-tLl\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"cxl-Sn-ITI\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6322\" y=\"-548\"/>\n        </scene>\n        <!--EdgesForExtendedLayoutViewController-->\n        <scene sceneID=\"z3F-nH-R2c\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"TestCases\" referencedIdentifier=\"EdgesForExtendedLayoutViewController\" id=\"a70-aq-iDB\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"I8c-Kd-hwx\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"lX7-X6-NBz\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6275\" y=\"824\"/>\n        </scene>\n        <!--NonScrollTextView1979ViewController-->\n        <scene sceneID=\"0zd-Y3-xbi\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"TestCases\" referencedIdentifier=\"NonScrollTextView1979ViewController\" id=\"mvp-tr-78k\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"nJ5-Qo-I94\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Qmy-Eh-gbu\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6278\" y=\"867\"/>\n        </scene>\n        <!--Text Field Hosting View Controller-->\n        <scene sceneID=\"EQo-HB-kgl\">\n            <objects>\n                <hostingController id=\"46b-VS-dd5\" customClass=\"TextFieldHostingViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"fYe-oW-x9I\"/>\n                </hostingController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"B6d-hl-t59\" userLabel=\"First Responder\" customClass=\"UIResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"5006\" y=\"988\"/>\n        </scene>\n        <!--EnableMode2000ViewController-->\n        <scene sceneID=\"g3A-wi-qxZ\">\n            <objects>\n                <viewControllerPlaceholder storyboardName=\"TestCases\" referencedIdentifier=\"EnableMode2000ViewController\" id=\"pt9-Ql-j9D\" sceneMemberID=\"viewController\">\n                    <navigationItem key=\"navigationItem\" id=\"XrG-kR-jrn\"/>\n                </viewControllerPlaceholder>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"qwK-Wl-5E7\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"6270\" y=\"920\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <systemColor name=\"groupTableViewBackgroundColor\">\n            <color red=\"0.94901960784313721\" green=\"0.94901960784313721\" blue=\"0.96862745098039216\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemBlueColor\">\n            <color red=\"0.0\" green=\"0.47843137250000001\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/ScrollView.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"24127\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\">\n    <device id=\"retina6_1\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"24063\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--UITableView in Container-->\n        <scene sceneID=\"Wk6-cH-l7E\">\n            <objects>\n                <viewController storyboardIdentifier=\"TableViewContainerViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"fq7-4A-8UN\" customClass=\"TableViewContainerViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"oJ4-BJ-1kW\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <containerView opaque=\"NO\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Xls-wd-svL\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                                <connections>\n                                    <segue destination=\"M0Y-Zn-cGg\" kind=\"embed\" id=\"ob1-5O-TFR\"/>\n                                </connections>\n                            </containerView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"XrV-MN-3tv\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"Xls-wd-svL\" firstAttribute=\"top\" secondItem=\"oJ4-BJ-1kW\" secondAttribute=\"top\" id=\"UeN-Ax-Grs\"/>\n                            <constraint firstItem=\"XrV-MN-3tv\" firstAttribute=\"trailing\" secondItem=\"Xls-wd-svL\" secondAttribute=\"trailing\" id=\"ggH-Rh-ghE\"/>\n                            <constraint firstItem=\"Xls-wd-svL\" firstAttribute=\"leading\" secondItem=\"XrV-MN-3tv\" secondAttribute=\"leading\" id=\"mGZ-WW-erF\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"Xls-wd-svL\" secondAttribute=\"bottom\" id=\"qjg-ua-k7J\"/>\n                        </constraints>\n                    </view>\n                    <extendedEdge key=\"edgesForExtendedLayout\"/>\n                    <navigationItem key=\"navigationItem\" title=\"UITableView in Container\" id=\"f0D-mr-Rzc\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"a3q-Lh-gPg\"/>\n                    </navigationItem>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"tUL-G0-Nth\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"332\" y=\"217\"/>\n        </scene>\n        <!-- Container-->\n        <scene sceneID=\"Md9-V5-6d7\">\n            <objects>\n                <viewController storyboardIdentifier=\"TableViewInContainerViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"M0Y-Zn-cGg\" customClass=\"TableViewInContainerViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"0RD-44-m2b\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" keyboardDismissMode=\"interactive\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"50\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"va8-7o-UYk\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                                <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <view key=\"tableHeaderView\" contentMode=\"scaleToFill\" id=\"ABJ-Ep-lmG\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"36\"/>\n                                    <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" flexibleMaxY=\"YES\"/>\n                                    <subviews>\n                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Try editing the last cell.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"RIL-5e-TSk\">\n                                            <rect key=\"frame\" x=\"119\" y=\"8\" width=\"176\" height=\"20.5\"/>\n                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                            <nil key=\"highlightedColor\"/>\n                                        </label>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"RIL-5e-TSk\" firstAttribute=\"centerY\" secondItem=\"ABJ-Ep-lmG\" secondAttribute=\"centerY\" id=\"01G-Xx-Qge\"/>\n                                        <constraint firstItem=\"RIL-5e-TSk\" firstAttribute=\"centerX\" secondItem=\"ABJ-Ep-lmG\" secondAttribute=\"centerX\" id=\"NP3-Py-oxV\"/>\n                                    </constraints>\n                                </view>\n                                <sections/>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"M0Y-Zn-cGg\" id=\"9At-uy-h5n\"/>\n                                    <outlet property=\"delegate\" destination=\"M0Y-Zn-cGg\" id=\"pah-O2-hdU\"/>\n                                </connections>\n                            </tableView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"iHr-P0-Hfi\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"va8-7o-UYk\" firstAttribute=\"leading\" secondItem=\"iHr-P0-Hfi\" secondAttribute=\"leading\" id=\"3CA-aL-Eeo\"/>\n                            <constraint firstItem=\"va8-7o-UYk\" firstAttribute=\"top\" secondItem=\"0RD-44-m2b\" secondAttribute=\"top\" id=\"5BG-dO-Qi5\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"va8-7o-UYk\" secondAttribute=\"bottom\" id=\"EaZ-qL-K3g\"/>\n                            <constraint firstItem=\"iHr-P0-Hfi\" firstAttribute=\"trailing\" secondItem=\"va8-7o-UYk\" secondAttribute=\"trailing\" id=\"msU-s4-piP\"/>\n                        </constraints>\n                    </view>\n                    <extendedEdge key=\"edgesForExtendedLayout\"/>\n                    <navigationItem key=\"navigationItem\" id=\"p1b-o6-Cdc\">\n                        <string key=\"title\" base64-UTF8=\"YES\">\nEENvbnRhaW5lcg\n</string>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"tableView\" destination=\"va8-7o-UYk\" id=\"uiJ-93-hJc\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"csg-dz-Bkz\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"332\" y=\"972\"/>\n        </scene>\n        <!--UITableView Example-->\n        <scene sceneID=\"7Nm-04-fgV\">\n            <objects>\n                <viewController storyboardIdentifier=\"ExampleTableViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"TgE-bl-CyE\" customClass=\"ExampleTableViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"dgf-M8-7qw\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"X4a-hH-RtK\">\n                                <rect key=\"frame\" x=\"5\" y=\"101\" width=\"199.5\" height=\"358.5\"/>\n                                <color key=\"backgroundColor\" red=\"1\" green=\"0.99189699983111979\" blue=\"0.64436433270429561\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <sections/>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"TgE-bl-CyE\" id=\"W0x-wX-OJp\"/>\n                                    <outlet property=\"delegate\" destination=\"TgE-bl-CyE\" id=\"9GM-vX-JfK\"/>\n                                </connections>\n                            </tableView>\n                            <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tMN-jF-Ycr\">\n                                <rect key=\"frame\" x=\"209.5\" y=\"101\" width=\"199.5\" height=\"358.5\"/>\n                                <color key=\"backgroundColor\" red=\"0.73359062758224969\" green=\"0.9668053251231693\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <sections/>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"TgE-bl-CyE\" id=\"ohs-GP-glQ\"/>\n                                    <outlet property=\"delegate\" destination=\"TgE-bl-CyE\" id=\"4hR-Co-sjf\"/>\n                                </connections>\n                            </tableView>\n                            <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Nee-mr-8cC\">\n                                <rect key=\"frame\" x=\"5\" y=\"464.5\" width=\"404\" height=\"358.5\"/>\n                                <color key=\"backgroundColor\" red=\"0.90226797056185393\" green=\"0.77687381776517395\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <sections/>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"TgE-bl-CyE\" id=\"SrI-hY-KUs\"/>\n                                    <outlet property=\"delegate\" destination=\"TgE-bl-CyE\" id=\"eYw-Ii-wit\"/>\n                                </connections>\n                            </tableView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"efJ-aY-2vU\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"tMN-jF-Ycr\" firstAttribute=\"bottom\" secondItem=\"X4a-hH-RtK\" secondAttribute=\"bottom\" id=\"1yE-1X-wSZ\"/>\n                            <constraint firstItem=\"Nee-mr-8cC\" firstAttribute=\"height\" secondItem=\"X4a-hH-RtK\" secondAttribute=\"height\" id=\"77x-79-xdb\"/>\n                            <constraint firstItem=\"tMN-jF-Ycr\" firstAttribute=\"top\" secondItem=\"X4a-hH-RtK\" secondAttribute=\"top\" id=\"84X-Jt-OGg\"/>\n                            <constraint firstItem=\"Nee-mr-8cC\" firstAttribute=\"leading\" secondItem=\"efJ-aY-2vU\" secondAttribute=\"leading\" constant=\"5\" id=\"KdX-0K-wcl\"/>\n                            <constraint firstItem=\"X4a-hH-RtK\" firstAttribute=\"top\" secondItem=\"efJ-aY-2vU\" secondAttribute=\"top\" constant=\"5\" id=\"OC7-ey-AaP\"/>\n                            <constraint firstItem=\"X4a-hH-RtK\" firstAttribute=\"leading\" secondItem=\"efJ-aY-2vU\" secondAttribute=\"leading\" constant=\"5\" id=\"Qot-Wd-GdJ\"/>\n                            <constraint firstItem=\"tMN-jF-Ycr\" firstAttribute=\"leading\" secondItem=\"X4a-hH-RtK\" secondAttribute=\"trailing\" constant=\"5\" id=\"W4m-1n-o3C\"/>\n                            <constraint firstItem=\"Nee-mr-8cC\" firstAttribute=\"top\" secondItem=\"X4a-hH-RtK\" secondAttribute=\"bottom\" constant=\"5\" id=\"b6u-pH-jEJ\"/>\n                            <constraint firstItem=\"efJ-aY-2vU\" firstAttribute=\"trailing\" secondItem=\"Nee-mr-8cC\" secondAttribute=\"trailing\" constant=\"5\" id=\"bFc-dF-gBC\"/>\n                            <constraint firstItem=\"efJ-aY-2vU\" firstAttribute=\"trailing\" secondItem=\"tMN-jF-Ycr\" secondAttribute=\"trailing\" constant=\"5\" id=\"iFO-wV-3jR\"/>\n                            <constraint firstItem=\"efJ-aY-2vU\" firstAttribute=\"bottom\" secondItem=\"Nee-mr-8cC\" secondAttribute=\"bottom\" constant=\"5\" id=\"wW4-TY-Gtr\"/>\n                            <constraint firstItem=\"tMN-jF-Ycr\" firstAttribute=\"width\" secondItem=\"X4a-hH-RtK\" secondAttribute=\"width\" id=\"zpv-S1-Sg2\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"UITableView Example\" id=\"ZVF-w5-7zs\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"aHF-H7-Kng\"/>\n                    </navigationItem>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"EMe-b3-5Es\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-359\" y=\"216\"/>\n        </scene>\n        <!--UIScrollView Example-->\n        <scene sceneID=\"ipE-dg-0Gf\">\n            <objects>\n                <viewController storyboardIdentifier=\"ScrollViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"0gz-x6-ylR\" customClass=\"ScrollViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"u7r-Hn-wmF\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"grouped\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"18\" sectionFooterHeight=\"18\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kBd-DW-TbG\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"101\" width=\"207\" height=\"314\"/>\n                                <color key=\"backgroundColor\" systemColor=\"groupTableViewBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"0gz-x6-ylR\" id=\"vRm-8T-Kph\"/>\n                                    <outlet property=\"delegate\" destination=\"0gz-x6-ylR\" id=\"g0o-5y-c3c\"/>\n                                </connections>\n                            </tableView>\n                            <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XjZ-UX-qkM\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"420\" width=\"207\" height=\"314\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uag-N1-p2r\">\n                                        <rect key=\"frame\" x=\"5\" y=\"5\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"L6o-p5-HuA\">\n                                        <rect key=\"frame\" x=\"5\" y=\"44\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uMN-LT-vmb\">\n                                        <rect key=\"frame\" x=\"5\" y=\"83\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2Rg-nd-8Px\">\n                                        <rect key=\"frame\" x=\"5\" y=\"122\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"PZm-ce-zZh\">\n                                        <rect key=\"frame\" x=\"5\" y=\"161\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bH7-pj-fHH\">\n                                        <rect key=\"frame\" x=\"5\" y=\"200\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Qjf-bg-EH0\">\n                                        <rect key=\"frame\" x=\"5\" y=\"239\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mZI-5y-2a1\">\n                                        <rect key=\"frame\" x=\"5\" y=\"278\" width=\"197\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"D1D2D9\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" constant=\"5\" id=\"0vi-iD-xiH\"/>\n                                    <constraint firstItem=\"PZm-ce-zZh\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"3JH-AU-Ea5\"/>\n                                    <constraint firstItem=\"Qjf-bg-EH0\" firstAttribute=\"top\" secondItem=\"bH7-pj-fHH\" secondAttribute=\"bottom\" constant=\"5\" id=\"3cz-Ex-1hb\"/>\n                                    <constraint firstItem=\"mZI-5y-2a1\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"6BP-JG-TG5\"/>\n                                    <constraint firstItem=\"2Rg-nd-8Px\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"6nO-20-Txp\"/>\n                                    <constraint firstItem=\"L6o-p5-HuA\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"BtG-Ze-UM9\"/>\n                                    <constraint firstItem=\"mZI-5y-2a1\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"D6D-t7-r3E\"/>\n                                    <constraint firstItem=\"uMN-LT-vmb\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"K1s-hk-2Ly\"/>\n                                    <constraint firstItem=\"L6o-p5-HuA\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"Kki-VQ-Tdy\"/>\n                                    <constraint firstItem=\"2Rg-nd-8Px\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"Ljc-bv-biG\"/>\n                                    <constraint firstItem=\"mZI-5y-2a1\" firstAttribute=\"top\" secondItem=\"Qjf-bg-EH0\" secondAttribute=\"bottom\" constant=\"5\" id=\"MxW-g7-QR5\"/>\n                                    <constraint firstItem=\"uag-N1-p2r\" firstAttribute=\"top\" secondItem=\"XjZ-UX-qkM\" secondAttribute=\"top\" constant=\"5\" id=\"OQO-Un-1W5\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"mZI-5y-2a1\" secondAttribute=\"bottom\" constant=\"5\" id=\"Tuc-n4-MfD\"/>\n                                    <constraint firstItem=\"bH7-pj-fHH\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"V88-7f-8VA\"/>\n                                    <constraint firstItem=\"uMN-LT-vmb\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"VCr-Qy-Odt\"/>\n                                    <constraint firstItem=\"PZm-ce-zZh\" firstAttribute=\"top\" secondItem=\"2Rg-nd-8Px\" secondAttribute=\"bottom\" constant=\"5\" id=\"Yyn-qt-QGX\"/>\n                                    <constraint firstItem=\"uag-N1-p2r\" firstAttribute=\"leading\" secondItem=\"XjZ-UX-qkM\" secondAttribute=\"leading\" constant=\"5\" id=\"bQA-Sz-qX1\"/>\n                                    <constraint firstItem=\"2Rg-nd-8Px\" firstAttribute=\"top\" secondItem=\"uMN-LT-vmb\" secondAttribute=\"bottom\" constant=\"5\" id=\"bsu-Y0-fT8\"/>\n                                    <constraint firstItem=\"bH7-pj-fHH\" firstAttribute=\"top\" secondItem=\"PZm-ce-zZh\" secondAttribute=\"bottom\" constant=\"5\" id=\"iXb-0G-VWA\"/>\n                                    <constraint firstItem=\"uMN-LT-vmb\" firstAttribute=\"top\" secondItem=\"L6o-p5-HuA\" secondAttribute=\"bottom\" constant=\"5\" id=\"mOb-hN-v3e\"/>\n                                    <constraint firstItem=\"Qjf-bg-EH0\" firstAttribute=\"leading\" secondItem=\"uag-N1-p2r\" secondAttribute=\"leading\" id=\"nx3-JE-DJy\"/>\n                                    <constraint firstItem=\"bH7-pj-fHH\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"ppR-Lc-FLN\"/>\n                                    <constraint firstItem=\"L6o-p5-HuA\" firstAttribute=\"top\" secondItem=\"uag-N1-p2r\" secondAttribute=\"bottom\" constant=\"5\" id=\"rD9-lh-Toi\"/>\n                                    <constraint firstItem=\"uag-N1-p2r\" firstAttribute=\"width\" secondItem=\"XjZ-UX-qkM\" secondAttribute=\"width\" constant=\"-10\" id=\"ryy-rU-gTz\"/>\n                                    <constraint firstItem=\"Qjf-bg-EH0\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"toA-qu-AAu\"/>\n                                    <constraint firstItem=\"PZm-ce-zZh\" firstAttribute=\"trailing\" secondItem=\"uag-N1-p2r\" secondAttribute=\"trailing\" id=\"yfp-ft-bzB\"/>\n                                </constraints>\n                            </scrollView>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XOB-Kg-cEB\">\n                                <rect key=\"frame\" x=\"207\" y=\"101\" width=\"207\" height=\"34\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                            </textField>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" text=\"TextView1\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pMi-TP-eI0\">\n                                <rect key=\"frame\" x=\"207\" y=\"145\" width=\"207\" height=\"30\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"height\" constant=\"30\" id=\"pF4-va-Knr\"/>\n                                </constraints>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"c1U-0a-Jva\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"744\" width=\"207\" height=\"34\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                            </textField>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" text=\"TextView2\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Qlj-B6-NJn\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"788\" width=\"207\" height=\"30\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"height\" constant=\"30\" id=\"T64-Mt-a5i\"/>\n                                </constraints>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CVd-yq-x5A\">\n                                <rect key=\"frame\" x=\"207\" y=\"185\" width=\"207\" height=\"633\"/>\n                                <subviews>\n                                    <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"1\" sectionFooterHeight=\"1\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dAh-8f-IR7\">\n                                        <rect key=\"frame\" x=\"5\" y=\"5\" width=\"197\" height=\"306.5\"/>\n                                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                        <connections>\n                                            <outlet property=\"dataSource\" destination=\"0gz-x6-ylR\" id=\"VYo-KJ-SCM\"/>\n                                            <outlet property=\"delegate\" destination=\"0gz-x6-ylR\" id=\"bPJ-qx-DqO\"/>\n                                        </connections>\n                                    </tableView>\n                                    <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"l2M-f4-MfB\">\n                                        <rect key=\"frame\" x=\"5\" y=\"321.5\" width=\"197\" height=\"306.5\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2sk-dl-B16\">\n                                                <rect key=\"frame\" x=\"5\" y=\"5\" width=\"187\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4lr-4X-c8Z\">\n                                                <rect key=\"frame\" x=\"5\" y=\"44\" width=\"187\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6LN-Mk-XGM\">\n                                                <rect key=\"frame\" x=\"5\" y=\"83\" width=\"187\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"1Zq-Do-PjG\">\n                                                <rect key=\"frame\" x=\"5\" y=\"122\" width=\"187\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4GV-6b-cRz\">\n                                                <rect key=\"frame\" x=\"5\" y=\"161\" width=\"187\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"13u-My-0SD\">\n                                                <rect key=\"frame\" x=\"5\" y=\"200\" width=\"187\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"D1D2D9\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"6LN-Mk-XGM\" firstAttribute=\"top\" secondItem=\"4lr-4X-c8Z\" secondAttribute=\"bottom\" constant=\"5\" id=\"2FZ-p6-Add\"/>\n                                            <constraint firstItem=\"4GV-6b-cRz\" firstAttribute=\"top\" secondItem=\"1Zq-Do-PjG\" secondAttribute=\"bottom\" constant=\"5\" id=\"3Ul-MM-AP9\"/>\n                                            <constraint firstItem=\"6LN-Mk-XGM\" firstAttribute=\"trailing\" secondItem=\"2sk-dl-B16\" secondAttribute=\"trailing\" id=\"9H8-fp-nma\"/>\n                                            <constraint firstItem=\"13u-My-0SD\" firstAttribute=\"top\" secondItem=\"4GV-6b-cRz\" secondAttribute=\"bottom\" constant=\"5\" id=\"9vf-mY-8mH\"/>\n                                            <constraint firstItem=\"4lr-4X-c8Z\" firstAttribute=\"trailing\" secondItem=\"2sk-dl-B16\" secondAttribute=\"trailing\" id=\"HF0-Sn-upn\"/>\n                                            <constraint firstItem=\"2sk-dl-B16\" firstAttribute=\"leading\" secondItem=\"l2M-f4-MfB\" secondAttribute=\"leading\" constant=\"5\" id=\"PGA-qg-KUm\"/>\n                                            <constraint firstAttribute=\"bottom\" secondItem=\"13u-My-0SD\" secondAttribute=\"bottom\" constant=\"5\" id=\"QUR-X9-VNb\"/>\n                                            <constraint firstItem=\"13u-My-0SD\" firstAttribute=\"leading\" secondItem=\"2sk-dl-B16\" secondAttribute=\"leading\" id=\"SCN-js-Hn0\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"2sk-dl-B16\" secondAttribute=\"trailing\" constant=\"5\" id=\"Tet-Ou-iHx\"/>\n                                            <constraint firstItem=\"1Zq-Do-PjG\" firstAttribute=\"top\" secondItem=\"6LN-Mk-XGM\" secondAttribute=\"bottom\" constant=\"5\" id=\"ZUA-3C-PUs\"/>\n                                            <constraint firstItem=\"4GV-6b-cRz\" firstAttribute=\"leading\" secondItem=\"2sk-dl-B16\" secondAttribute=\"leading\" id=\"cGu-1Y-O63\"/>\n                                            <constraint firstItem=\"13u-My-0SD\" firstAttribute=\"trailing\" secondItem=\"2sk-dl-B16\" secondAttribute=\"trailing\" id=\"dCz-iO-eEZ\"/>\n                                            <constraint firstItem=\"2sk-dl-B16\" firstAttribute=\"top\" secondItem=\"l2M-f4-MfB\" secondAttribute=\"top\" constant=\"5\" id=\"eQp-mi-yFg\"/>\n                                            <constraint firstItem=\"1Zq-Do-PjG\" firstAttribute=\"leading\" secondItem=\"2sk-dl-B16\" secondAttribute=\"leading\" id=\"fjg-Qc-fxz\"/>\n                                            <constraint firstItem=\"4lr-4X-c8Z\" firstAttribute=\"leading\" secondItem=\"2sk-dl-B16\" secondAttribute=\"leading\" id=\"i10-qB-F2k\"/>\n                                            <constraint firstItem=\"4GV-6b-cRz\" firstAttribute=\"trailing\" secondItem=\"2sk-dl-B16\" secondAttribute=\"trailing\" id=\"iZp-Kb-dhI\"/>\n                                            <constraint firstItem=\"6LN-Mk-XGM\" firstAttribute=\"leading\" secondItem=\"2sk-dl-B16\" secondAttribute=\"leading\" id=\"kaa-kg-8W9\"/>\n                                            <constraint firstItem=\"2sk-dl-B16\" firstAttribute=\"width\" secondItem=\"l2M-f4-MfB\" secondAttribute=\"width\" constant=\"-10\" id=\"lRc-fb-SuZ\"/>\n                                            <constraint firstItem=\"1Zq-Do-PjG\" firstAttribute=\"trailing\" secondItem=\"2sk-dl-B16\" secondAttribute=\"trailing\" id=\"suG-fA-9vd\"/>\n                                            <constraint firstItem=\"4lr-4X-c8Z\" firstAttribute=\"top\" secondItem=\"2sk-dl-B16\" secondAttribute=\"bottom\" constant=\"5\" id=\"vhI-p7-S01\"/>\n                                        </constraints>\n                                    </scrollView>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"A1A1A1\"/>\n                                <constraints>\n                                    <constraint firstItem=\"l2M-f4-MfB\" firstAttribute=\"trailing\" secondItem=\"dAh-8f-IR7\" secondAttribute=\"trailing\" id=\"8w8-If-d33\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"l2M-f4-MfB\" secondAttribute=\"bottom\" constant=\"5\" id=\"C4v-kz-Bdg\"/>\n                                    <constraint firstItem=\"dAh-8f-IR7\" firstAttribute=\"width\" secondItem=\"CVd-yq-x5A\" secondAttribute=\"width\" constant=\"-10\" id=\"SEp-Bs-24y\"/>\n                                    <constraint firstItem=\"dAh-8f-IR7\" firstAttribute=\"bottom\" secondItem=\"CVd-yq-x5A\" secondAttribute=\"centerY\" constant=\"-5\" id=\"SJU-oo-w59\"/>\n                                    <constraint firstItem=\"dAh-8f-IR7\" firstAttribute=\"top\" secondItem=\"CVd-yq-x5A\" secondAttribute=\"top\" constant=\"5\" id=\"SNB-J2-f3T\"/>\n                                    <constraint firstItem=\"l2M-f4-MfB\" firstAttribute=\"height\" secondItem=\"dAh-8f-IR7\" secondAttribute=\"height\" id=\"cEK-wr-tFA\"/>\n                                    <constraint firstItem=\"l2M-f4-MfB\" firstAttribute=\"top\" secondItem=\"dAh-8f-IR7\" secondAttribute=\"bottom\" constant=\"10\" id=\"dmQ-aL-v8F\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"dAh-8f-IR7\" secondAttribute=\"trailing\" constant=\"5\" id=\"ecj-bH-2Yq\"/>\n                                    <constraint firstItem=\"dAh-8f-IR7\" firstAttribute=\"leading\" secondItem=\"CVd-yq-x5A\" secondAttribute=\"leading\" constant=\"5\" id=\"hea-TJ-3dL\"/>\n                                    <constraint firstItem=\"l2M-f4-MfB\" firstAttribute=\"leading\" secondItem=\"dAh-8f-IR7\" secondAttribute=\"leading\" id=\"pnc-Rs-lbZ\"/>\n                                </constraints>\n                            </scrollView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"reu-We-tvc\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"XjZ-UX-qkM\" firstAttribute=\"height\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"height\" id=\"0cl-ZB-BJv\"/>\n                            <constraint firstItem=\"c1U-0a-Jva\" firstAttribute=\"top\" secondItem=\"XjZ-UX-qkM\" secondAttribute=\"bottom\" constant=\"10\" id=\"35q-nX-pRo\"/>\n                            <constraint firstItem=\"CVd-yq-x5A\" firstAttribute=\"top\" secondItem=\"pMi-TP-eI0\" secondAttribute=\"bottom\" constant=\"10\" id=\"4xY-sP-oL3\"/>\n                            <constraint firstItem=\"c1U-0a-Jva\" firstAttribute=\"leading\" secondItem=\"reu-We-tvc\" secondAttribute=\"leading\" id=\"7ZH-FP-alZ\"/>\n                            <constraint firstItem=\"c1U-0a-Jva\" firstAttribute=\"trailing\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"trailing\" id=\"86L-AP-k4j\"/>\n                            <constraint firstItem=\"CVd-yq-x5A\" firstAttribute=\"trailing\" secondItem=\"XOB-Kg-cEB\" secondAttribute=\"trailing\" id=\"IbD-ON-xHb\"/>\n                            <constraint firstItem=\"pMi-TP-eI0\" firstAttribute=\"leading\" secondItem=\"XOB-Kg-cEB\" secondAttribute=\"leading\" id=\"Iee-9N-1k1\"/>\n                            <constraint firstItem=\"CVd-yq-x5A\" firstAttribute=\"leading\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"trailing\" id=\"Itq-Lz-aMQ\"/>\n                            <constraint firstItem=\"reu-We-tvc\" firstAttribute=\"trailing\" secondItem=\"CVd-yq-x5A\" secondAttribute=\"trailing\" id=\"Mej-jR-r8o\"/>\n                            <constraint firstItem=\"Qlj-B6-NJn\" firstAttribute=\"trailing\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"trailing\" id=\"OTp-tx-smP\"/>\n                            <constraint firstItem=\"Qlj-B6-NJn\" firstAttribute=\"bottom\" secondItem=\"CVd-yq-x5A\" secondAttribute=\"bottom\" id=\"Wew-bE-uuz\"/>\n                            <constraint firstItem=\"pMi-TP-eI0\" firstAttribute=\"trailing\" secondItem=\"XOB-Kg-cEB\" secondAttribute=\"trailing\" id=\"X22-3z-fZ4\"/>\n                            <constraint firstItem=\"reu-We-tvc\" firstAttribute=\"bottom\" secondItem=\"Qlj-B6-NJn\" secondAttribute=\"bottom\" constant=\"10\" id=\"Zf7-Tv-Nqq\"/>\n                            <constraint firstItem=\"kBd-DW-TbG\" firstAttribute=\"leading\" secondItem=\"reu-We-tvc\" secondAttribute=\"leading\" id=\"cH0-VR-tQZ\"/>\n                            <constraint firstItem=\"Qlj-B6-NJn\" firstAttribute=\"leading\" secondItem=\"reu-We-tvc\" secondAttribute=\"leading\" id=\"dHJ-4C-x69\"/>\n                            <constraint firstItem=\"XOB-Kg-cEB\" firstAttribute=\"top\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"top\" id=\"eBa-nq-HNY\"/>\n                            <constraint firstItem=\"pMi-TP-eI0\" firstAttribute=\"top\" secondItem=\"XOB-Kg-cEB\" secondAttribute=\"bottom\" constant=\"10\" id=\"fqL-VF-VeM\"/>\n                            <constraint firstItem=\"CVd-yq-x5A\" firstAttribute=\"width\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"width\" id=\"gRQ-48-eot\"/>\n                            <constraint firstItem=\"XjZ-UX-qkM\" firstAttribute=\"leading\" secondItem=\"reu-We-tvc\" secondAttribute=\"leading\" id=\"q33-Ng-Hxx\"/>\n                            <constraint firstItem=\"CVd-yq-x5A\" firstAttribute=\"leading\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"trailing\" id=\"tD8-UX-fy9\"/>\n                            <constraint firstItem=\"XjZ-UX-qkM\" firstAttribute=\"width\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"width\" id=\"u7N-b6-LJ3\"/>\n                            <constraint firstItem=\"Qlj-B6-NJn\" firstAttribute=\"top\" secondItem=\"c1U-0a-Jva\" secondAttribute=\"bottom\" constant=\"10\" id=\"uMA-zB-OAe\"/>\n                            <constraint firstItem=\"XjZ-UX-qkM\" firstAttribute=\"top\" secondItem=\"kBd-DW-TbG\" secondAttribute=\"bottom\" constant=\"5\" id=\"ueo-0K-fOS\"/>\n                            <constraint firstItem=\"CVd-yq-x5A\" firstAttribute=\"leading\" secondItem=\"XOB-Kg-cEB\" secondAttribute=\"leading\" id=\"vGo-hf-72Z\"/>\n                            <constraint firstItem=\"kBd-DW-TbG\" firstAttribute=\"top\" secondItem=\"reu-We-tvc\" secondAttribute=\"top\" constant=\"5\" id=\"zlQ-Tc-C8O\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"UIScrollView Example\" id=\"1XW-VW-7XA\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"6ux-WY-384\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"bottomTextField\" destination=\"c1U-0a-Jva\" id=\"sMX-3V-FuD\"/>\n                        <outlet property=\"bottomTextView\" destination=\"Qlj-B6-NJn\" id=\"s2N-Qk-NPp\"/>\n                        <outlet property=\"scrollViewDemo\" destination=\"XjZ-UX-qkM\" id=\"9kd-AD-Vt3\"/>\n                        <outlet property=\"scrollViewInsideScrollView\" destination=\"l2M-f4-MfB\" id=\"ZkU-TK-7L0\"/>\n                        <outlet property=\"scrollViewOfTableViews\" destination=\"CVd-yq-x5A\" id=\"Jb6-KO-PHO\"/>\n                        <outlet property=\"simpleTableView\" destination=\"kBd-DW-TbG\" id=\"Wjf-cO-DKA\"/>\n                        <outlet property=\"tableViewInsideScrollView\" destination=\"dAh-8f-IR7\" id=\"h5Y-jM-4b9\"/>\n                        <outlet property=\"topTextField\" destination=\"XOB-Kg-cEB\" id=\"l6p-1X-qAJ\"/>\n                        <outlet property=\"topTextView\" destination=\"pMi-TP-eI0\" id=\"Aru-pk-aUR\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Ycz-tx-VMW\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-3679\" y=\"218\"/>\n        </scene>\n        <!--Navigation Bar-->\n        <scene sceneID=\"4DZ-Zn-3Xg\">\n            <objects>\n                <viewController storyboardIdentifier=\"NavigationBarViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"Trg-4t-Fsg\" customClass=\"NavigationBarViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"eYx-4d-dcj\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YS6-oO-kvF\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"96\" width=\"414\" height=\"800\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"scrollView.scrollEnabled\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"V8j-ee-Y7K\">\n                                        <rect key=\"frame\" x=\"20\" y=\"78.5\" width=\"303\" height=\"19.5\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"16\"/>\n                                        <color key=\"textColor\" name=\"535353\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"750\" verticalHuggingPriority=\"750\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"C1G-xr-Ikt\">\n                                        <rect key=\"frame\" x=\"333\" y=\"74\" width=\"63\" height=\"28\"/>\n                                        <color key=\"onTintColor\" name=\"757677\"/>\n                                        <connections>\n                                            <action selector=\"enableScrollAction:\" destination=\"Trg-4t-Fsg\" eventType=\"valueChanged\" id=\"UuJ-3c-yPZ\"/>\n                                        </connections>\n                                    </switch>\n                                    <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" minimumScaleFactor=\"0.10000000149011612\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2HE-8l-pwN\">\n                                        <rect key=\"frame\" x=\"20\" y=\"112\" width=\"374\" height=\"57.5\"/>\n                                        <string key=\"text\">If you want to always show UINavigationBar, then change the UIView class to UIScrollView. Note that if scrollView.scrollEnabled = NO then library ignore scrollView and behave like as there is no scrollView in the middle</string>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <color key=\"textColor\" name=\"535353\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"4\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Postion: 1, Tag: 4\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wO8-Qd-oOx\">\n                                        <rect key=\"frame\" x=\"20\" y=\"243.5\" width=\"308\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"alphabet\"/>\n                                        <connections>\n                                            <outlet property=\"delegate\" destination=\"Trg-4t-Fsg\" id=\"FpM-RH-ijd\"/>\n                                        </connections>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"5\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 2, Tag: 5\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bxS-Ei-dBG\">\n                                        <rect key=\"frame\" x=\"20\" y=\"563.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"750\" verticalHuggingPriority=\"750\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LOI-el-lXZ\">\n                                        <rect key=\"frame\" x=\"333\" y=\"246.5\" width=\"63\" height=\"28\"/>\n                                        <color key=\"onTintColor\" name=\"757677\"/>\n                                        <connections>\n                                            <action selector=\"shouldHideTitle:\" destination=\"Trg-4t-Fsg\" eventType=\"valueChanged\" id=\"Ouy-hV-6So\"/>\n                                        </connections>\n                                    </switch>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"7\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 3, Tag: 7\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"JwK-tl-xro\">\n                                        <rect key=\"frame\" x=\"20\" y=\"307.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"2\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 4, Tag: 2\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cfl-i4-rKq\">\n                                        <rect key=\"frame\" x=\"20\" y=\"179.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"6\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 5, Tag: 6\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"heE-KG-kGl\">\n                                        <rect key=\"frame\" x=\"20\" y=\"435.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"numberPad\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"1\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 6, Tag: 1\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iZI-Ur-2uh\">\n                                        <rect key=\"frame\" x=\"20\" y=\"371.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"3\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 7, Tag: 3\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Fa0-cQ-2Qp\">\n                                        <rect key=\"frame\" x=\"20\" y=\"499.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"8\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 8, Tag: 8\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"teJ-28-R1b\">\n                                        <rect key=\"frame\" x=\"20\" y=\"627.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"9\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 9, Tag: 9\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"H78-v5-vHU\">\n                                        <rect key=\"frame\" x=\"20\" y=\"691.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"10\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 10, Tag: 10\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ruS-TI-tuk\">\n                                        <rect key=\"frame\" x=\"20\" y=\"755.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"11\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 11, Tag: 11\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"b0L-w7-Tph\">\n                                        <rect key=\"frame\" x=\"20\" y=\"819.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"12\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Subview Position: 12, Tag: 12\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6Qj-mt-LV8\">\n                                        <rect key=\"frame\" x=\"20\" y=\"883.5\" width=\"374\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                    </textField>\n                                    <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" text=\"Should Hide Title?\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" minimumScaleFactor=\"0.10000000149011612\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oiz-z1-TuT\">\n                                        <rect key=\"frame\" x=\"291\" y=\"232\" width=\"103\" height=\"14.5\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <color key=\"textColor\" name=\"535353\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                </subviews>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <constraints>\n                                    <constraint firstItem=\"b0L-w7-Tph\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"0Ta-Sn-HKx\"/>\n                                    <constraint firstItem=\"heE-KG-kGl\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"2Dm-fa-WcF\"/>\n                                    <constraint firstItem=\"LOI-el-lXZ\" firstAttribute=\"centerY\" secondItem=\"wO8-Qd-oOx\" secondAttribute=\"centerY\" id=\"2Mo-B5-SGe\"/>\n                                    <constraint firstItem=\"JwK-tl-xro\" firstAttribute=\"top\" secondItem=\"wO8-Qd-oOx\" secondAttribute=\"bottom\" constant=\"30\" id=\"2W8-yJ-FsU\"/>\n                                    <constraint firstItem=\"wO8-Qd-oOx\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"3AH-6K-8vW\"/>\n                                    <constraint firstItem=\"6Qj-mt-LV8\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"4Vs-dk-Id8\"/>\n                                    <constraint firstItem=\"ruS-TI-tuk\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"5Uf-xU-pcn\"/>\n                                    <constraint firstItem=\"heE-KG-kGl\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"6uw-Lv-smi\"/>\n                                    <constraint firstItem=\"wO8-Qd-oOx\" firstAttribute=\"top\" secondItem=\"cfl-i4-rKq\" secondAttribute=\"bottom\" constant=\"30\" id=\"6v8-6F-QFZ\"/>\n                                    <constraint firstItem=\"teJ-28-R1b\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"CNR-mI-vyG\"/>\n                                    <constraint firstItem=\"C1G-xr-Ikt\" firstAttribute=\"top\" secondItem=\"YS6-oO-kvF\" secondAttribute=\"top\" constant=\"74\" id=\"CcP-hb-DLT\"/>\n                                    <constraint firstItem=\"H78-v5-vHU\" firstAttribute=\"top\" secondItem=\"teJ-28-R1b\" secondAttribute=\"bottom\" constant=\"30\" id=\"DP7-1w-3gu\"/>\n                                    <constraint firstItem=\"bxS-Ei-dBG\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"Fy2-Ac-edo\"/>\n                                    <constraint firstItem=\"iZI-Ur-2uh\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"HH4-Qf-R9e\"/>\n                                    <constraint firstItem=\"teJ-28-R1b\" firstAttribute=\"top\" secondItem=\"bxS-Ei-dBG\" secondAttribute=\"bottom\" constant=\"30\" id=\"Ic4-E7-pyv\"/>\n                                    <constraint firstItem=\"LOI-el-lXZ\" firstAttribute=\"trailing\" secondItem=\"C1G-xr-Ikt\" secondAttribute=\"trailing\" id=\"JWN-ia-ZUl\"/>\n                                    <constraint firstItem=\"2HE-8l-pwN\" firstAttribute=\"leading\" secondItem=\"V8j-ee-Y7K\" secondAttribute=\"leading\" id=\"LqA-Ku-sPS\"/>\n                                    <constraint firstItem=\"bxS-Ei-dBG\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"MuT-93-Umz\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" constant=\"20\" id=\"Ohj-rs-Jc1\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"6Qj-mt-LV8\" secondAttribute=\"bottom\" constant=\"30\" id=\"Pgj-dV-Xde\"/>\n                                    <constraint firstItem=\"C1G-xr-Ikt\" firstAttribute=\"centerY\" secondItem=\"V8j-ee-Y7K\" secondAttribute=\"centerY\" id=\"Q6O-UH-5Su\"/>\n                                    <constraint firstItem=\"teJ-28-R1b\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"QcZ-sc-yDh\"/>\n                                    <constraint firstItem=\"JwK-tl-xro\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"SXp-Dp-WCU\"/>\n                                    <constraint firstItem=\"iZI-Ur-2uh\" firstAttribute=\"top\" secondItem=\"JwK-tl-xro\" secondAttribute=\"bottom\" constant=\"30\" id=\"Tj9-EN-1GC\"/>\n                                    <constraint firstItem=\"H78-v5-vHU\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"Vfh-cZ-uf4\"/>\n                                    <constraint firstItem=\"ruS-TI-tuk\" firstAttribute=\"top\" secondItem=\"H78-v5-vHU\" secondAttribute=\"bottom\" constant=\"30\" id=\"VhX-8y-1EM\"/>\n                                    <constraint firstItem=\"6Qj-mt-LV8\" firstAttribute=\"top\" secondItem=\"b0L-w7-Tph\" secondAttribute=\"bottom\" constant=\"30\" id=\"VpZ-R4-GiK\"/>\n                                    <constraint firstItem=\"LOI-el-lXZ\" firstAttribute=\"trailing\" secondItem=\"oiz-z1-TuT\" secondAttribute=\"trailing\" id=\"Y0f-52-hPn\"/>\n                                    <constraint firstItem=\"C1G-xr-Ikt\" firstAttribute=\"leading\" secondItem=\"V8j-ee-Y7K\" secondAttribute=\"trailing\" constant=\"10\" id=\"Yni-AQ-KE1\"/>\n                                    <constraint firstItem=\"Fa0-cQ-2Qp\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"b8T-x7-oGy\"/>\n                                    <constraint firstItem=\"Fa0-cQ-2Qp\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"cfB-KJ-oE2\"/>\n                                    <constraint firstItem=\"2HE-8l-pwN\" firstAttribute=\"top\" secondItem=\"C1G-xr-Ikt\" secondAttribute=\"bottom\" constant=\"10\" id=\"exF-4a-t5s\"/>\n                                    <constraint firstItem=\"Fa0-cQ-2Qp\" firstAttribute=\"top\" secondItem=\"heE-KG-kGl\" secondAttribute=\"bottom\" constant=\"30\" id=\"gOu-c9-aSG\"/>\n                                    <constraint firstItem=\"LOI-el-lXZ\" firstAttribute=\"top\" secondItem=\"oiz-z1-TuT\" secondAttribute=\"bottom\" id=\"h7Z-ig-5J9\"/>\n                                    <constraint firstItem=\"heE-KG-kGl\" firstAttribute=\"top\" secondItem=\"iZI-Ur-2uh\" secondAttribute=\"bottom\" constant=\"30\" id=\"hUQ-0L-h0B\"/>\n                                    <constraint firstItem=\"JwK-tl-xro\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"hoZ-mk-SB1\"/>\n                                    <constraint firstItem=\"b0L-w7-Tph\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"kKi-eR-hSN\"/>\n                                    <constraint firstItem=\"H78-v5-vHU\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"lWW-wl-V4u\"/>\n                                    <constraint firstItem=\"ruS-TI-tuk\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"mmJ-X4-dlc\"/>\n                                    <constraint firstItem=\"cfl-i4-rKq\" firstAttribute=\"trailing\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"trailing\" id=\"mpM-gH-nvK\"/>\n                                    <constraint firstItem=\"2HE-8l-pwN\" firstAttribute=\"width\" secondItem=\"YS6-oO-kvF\" secondAttribute=\"width\" constant=\"-40\" id=\"nif-M7-c9n\"/>\n                                    <constraint firstItem=\"6Qj-mt-LV8\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"o64-dG-gNV\"/>\n                                    <constraint firstItem=\"cfl-i4-rKq\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"u1b-UE-cNH\"/>\n                                    <constraint firstItem=\"2HE-8l-pwN\" firstAttribute=\"leading\" secondItem=\"YS6-oO-kvF\" secondAttribute=\"leading\" constant=\"20\" id=\"u2g-3E-U7e\"/>\n                                    <constraint firstItem=\"b0L-w7-Tph\" firstAttribute=\"top\" secondItem=\"ruS-TI-tuk\" secondAttribute=\"bottom\" constant=\"30\" id=\"utg-vE-Y9y\"/>\n                                    <constraint firstItem=\"iZI-Ur-2uh\" firstAttribute=\"leading\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"leading\" id=\"uwu-pK-WVD\"/>\n                                    <constraint firstItem=\"cfl-i4-rKq\" firstAttribute=\"top\" secondItem=\"2HE-8l-pwN\" secondAttribute=\"bottom\" constant=\"10\" id=\"vej-hv-X7G\"/>\n                                    <constraint firstItem=\"2HE-8l-pwN\" firstAttribute=\"trailing\" secondItem=\"C1G-xr-Ikt\" secondAttribute=\"trailing\" id=\"xm4-Bh-HAd\"/>\n                                    <constraint firstItem=\"LOI-el-lXZ\" firstAttribute=\"leading\" secondItem=\"wO8-Qd-oOx\" secondAttribute=\"trailing\" constant=\"5\" id=\"zOu-sc-H6W\"/>\n                                    <constraint firstItem=\"bxS-Ei-dBG\" firstAttribute=\"top\" secondItem=\"Fa0-cQ-2Qp\" secondAttribute=\"bottom\" constant=\"30\" id=\"zQ8-Qn-s8w\"/>\n                                </constraints>\n                                <connections>\n                                    <outlet property=\"delegate\" destination=\"Trg-4t-Fsg\" id=\"zCi-EF-Ak8\"/>\n                                </connections>\n                            </scrollView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"gPE-kR-7xj\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"YS6-oO-kvF\" secondAttribute=\"bottom\" id=\"9F7-Ig-UHH\"/>\n                            <constraint firstItem=\"YS6-oO-kvF\" firstAttribute=\"top\" secondItem=\"gPE-kR-7xj\" secondAttribute=\"top\" id=\"UqA-9t-Phb\"/>\n                            <constraint firstItem=\"YS6-oO-kvF\" firstAttribute=\"trailing\" secondItem=\"gPE-kR-7xj\" secondAttribute=\"trailing\" id=\"nmG-PE-8Or\"/>\n                            <constraint firstItem=\"YS6-oO-kvF\" firstAttribute=\"leading\" secondItem=\"gPE-kR-7xj\" secondAttribute=\"leading\" id=\"vJ5-Ek-czf\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Navigation Bar\" id=\"IWx-4s-DcF\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"kJy-g0-Z2Y\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"scrollView\" destination=\"YS6-oO-kvF\" id=\"fIl-LY-xqW\"/>\n                        <outlet property=\"textField2\" destination=\"wO8-Qd-oOx\" id=\"OL4-Gl-lwQ\"/>\n                        <outlet property=\"textField3\" destination=\"JwK-tl-xro\" id=\"k1J-US-IIl\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"C0D-63-GHd\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-1989.8550724637682\" y=\"217.63392857142856\"/>\n        </scene>\n        <!--UICollectionView-->\n        <scene sceneID=\"nN9-Jc-MTo\">\n            <objects>\n                <viewController storyboardIdentifier=\"CollectionViewDemoController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"QIM-iU-H2P\" customClass=\"CollectionViewDemoController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"GxJ-Cf-XF0\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <collectionView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" dataMode=\"prototypes\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pDc-0F-blt\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <collectionViewFlowLayout key=\"collectionViewLayout\" minimumLineSpacing=\"10\" minimumInteritemSpacing=\"10\" id=\"CUP-5s-YwE\">\n                                    <size key=\"itemSize\" width=\"300\" height=\"50\"/>\n                                    <size key=\"headerReferenceSize\" width=\"0.0\" height=\"0.0\"/>\n                                    <size key=\"footerReferenceSize\" width=\"0.0\" height=\"0.0\"/>\n                                    <inset key=\"sectionInset\" minX=\"0.0\" minY=\"0.0\" maxX=\"0.0\" maxY=\"0.0\"/>\n                                </collectionViewFlowLayout>\n                                <cells>\n                                    <collectionViewCell opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" reuseIdentifier=\"TextFieldCollectionViewCell\" id=\"uSP-xu-44L\">\n                                        <rect key=\"frame\" x=\"57\" y=\"0.0\" width=\"300\" height=\"50\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <view key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"300\" height=\"50\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"10\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nth-q2-dKn\">\n                                                    <rect key=\"frame\" x=\"10\" y=\"8\" width=\"280\" height=\"34\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                        </view>\n                                        <constraints>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"nth-q2-dKn\" secondAttribute=\"trailing\" constant=\"10\" id=\"Cfd-sW-JUQ\"/>\n                                            <constraint firstItem=\"nth-q2-dKn\" firstAttribute=\"leading\" secondItem=\"uSP-xu-44L\" secondAttribute=\"leading\" constant=\"10\" id=\"xVy-UI-NHi\"/>\n                                            <constraint firstItem=\"nth-q2-dKn\" firstAttribute=\"centerY\" secondItem=\"uSP-xu-44L\" secondAttribute=\"centerY\" id=\"zId-Ow-1Z6\"/>\n                                        </constraints>\n                                    </collectionViewCell>\n                                </cells>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"QIM-iU-H2P\" id=\"kwg-Wn-2YX\"/>\n                                    <outlet property=\"delegate\" destination=\"QIM-iU-H2P\" id=\"pgh-U8-8nV\"/>\n                                </connections>\n                            </collectionView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Evq-yq-yy3\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"pDc-0F-blt\" firstAttribute=\"leading\" secondItem=\"Evq-yq-yy3\" secondAttribute=\"leading\" id=\"EAc-p1-Ciu\"/>\n                            <constraint firstItem=\"pDc-0F-blt\" firstAttribute=\"top\" secondItem=\"GxJ-Cf-XF0\" secondAttribute=\"top\" id=\"RmH-aX-Dw2\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"pDc-0F-blt\" secondAttribute=\"bottom\" id=\"r7O-rM-4dl\"/>\n                            <constraint firstItem=\"Evq-yq-yy3\" firstAttribute=\"trailing\" secondItem=\"pDc-0F-blt\" secondAttribute=\"trailing\" id=\"uhn-V4-itC\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"UICollectionView\" id=\"Byq-bS-sCQ\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"Sgb-WF-lWI\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"collectionView\" destination=\"pDc-0F-blt\" id=\"pPb-MQ-Oqv\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"nZE-3n-uda\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1035\" y=\"218\"/>\n        </scene>\n        <!--UITableViewController-->\n        <scene sceneID=\"f4C-KI-H3s\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"TableViewController\" id=\"fxp-9v-8cZ\" customClass=\"TableViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" opaque=\"NO\" clipsSubviews=\"YES\" clearsContextBeforeDrawing=\"NO\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"static\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" id=\"shB-z3-q47\">\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\" systemColor=\"systemBackgroundColor\"/>\n                        <sections>\n                            <tableViewSection id=\"t96-I2-xYK\">\n                                <cells>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"FaL-19-zky\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"50\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"FaL-19-zky\" id=\"tTa-Og-6g2\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7ID-aZ-co4\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"7ID-aZ-co4\" firstAttribute=\"leading\" secondItem=\"tTa-Og-6g2\" secondAttribute=\"leading\" constant=\"5\" id=\"AIb-yl-0M6\"/>\n                                                <constraint firstItem=\"7ID-aZ-co4\" firstAttribute=\"top\" secondItem=\"tTa-Og-6g2\" secondAttribute=\"top\" constant=\"5\" id=\"WdW-co-Gia\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"7ID-aZ-co4\" secondAttribute=\"trailing\" constant=\"5\" id=\"fUV-AQ-n9b\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"7ID-aZ-co4\" secondAttribute=\"bottom\" constant=\"5\" id=\"vV4-nf-mMb\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"Oe1-i6-nJZ\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"91\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Oe1-i6-nJZ\" id=\"2Oh-32-JDn\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nJx-vj-aC8\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"nJx-vj-aC8\" secondAttribute=\"trailing\" constant=\"5\" id=\"FUW-0V-s0g\"/>\n                                                <constraint firstItem=\"nJx-vj-aC8\" firstAttribute=\"top\" secondItem=\"2Oh-32-JDn\" secondAttribute=\"top\" constant=\"5\" id=\"HJC-Nf-gHK\"/>\n                                                <constraint firstItem=\"nJx-vj-aC8\" firstAttribute=\"leading\" secondItem=\"2Oh-32-JDn\" secondAttribute=\"leading\" constant=\"5\" id=\"cLG-Pu-bFC\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"nJx-vj-aC8\" secondAttribute=\"bottom\" constant=\"5\" id=\"dTU-OO-sow\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"3lx-6h-twx\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"441\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"3lx-6h-twx\" id=\"nH2-kY-d2t\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Eaj-rR-uo3\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"Eaj-rR-uo3\" firstAttribute=\"leading\" secondItem=\"nH2-kY-d2t\" secondAttribute=\"leading\" constant=\"5\" id=\"B5X-mg-NX6\"/>\n                                                <constraint firstItem=\"Eaj-rR-uo3\" firstAttribute=\"top\" secondItem=\"nH2-kY-d2t\" secondAttribute=\"top\" constant=\"5\" id=\"KHa-Bl-aNl\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"Eaj-rR-uo3\" secondAttribute=\"trailing\" constant=\"5\" id=\"S1w-gv-C71\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"Eaj-rR-uo3\" secondAttribute=\"bottom\" constant=\"5\" id=\"zZD-Tv-Bhh\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"Csd-T9-cQK\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"482\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Csd-T9-cQK\" id=\"40W-FL-aO3\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fgX-lN-poh\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"fgX-lN-poh\" firstAttribute=\"top\" secondItem=\"40W-FL-aO3\" secondAttribute=\"top\" constant=\"5\" id=\"KRM-Ot-kwr\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"fgX-lN-poh\" secondAttribute=\"bottom\" constant=\"5\" id=\"ihd-9b-Mdw\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"fgX-lN-poh\" secondAttribute=\"trailing\" constant=\"5\" id=\"jlO-ja-iwn\"/>\n                                                <constraint firstItem=\"fgX-lN-poh\" firstAttribute=\"leading\" secondItem=\"40W-FL-aO3\" secondAttribute=\"leading\" constant=\"5\" id=\"lGU-PD-Duw\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"SGZ-BU-Cc0\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"832\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"SGZ-BU-Cc0\" id=\"Szn-af-4i0\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fuT-LU-3bP\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"fuT-LU-3bP\" secondAttribute=\"bottom\" constant=\"5\" id=\"QwB-Ss-zxi\"/>\n                                                <constraint firstItem=\"fuT-LU-3bP\" firstAttribute=\"top\" secondItem=\"Szn-af-4i0\" secondAttribute=\"top\" constant=\"5\" id=\"WMB-Kq-Qyb\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"fuT-LU-3bP\" secondAttribute=\"trailing\" constant=\"5\" id=\"a98-de-MTE\"/>\n                                                <constraint firstItem=\"fuT-LU-3bP\" firstAttribute=\"leading\" secondItem=\"Szn-af-4i0\" secondAttribute=\"leading\" constant=\"5\" id=\"amJ-uw-bGx\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"Wfp-bY-ZWU\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"873\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Wfp-bY-ZWU\" id=\"b9R-dh-ePP\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7Nj-eG-LrV\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"7Nj-eG-LrV\" secondAttribute=\"bottom\" constant=\"5\" id=\"FYT-S1-7DA\"/>\n                                                <constraint firstItem=\"7Nj-eG-LrV\" firstAttribute=\"leading\" secondItem=\"b9R-dh-ePP\" secondAttribute=\"leading\" constant=\"5\" id=\"K5w-7e-sBy\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"7Nj-eG-LrV\" secondAttribute=\"trailing\" constant=\"5\" id=\"M4t-RY-yJf\"/>\n                                                <constraint firstItem=\"7Nj-eG-LrV\" firstAttribute=\"top\" secondItem=\"b9R-dh-ePP\" secondAttribute=\"top\" constant=\"5\" id=\"tyq-qx-Z51\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"vvZ-c7-eBo\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1223\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"vvZ-c7-eBo\" id=\"wTE-ag-Cbf\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bA6-TJ-uoo\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"bA6-TJ-uoo\" secondAttribute=\"trailing\" constant=\"5\" id=\"Ax1-Zp-6Ux\"/>\n                                                <constraint firstItem=\"bA6-TJ-uoo\" firstAttribute=\"top\" secondItem=\"wTE-ag-Cbf\" secondAttribute=\"top\" constant=\"5\" id=\"JmZ-sU-1WY\"/>\n                                                <constraint firstItem=\"bA6-TJ-uoo\" firstAttribute=\"leading\" secondItem=\"wTE-ag-Cbf\" secondAttribute=\"leading\" constant=\"5\" id=\"Wvg-Mc-ca2\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"bA6-TJ-uoo\" secondAttribute=\"bottom\" constant=\"5\" id=\"rsH-Rr-4kV\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"Ego-If-gyk\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1264\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Ego-If-gyk\" id=\"P4p-ss-iv2\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xgn-PI-i5c\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"xgn-PI-i5c\" secondAttribute=\"bottom\" constant=\"5\" id=\"2iA-h7-5CA\"/>\n                                                <constraint firstItem=\"xgn-PI-i5c\" firstAttribute=\"top\" secondItem=\"P4p-ss-iv2\" secondAttribute=\"top\" constant=\"5\" id=\"DgL-fV-dLG\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"xgn-PI-i5c\" secondAttribute=\"trailing\" constant=\"5\" id=\"YhK-Kt-BeY\"/>\n                                                <constraint firstItem=\"xgn-PI-i5c\" firstAttribute=\"leading\" secondItem=\"P4p-ss-iv2\" secondAttribute=\"leading\" constant=\"5\" id=\"dv7-sS-zlV\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"VAE-Zy-WoN\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1614\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"VAE-Zy-WoN\" id=\"xLf-mj-K4d\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MtM-bZ-PKc\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"MtM-bZ-PKc\" firstAttribute=\"top\" secondItem=\"xLf-mj-K4d\" secondAttribute=\"top\" constant=\"5\" id=\"APV-zG-xLr\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"MtM-bZ-PKc\" secondAttribute=\"bottom\" constant=\"5\" id=\"B4p-UB-i6t\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"MtM-bZ-PKc\" secondAttribute=\"trailing\" constant=\"5\" id=\"DQE-x9-heN\"/>\n                                                <constraint firstItem=\"MtM-bZ-PKc\" firstAttribute=\"leading\" secondItem=\"xLf-mj-K4d\" secondAttribute=\"leading\" constant=\"5\" id=\"ZdS-a8-1Cz\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"fZy-eQ-hXM\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"1655\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"fZy-eQ-hXM\" id=\"sFJ-zD-DrA\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"c05-oS-Wjq\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"c05-oS-Wjq\" firstAttribute=\"leading\" secondItem=\"sFJ-zD-DrA\" secondAttribute=\"leading\" constant=\"5\" id=\"GPz-PG-qh3\"/>\n                                                <constraint firstItem=\"c05-oS-Wjq\" firstAttribute=\"top\" secondItem=\"sFJ-zD-DrA\" secondAttribute=\"top\" constant=\"5\" id=\"I07-HE-hOX\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"c05-oS-Wjq\" secondAttribute=\"bottom\" constant=\"5\" id=\"OFI-CL-mvN\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"c05-oS-Wjq\" secondAttribute=\"trailing\" constant=\"5\" id=\"mTu-nq-Lrm\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"pwM-BD-F3E\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"2005\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"pwM-BD-F3E\" id=\"x38-ab-L3i\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aK8-uu-gfZ\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"aK8-uu-gfZ\" secondAttribute=\"trailing\" constant=\"5\" id=\"0mA-3f-bxy\"/>\n                                                <constraint firstItem=\"aK8-uu-gfZ\" firstAttribute=\"top\" secondItem=\"x38-ab-L3i\" secondAttribute=\"top\" constant=\"5\" id=\"Od5-8X-Tpe\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"aK8-uu-gfZ\" secondAttribute=\"bottom\" constant=\"5\" id=\"vaq-Pb-esH\"/>\n                                                <constraint firstItem=\"aK8-uu-gfZ\" firstAttribute=\"leading\" secondItem=\"x38-ab-L3i\" secondAttribute=\"leading\" constant=\"5\" id=\"y9g-JK-a8z\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"M69-7a-p9I\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"2046\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"M69-7a-p9I\" id=\"wTg-2o-j8b\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QxW-ea-vah\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"QxW-ea-vah\" firstAttribute=\"top\" secondItem=\"wTg-2o-j8b\" secondAttribute=\"top\" constant=\"5\" id=\"9Ds-VP-kvd\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"QxW-ea-vah\" secondAttribute=\"bottom\" constant=\"5\" id=\"Nw1-bT-ES5\"/>\n                                                <constraint firstItem=\"QxW-ea-vah\" firstAttribute=\"leading\" secondItem=\"wTg-2o-j8b\" secondAttribute=\"leading\" constant=\"5\" id=\"RL4-ie-Fo4\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"QxW-ea-vah\" secondAttribute=\"trailing\" constant=\"5\" id=\"hnZ-30-cYe\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"Y5C-vW-9q2\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"2396\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Y5C-vW-9q2\" id=\"LdN-dG-2Xo\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lEb-HG-zO3\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"lEb-HG-zO3\" firstAttribute=\"leading\" secondItem=\"LdN-dG-2Xo\" secondAttribute=\"leading\" constant=\"5\" id=\"ArL-Vp-hFj\"/>\n                                                <constraint firstItem=\"lEb-HG-zO3\" firstAttribute=\"top\" secondItem=\"LdN-dG-2Xo\" secondAttribute=\"top\" constant=\"5\" id=\"FQl-Uh-AVj\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"lEb-HG-zO3\" secondAttribute=\"trailing\" constant=\"5\" id=\"eHl-TA-qV9\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"lEb-HG-zO3\" secondAttribute=\"bottom\" constant=\"5\" id=\"qzV-sf-XmY\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"kS4-wf-gdb\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"2437\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"kS4-wf-gdb\" id=\"X9y-jm-1sM\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kmt-IJ-ajj\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"kmt-IJ-ajj\" firstAttribute=\"top\" secondItem=\"X9y-jm-1sM\" secondAttribute=\"top\" constant=\"5\" id=\"7PH-vy-biz\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"kmt-IJ-ajj\" secondAttribute=\"bottom\" constant=\"5\" id=\"G8c-R7-9Rs\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"kmt-IJ-ajj\" secondAttribute=\"trailing\" constant=\"5\" id=\"S10-1v-iAb\"/>\n                                                <constraint firstItem=\"kmt-IJ-ajj\" firstAttribute=\"leading\" secondItem=\"X9y-jm-1sM\" secondAttribute=\"leading\" constant=\"5\" id=\"lPy-fc-ilP\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"41\" id=\"zP8-hL-yUz\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"2787\" width=\"414\" height=\"41\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"zP8-hL-yUz\" id=\"5ew-eq-OSY\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"41\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DrH-Tb-GC3\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"31\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"DrH-Tb-GC3\" secondAttribute=\"bottom\" constant=\"5\" id=\"FiS-G4-TXW\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"DrH-Tb-GC3\" secondAttribute=\"trailing\" constant=\"5\" id=\"hEa-4h-j8c\"/>\n                                                <constraint firstItem=\"DrH-Tb-GC3\" firstAttribute=\"top\" secondItem=\"5ew-eq-OSY\" secondAttribute=\"top\" constant=\"5\" id=\"hsv-Cm-UJd\"/>\n                                                <constraint firstItem=\"DrH-Tb-GC3\" firstAttribute=\"leading\" secondItem=\"5ew-eq-OSY\" secondAttribute=\"leading\" constant=\"5\" id=\"jiK-sW-Msa\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                    <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" rowHeight=\"350\" id=\"Dbj-Tr-RCC\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"2828\" width=\"414\" height=\"350\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Dbj-Tr-RCC\" id=\"dEe-1n-imP\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"350\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" ambiguous=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"jHL-zT-u6g\">\n                                                    <rect key=\"frame\" x=\"5\" y=\"5\" width=\"404\" height=\"340\"/>\n                                                    <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                    <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. </string>\n                                                    <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                                </textView>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"jHL-zT-u6g\" firstAttribute=\"top\" secondItem=\"dEe-1n-imP\" secondAttribute=\"top\" constant=\"5\" id=\"56I-QQ-5G5\"/>\n                                                <constraint firstItem=\"jHL-zT-u6g\" firstAttribute=\"leading\" secondItem=\"dEe-1n-imP\" secondAttribute=\"leading\" constant=\"5\" id=\"B0H-bA-Prz\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"jHL-zT-u6g\" secondAttribute=\"bottom\" constant=\"5\" id=\"NRn-I2-Agz\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"jHL-zT-u6g\" secondAttribute=\"trailing\" constant=\"5\" id=\"fCS-iE-efK\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                        <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                        </sections>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"fxp-9v-8cZ\" id=\"cy3-AH-72M\"/>\n                            <outlet property=\"delegate\" destination=\"fxp-9v-8cZ\" id=\"xVD-3r-AgZ\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"UITableViewController\" id=\"7ET-Mf-F9b\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"Nhg-d2-hav\"/>\n                    </navigationItem>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"BJg-JT-LAS\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-2843\" y=\"217\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"settings\" width=\"25\" height=\"25\"/>\n        <namedColor name=\"535353\">\n            <color red=\"0.32549019607843138\" green=\"0.32549019607843138\" blue=\"0.32549019607843138\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"757677\">\n            <color red=\"0.45882352941176469\" green=\"0.46274509803921571\" blue=\"0.46666666666666667\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"A1A1A1\">\n            <color red=\"0.63137254901960782\" green=\"0.63137254901960782\" blue=\"0.63137254901960782\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"D1D2D9\">\n            <color red=\"0.81960784313725488\" green=\"0.82352941176470584\" blue=\"0.85098039215686272\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"EBEDF0\">\n            <color red=\"0.92156862745098034\" green=\"0.92941176470588238\" blue=\"0.94117647058823528\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <systemColor name=\"groupTableViewBackgroundColor\">\n            <color red=\"0.94901960784313721\" green=\"0.94901960784313721\" blue=\"0.96862745098039216\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"labelColor\">\n            <color white=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemBackgroundColor\">\n            <color white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/Settings.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"22505\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"yh7-P7-TKe\">\n    <device id=\"retina5_9\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment version=\"5120\" identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"22504\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Navigation Controller-->\n        <scene sceneID=\"mFY-po-Edv\">\n            <objects>\n                <navigationController storyboardIdentifier=\"SettingsNavigationController\" id=\"yh7-P7-TKe\" customClass=\"NavigationController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <value key=\"contentSizeForViewInPopover\" type=\"size\" width=\"300\" height=\"488\"/>\n                    <navigationBar key=\"navigationBar\" contentMode=\"scaleToFill\" largeTitles=\"YES\" id=\"sJ5-JV-N2N\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"50\" width=\"375\" height=\"96\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <color key=\"barTintColor\" systemColor=\"systemBlueColor\"/>\n                        <navigationBarAppearance key=\"standardAppearance\">\n                            <color key=\"backgroundColor\" systemColor=\"systemGray4Color\"/>\n                        </navigationBarAppearance>\n                        <navigationBarAppearance key=\"compactAppearance\">\n                            <color key=\"backgroundColor\" systemColor=\"systemGray4Color\"/>\n                        </navigationBarAppearance>\n                        <navigationBarAppearance key=\"scrollEdgeAppearance\">\n                            <color key=\"backgroundColor\" systemColor=\"systemGray4Color\"/>\n                        </navigationBarAppearance>\n                        <navigationBarAppearance key=\"compactScrollEdgeAppearance\">\n                            <color key=\"backgroundColor\" systemColor=\"systemGray4Color\"/>\n                        </navigationBarAppearance>\n                    </navigationBar>\n                    <connections>\n                        <segue destination=\"a61-Vn-sFg\" kind=\"relationship\" relationship=\"rootViewController\" id=\"XSa-bv-Xg3\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"n9e-a2-WWs\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-1033\" y=\"1704\"/>\n        </scene>\n        <!--Settings-->\n        <scene sceneID=\"zPq-Kx-aQ0\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"SettingsViewController\" id=\"a61-Vn-sFg\" customClass=\"SettingsViewController\" customModule=\"DemoSwift\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"insetGrouped\" rowHeight=\"55\" sectionHeaderHeight=\"18\" sectionFooterHeight=\"18\" id=\"8WJ-D7-NuE\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <prototypes>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"none\" indentationWidth=\"10\" reuseIdentifier=\"SwitchTableViewCell\" rowHeight=\"51\" id=\"BH8-6z-hDi\" customClass=\"SwitchTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"20\" y=\"38\" width=\"335\" height=\"51\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"BH8-6z-hDi\" id=\"x8b-js-0t7\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"51\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"JV9-O3-43x\">\n                                            <rect key=\"frame\" x=\"10\" y=\"10\" width=\"261\" height=\"31\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"249\" horizontalCompressionResistancePriority=\"249\" verticalCompressionResistancePriority=\"249\" text=\"Enable\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000000000001\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"P6l-3B-Vbo\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"261\" height=\"19\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Enable/Disable IQKeyboardManager\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GSN-ib-2QV\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"261\" height=\"12\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                                    <color key=\"textColor\" systemColor=\"secondaryLabelColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"GSN-ib-2QV\" secondAttribute=\"bottom\" id=\"Uyj-nN-JDz\"/>\n                                                <constraint firstItem=\"GSN-ib-2QV\" firstAttribute=\"top\" secondItem=\"P6l-3B-Vbo\" secondAttribute=\"bottom\" id=\"aqo-le-ERt\"/>\n                                                <constraint firstItem=\"GSN-ib-2QV\" firstAttribute=\"leading\" secondItem=\"JV9-O3-43x\" secondAttribute=\"leading\" id=\"iEs-MW-Acg\"/>\n                                                <constraint firstItem=\"P6l-3B-Vbo\" firstAttribute=\"top\" secondItem=\"JV9-O3-43x\" secondAttribute=\"top\" id=\"lj9-aZ-oil\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"GSN-ib-2QV\" secondAttribute=\"trailing\" id=\"oxG-JI-tid\"/>\n                                                <constraint firstItem=\"P6l-3B-Vbo\" firstAttribute=\"leading\" secondItem=\"JV9-O3-43x\" secondAttribute=\"leading\" id=\"tcq-bQ-6j9\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"P6l-3B-Vbo\" secondAttribute=\"trailing\" id=\"vWa-a3-BA8\"/>\n                                            </constraints>\n                                        </view>\n                                        <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Xeq-4g-lfL\">\n                                            <rect key=\"frame\" x=\"276\" y=\"10\" width=\"51\" height=\"31\"/>\n                                            <color key=\"onTintColor\" name=\"757677\"/>\n                                        </switch>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"JV9-O3-43x\" firstAttribute=\"top\" secondItem=\"x8b-js-0t7\" secondAttribute=\"top\" constant=\"10\" id=\"0BQ-iI-q9D\"/>\n                                        <constraint firstItem=\"Xeq-4g-lfL\" firstAttribute=\"centerY\" secondItem=\"x8b-js-0t7\" secondAttribute=\"centerY\" id=\"1fM-YS-hgw\"/>\n                                        <constraint firstItem=\"JV9-O3-43x\" firstAttribute=\"leading\" secondItem=\"x8b-js-0t7\" secondAttribute=\"leading\" constant=\"10\" id=\"4EO-34-EQN\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"Xeq-4g-lfL\" secondAttribute=\"trailing\" constant=\"10\" id=\"HvE-CN-Dbf\"/>\n                                        <constraint firstItem=\"Xeq-4g-lfL\" firstAttribute=\"leading\" secondItem=\"JV9-O3-43x\" secondAttribute=\"trailing\" constant=\"5\" id=\"Ra7-Sl-TVF\"/>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"JV9-O3-43x\" secondAttribute=\"bottom\" constant=\"10\" id=\"XLB-Ve-pEj\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"labelSubtitle\" destination=\"GSN-ib-2QV\" id=\"qAa-7L-wv9\"/>\n                                    <outlet property=\"labelTitle\" destination=\"P6l-3B-Vbo\" id=\"t4x-Va-v5x\"/>\n                                    <outlet property=\"switchEnable\" destination=\"Xeq-4g-lfL\" id=\"5oE-Vx-NHl\"/>\n                                </connections>\n                            </tableViewCell>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"none\" indentationWidth=\"10\" reuseIdentifier=\"StepperTableViewCell\" rowHeight=\"81\" id=\"TxC-o3-T92\" customClass=\"StepperTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"20\" y=\"89\" width=\"335\" height=\"81\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"TxC-o3-T92\" id=\"ICa-uJ-RIh\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"81\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5IM-7d-FH9\">\n                                            <rect key=\"frame\" x=\"10\" y=\"10\" width=\"196.33333333333334\" height=\"61\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"249\" horizontalCompressionResistancePriority=\"249\" verticalCompressionResistancePriority=\"249\" text=\"Keyboard Distance From TextField\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000149011612\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6ui-Nh-dce\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"196.33333333333334\" height=\"49\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" text=\"Set keyboard distance from textField\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YNr-d4-Faa\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"49\" width=\"196.33333333333334\" height=\"12\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                                    <color key=\"textColor\" systemColor=\"secondaryLabelColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"6ui-Nh-dce\" firstAttribute=\"top\" secondItem=\"5IM-7d-FH9\" secondAttribute=\"top\" id=\"3fY-sf-cKk\"/>\n                                                <constraint firstItem=\"6ui-Nh-dce\" firstAttribute=\"leading\" secondItem=\"5IM-7d-FH9\" secondAttribute=\"leading\" id=\"7Ye-KS-g7I\"/>\n                                                <constraint firstItem=\"YNr-d4-Faa\" firstAttribute=\"top\" secondItem=\"6ui-Nh-dce\" secondAttribute=\"bottom\" id=\"Xxf-h6-weR\"/>\n                                                <constraint firstItem=\"YNr-d4-Faa\" firstAttribute=\"leading\" secondItem=\"5IM-7d-FH9\" secondAttribute=\"leading\" id=\"ioX-OY-uNy\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"YNr-d4-Faa\" secondAttribute=\"bottom\" id=\"ne8-c9-ntO\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"YNr-d4-Faa\" secondAttribute=\"trailing\" id=\"wXp-KV-bCy\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"6ui-Nh-dce\" secondAttribute=\"trailing\" id=\"wz1-eI-T6v\"/>\n                                            </constraints>\n                                        </view>\n                                        <view clipsSubviews=\"YES\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EuK-Ao-6lX\">\n                                            <rect key=\"frame\" x=\"211.33333333333334\" y=\"24.666666666666671\" width=\"123.66666666666666\" height=\"32\"/>\n                                            <subviews>\n                                                <stepper opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" maximumValue=\"100\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xBR-Xp-YVU\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"94\" height=\"32\"/>\n                                                </stepper>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" text=\"100\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000000000001\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eZu-JU-5IX\">\n                                                    <rect key=\"frame\" x=\"98.999999999999972\" y=\"8.6666666666666679\" width=\"22.666666666666671\" height=\"14.333333333333332\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"12\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                            <constraints>\n                                                <constraint firstItem=\"xBR-Xp-YVU\" firstAttribute=\"top\" secondItem=\"EuK-Ao-6lX\" secondAttribute=\"top\" id=\"AcG-N5-9e6\"/>\n                                                <constraint firstItem=\"eZu-JU-5IX\" firstAttribute=\"leading\" secondItem=\"xBR-Xp-YVU\" secondAttribute=\"trailing\" constant=\"5\" id=\"E6u-4l-e4z\"/>\n                                                <constraint firstItem=\"xBR-Xp-YVU\" firstAttribute=\"leading\" secondItem=\"EuK-Ao-6lX\" secondAttribute=\"leading\" id=\"PAx-Af-4v7\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"xBR-Xp-YVU\" secondAttribute=\"bottom\" id=\"nNs-JR-hrJ\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"eZu-JU-5IX\" secondAttribute=\"trailing\" constant=\"2\" id=\"rOd-fw-pEV\"/>\n                                                <constraint firstItem=\"eZu-JU-5IX\" firstAttribute=\"centerY\" secondItem=\"EuK-Ao-6lX\" secondAttribute=\"centerY\" id=\"rpZ-g1-ypJ\"/>\n                                            </constraints>\n                                            <variation key=\"userInterfaceIdiom=mac\">\n                                                <mask key=\"subviews\">\n                                                    <exclude reference=\"xBR-Xp-YVU\"/>\n                                                </mask>\n                                            </variation>\n                                        </view>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"5IM-7d-FH9\" secondAttribute=\"bottom\" constant=\"10\" id=\"8lG-by-IdX\"/>\n                                        <constraint firstItem=\"EuK-Ao-6lX\" firstAttribute=\"leading\" secondItem=\"5IM-7d-FH9\" secondAttribute=\"trailing\" constant=\"5\" id=\"Fv4-9S-Rji\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"EuK-Ao-6lX\" secondAttribute=\"trailing\" id=\"VBy-e5-cpO\"/>\n                                        <constraint firstItem=\"EuK-Ao-6lX\" firstAttribute=\"centerY\" secondItem=\"ICa-uJ-RIh\" secondAttribute=\"centerY\" id=\"cHC-UT-SFx\"/>\n                                        <constraint firstItem=\"5IM-7d-FH9\" firstAttribute=\"leading\" secondItem=\"ICa-uJ-RIh\" secondAttribute=\"leading\" constant=\"10\" id=\"voF-P7-ckP\"/>\n                                        <constraint firstItem=\"5IM-7d-FH9\" firstAttribute=\"top\" secondItem=\"ICa-uJ-RIh\" secondAttribute=\"top\" constant=\"10\" id=\"wz1-3Q-NLY\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"labelStepperValue\" destination=\"eZu-JU-5IX\" id=\"jbW-kN-dt2\"/>\n                                    <outlet property=\"labelSubtitle\" destination=\"YNr-d4-Faa\" id=\"XUJ-zz-IJa\"/>\n                                    <outlet property=\"labelTitle\" destination=\"6ui-Nh-dce\" id=\"dRQ-lt-vV1\"/>\n                                    <outlet property=\"stepper\" destination=\"xBR-Xp-YVU\" id=\"ZW9-Zq-hIb\"/>\n                                </connections>\n                            </tableViewCell>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"disclosureIndicator\" indentationWidth=\"10\" reuseIdentifier=\"NavigationTableViewCell\" rowHeight=\"51\" id=\"nwM-SI-X1M\" customClass=\"NavigationTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"20\" y=\"170\" width=\"335\" height=\"51\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"nwM-SI-X1M\" id=\"Yht-CB-6e6\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"304.66666666666669\" height=\"51\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"g9V-pi-3Zf\">\n                                            <rect key=\"frame\" x=\"10\" y=\"10\" width=\"289.66666666666669\" height=\"31\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"249\" horizontalCompressionResistancePriority=\"249\" verticalCompressionResistancePriority=\"249\" text=\"Keyboard Distance From TextField\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000149011612\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eij-19-1a2\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"289.66666666666669\" height=\"19\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Set keyboard distance from textField\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"OWA-3C-V4P\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"289.66666666666669\" height=\"12\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                                    <color key=\"textColor\" systemColor=\"secondaryLabelColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"OWA-3C-V4P\" firstAttribute=\"top\" secondItem=\"eij-19-1a2\" secondAttribute=\"bottom\" id=\"67X-nc-lPn\"/>\n                                                <constraint firstItem=\"eij-19-1a2\" firstAttribute=\"top\" secondItem=\"g9V-pi-3Zf\" secondAttribute=\"top\" id=\"cra-Yv-HgP\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"OWA-3C-V4P\" secondAttribute=\"trailing\" id=\"mRR-bj-TVS\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"OWA-3C-V4P\" secondAttribute=\"bottom\" id=\"mv4-LM-HtF\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"eij-19-1a2\" secondAttribute=\"trailing\" id=\"q88-I0-cTj\"/>\n                                                <constraint firstItem=\"OWA-3C-V4P\" firstAttribute=\"leading\" secondItem=\"g9V-pi-3Zf\" secondAttribute=\"leading\" id=\"v71-Pl-acX\"/>\n                                                <constraint firstItem=\"eij-19-1a2\" firstAttribute=\"leading\" secondItem=\"g9V-pi-3Zf\" secondAttribute=\"leading\" id=\"wsr-Vx-lbD\"/>\n                                            </constraints>\n                                        </view>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"g9V-pi-3Zf\" firstAttribute=\"top\" secondItem=\"Yht-CB-6e6\" secondAttribute=\"top\" constant=\"10\" id=\"NdX-0a-MQU\"/>\n                                        <constraint firstItem=\"g9V-pi-3Zf\" firstAttribute=\"leading\" secondItem=\"Yht-CB-6e6\" secondAttribute=\"leading\" constant=\"10\" id=\"RbY-Gp-8tN\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"g9V-pi-3Zf\" secondAttribute=\"trailing\" constant=\"5\" id=\"TcN-t6-OsS\"/>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"g9V-pi-3Zf\" secondAttribute=\"bottom\" constant=\"10\" id=\"yu6-D6-0vg\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"labelSubtitle\" destination=\"OWA-3C-V4P\" id=\"7tg-3n-j1u\"/>\n                                    <outlet property=\"labelTitle\" destination=\"eij-19-1a2\" id=\"YA3-ku-ypf\"/>\n                                    <segue destination=\"ZXU-ko-Wbd\" kind=\"show\" identifier=\"OptionsViewController\" id=\"YX0-r2-pls\"/>\n                                </connections>\n                            </tableViewCell>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" reuseIdentifier=\"ColorTableViewCell\" rowHeight=\"51\" id=\"xGu-vX-pu8\" customClass=\"ColorTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"20\" y=\"221\" width=\"335\" height=\"51\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"xGu-vX-pu8\" id=\"XS6-Tg-6O3\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"51\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"u9c-8r-xQt\">\n                                            <rect key=\"frame\" x=\"10\" y=\"10\" width=\"320\" height=\"31\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"249\" horizontalCompressionResistancePriority=\"249\" verticalCompressionResistancePriority=\"249\" text=\"Toolbar Tint Color\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000000000001\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gbI-Y1-o9F\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"130.66666666666666\" height=\"19\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" text=\"Set keyboard toolbar tintColor\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kpy-XG-RQx\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"145.66666666666666\" height=\"12\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                                    <color key=\"textColor\" systemColor=\"secondaryLabelColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rOj-zA-Grx\">\n                                                    <rect key=\"frame\" x=\"270\" y=\"0.66666666666666607\" width=\"30\" height=\"30\"/>\n                                                    <color key=\"backgroundColor\" name=\"TouchBarBezel\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"width\" constant=\"30\" id=\"282-Ih-YYR\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"30\" id=\"hvL-dC-oSC\"/>\n                                                    </constraints>\n                                                    <userDefinedRuntimeAttributes>\n                                                        <userDefinedRuntimeAttribute type=\"number\" keyPath=\"layer.cornerRadius\">\n                                                            <integer key=\"value\" value=\"15\"/>\n                                                        </userDefinedRuntimeAttribute>\n                                                    </userDefinedRuntimeAttributes>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"rOj-zA-Grx\" firstAttribute=\"centerY\" secondItem=\"u9c-8r-xQt\" secondAttribute=\"centerY\" id=\"Qlt-IZ-WF8\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"rOj-zA-Grx\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"VzG-iW-e9G\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"kpy-XG-RQx\" secondAttribute=\"bottom\" id=\"ZzF-Xv-Nf0\"/>\n                                                <constraint firstItem=\"kpy-XG-RQx\" firstAttribute=\"top\" secondItem=\"gbI-Y1-o9F\" secondAttribute=\"bottom\" id=\"dWR-bs-2UW\"/>\n                                                <constraint firstItem=\"gbI-Y1-o9F\" firstAttribute=\"leading\" secondItem=\"u9c-8r-xQt\" secondAttribute=\"leading\" id=\"rLO-2P-BZI\"/>\n                                                <constraint firstItem=\"kpy-XG-RQx\" firstAttribute=\"leading\" secondItem=\"u9c-8r-xQt\" secondAttribute=\"leading\" id=\"wNZ-gy-hwk\"/>\n                                                <constraint firstItem=\"gbI-Y1-o9F\" firstAttribute=\"top\" secondItem=\"u9c-8r-xQt\" secondAttribute=\"top\" id=\"yOK-s8-m5o\"/>\n                                            </constraints>\n                                        </view>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"u9c-8r-xQt\" secondAttribute=\"bottom\" constant=\"10\" id=\"CqS-Wj-e6o\"/>\n                                        <constraint firstItem=\"u9c-8r-xQt\" firstAttribute=\"top\" secondItem=\"XS6-Tg-6O3\" secondAttribute=\"top\" constant=\"10\" id=\"Pcz-rV-fMI\"/>\n                                        <constraint firstItem=\"u9c-8r-xQt\" firstAttribute=\"leading\" secondItem=\"XS6-Tg-6O3\" secondAttribute=\"leading\" constant=\"10\" id=\"av2-qY-Eer\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"u9c-8r-xQt\" secondAttribute=\"trailing\" constant=\"5\" id=\"q6Y-Sy-KoP\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"labelSubtitle\" destination=\"kpy-XG-RQx\" id=\"foP-Ib-gA2\"/>\n                                    <outlet property=\"labelTitle\" destination=\"gbI-Y1-o9F\" id=\"xX0-Ux-beI\"/>\n                                    <outlet property=\"selectedColorView\" destination=\"rOj-zA-Grx\" id=\"cn9-EN-iqd\"/>\n                                </connections>\n                            </tableViewCell>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" reuseIdentifier=\"TextFieldTableViewCell\" rowHeight=\"86\" id=\"b2w-cq-Hy9\" customClass=\"TextFieldTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"20\" y=\"272\" width=\"335\" height=\"86\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"b2w-cq-Hy9\" id=\"2vY-XI-2wJ\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"86\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vVh-MB-5CP\">\n                                            <rect key=\"frame\" x=\"10\" y=\"10\" width=\"320\" height=\"66\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"252\" verticalHuggingPriority=\"252\" horizontalCompressionResistancePriority=\"752\" verticalCompressionResistancePriority=\"752\" text=\"Toolbar Done BarButtonItem Text\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000149011612\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"epd-OM-hrb\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"18\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" text=\"Set customised text for displaying instead of done button\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6c1-Bw-1aW\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"18\" width=\"320\" height=\"9\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                                    <color key=\"textColor\" systemColor=\"secondaryLabelColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"252\" verticalHuggingPriority=\"252\" horizontalCompressionResistancePriority=\"752\" verticalCompressionResistancePriority=\"752\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"t1e-qa-Oui\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"32\" width=\"320\" height=\"34\"/>\n                                                    <color key=\"backgroundColor\" systemColor=\"systemGray5Color\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                    <textInputTraits key=\"textInputTraits\"/>\n                                                </textField>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"t1e-qa-Oui\" firstAttribute=\"top\" secondItem=\"6c1-Bw-1aW\" secondAttribute=\"bottom\" constant=\"5\" id=\"FaN-bT-Nim\"/>\n                                                <constraint firstItem=\"6c1-Bw-1aW\" firstAttribute=\"top\" secondItem=\"epd-OM-hrb\" secondAttribute=\"bottom\" id=\"JpE-Zv-Tdg\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"epd-OM-hrb\" secondAttribute=\"trailing\" id=\"LOq-TV-jiz\"/>\n                                                <constraint firstItem=\"t1e-qa-Oui\" firstAttribute=\"leading\" secondItem=\"epd-OM-hrb\" secondAttribute=\"leading\" id=\"MFh-zU-GyO\"/>\n                                                <constraint firstItem=\"6c1-Bw-1aW\" firstAttribute=\"leading\" secondItem=\"vVh-MB-5CP\" secondAttribute=\"leading\" id=\"Re6-TE-gsV\"/>\n                                                <constraint firstItem=\"epd-OM-hrb\" firstAttribute=\"top\" secondItem=\"vVh-MB-5CP\" secondAttribute=\"top\" id=\"WV0-J7-uLY\"/>\n                                                <constraint firstItem=\"epd-OM-hrb\" firstAttribute=\"leading\" secondItem=\"vVh-MB-5CP\" secondAttribute=\"leading\" id=\"Y9M-qT-d5L\"/>\n                                                <constraint firstItem=\"t1e-qa-Oui\" firstAttribute=\"trailing\" secondItem=\"epd-OM-hrb\" secondAttribute=\"trailing\" id=\"fMB-aR-SjT\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"t1e-qa-Oui\" secondAttribute=\"bottom\" id=\"gpl-rL-1L8\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"6c1-Bw-1aW\" secondAttribute=\"trailing\" id=\"thZ-VI-Vsw\"/>\n                                            </constraints>\n                                        </view>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"vVh-MB-5CP\" secondAttribute=\"bottom\" constant=\"10\" id=\"3Qh-6g-4sR\"/>\n                                        <constraint firstItem=\"vVh-MB-5CP\" firstAttribute=\"leading\" secondItem=\"2vY-XI-2wJ\" secondAttribute=\"leading\" constant=\"10\" id=\"SIX-nY-xjN\"/>\n                                        <constraint firstItem=\"vVh-MB-5CP\" firstAttribute=\"top\" secondItem=\"2vY-XI-2wJ\" secondAttribute=\"top\" constant=\"10\" id=\"UpD-A4-EOv\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"vVh-MB-5CP\" secondAttribute=\"trailing\" constant=\"5\" id=\"ZdD-r1-t5F\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"labelSubtitle\" destination=\"6c1-Bw-1aW\" id=\"fXQ-3W-Dse\"/>\n                                    <outlet property=\"labelTitle\" destination=\"epd-OM-hrb\" id=\"Z2P-AN-Fxy\"/>\n                                    <outlet property=\"textField\" destination=\"t1e-qa-Oui\" id=\"h84-pQ-kLF\"/>\n                                </connections>\n                            </tableViewCell>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"none\" indentationWidth=\"10\" reuseIdentifier=\"ImageSwitchTableViewCell\" rowHeight=\"69\" id=\"O5v-R6-FQk\" customClass=\"ImageSwitchTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"20\" y=\"358\" width=\"335\" height=\"69\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"O5v-R6-FQk\" id=\"Yrs-Of-HsX\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"69\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"das-Ec-2aI\">\n                                            <rect key=\"frame\" x=\"10\" y=\"10\" width=\"232\" height=\"49\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"249\" horizontalCompressionResistancePriority=\"249\" verticalCompressionResistancePriority=\"249\" text=\"Toolbar Done BarButtonItem Image\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" minimumScaleFactor=\"0.10000000149011612\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Fho-oc-M7i\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"232\" height=\"37\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" text=\"Enable/Disable IQKeyboardManager\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"83w-3B-iAB\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"37\" width=\"232\" height=\"12\"/>\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"10\"/>\n                                                    <color key=\"textColor\" systemColor=\"secondaryLabelColor\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"Fho-oc-M7i\" firstAttribute=\"top\" secondItem=\"das-Ec-2aI\" secondAttribute=\"top\" id=\"1OP-LY-VOK\"/>\n                                                <constraint firstItem=\"83w-3B-iAB\" firstAttribute=\"top\" secondItem=\"Fho-oc-M7i\" secondAttribute=\"bottom\" id=\"4BE-Te-J9O\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"83w-3B-iAB\" secondAttribute=\"bottom\" id=\"4bz-Wn-Kzf\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"Fho-oc-M7i\" secondAttribute=\"trailing\" id=\"9nI-Og-vUt\"/>\n                                                <constraint firstItem=\"Fho-oc-M7i\" firstAttribute=\"leading\" secondItem=\"das-Ec-2aI\" secondAttribute=\"leading\" id=\"P3S-eS-jRF\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"83w-3B-iAB\" secondAttribute=\"trailing\" id=\"glZ-LX-Sce\"/>\n                                                <constraint firstItem=\"83w-3B-iAB\" firstAttribute=\"leading\" secondItem=\"das-Ec-2aI\" secondAttribute=\"leading\" id=\"xgh-gi-B8Z\"/>\n                                            </constraints>\n                                        </view>\n                                        <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"P3y-8G-WSI\">\n                                            <rect key=\"frame\" x=\"276\" y=\"19\" width=\"51\" height=\"31\"/>\n                                            <color key=\"onTintColor\" name=\"757677\"/>\n                                        </switch>\n                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"center\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" image=\"IQButtonBarArrowDown\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"o2o-MA-fxB\">\n                                            <rect key=\"frame\" x=\"244\" y=\"28.666666666666671\" width=\"30\" height=\"12\"/>\n                                            <constraints>\n                                                <constraint firstAttribute=\"width\" constant=\"30\" id=\"VFH-vv-Tui\"/>\n                                            </constraints>\n                                        </imageView>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"P3y-8G-WSI\" firstAttribute=\"centerY\" secondItem=\"Yrs-Of-HsX\" secondAttribute=\"centerY\" id=\"33k-ZU-Hyz\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"P3y-8G-WSI\" secondAttribute=\"trailing\" constant=\"10\" id=\"5EW-tb-s5V\"/>\n                                        <constraint firstItem=\"das-Ec-2aI\" firstAttribute=\"leading\" secondItem=\"Yrs-Of-HsX\" secondAttribute=\"leading\" constant=\"10\" id=\"A3o-iz-ACq\"/>\n                                        <constraint firstItem=\"P3y-8G-WSI\" firstAttribute=\"leading\" secondItem=\"o2o-MA-fxB\" secondAttribute=\"trailing\" constant=\"2\" id=\"Hgo-rP-uXD\"/>\n                                        <constraint firstItem=\"o2o-MA-fxB\" firstAttribute=\"leading\" secondItem=\"das-Ec-2aI\" secondAttribute=\"trailing\" constant=\"2\" id=\"Q7V-n4-SaS\"/>\n                                        <constraint firstItem=\"das-Ec-2aI\" firstAttribute=\"top\" secondItem=\"Yrs-Of-HsX\" secondAttribute=\"top\" constant=\"10\" id=\"VYo-Vj-ddi\"/>\n                                        <constraint firstAttribute=\"bottom\" secondItem=\"das-Ec-2aI\" secondAttribute=\"bottom\" constant=\"10\" id=\"e4A-3b-Kou\"/>\n                                        <constraint firstItem=\"P3y-8G-WSI\" firstAttribute=\"centerY\" secondItem=\"o2o-MA-fxB\" secondAttribute=\"centerY\" id=\"vwF-gR-1Yc\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"arrowImageView\" destination=\"o2o-MA-fxB\" id=\"wV8-FI-nQV\"/>\n                                    <outlet property=\"labelSubtitle\" destination=\"83w-3B-iAB\" id=\"1QS-Ss-OPk\"/>\n                                    <outlet property=\"labelTitle\" destination=\"Fho-oc-M7i\" id=\"tpz-Ah-uZE\"/>\n                                    <outlet property=\"switchEnable\" destination=\"P3y-8G-WSI\" id=\"sj0-I7-EjR\"/>\n                                </connections>\n                            </tableViewCell>\n                        </prototypes>\n                        <sections/>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"a61-Vn-sFg\" id=\"iDg-Pi-Jgz\"/>\n                            <outlet property=\"delegate\" destination=\"a61-Vn-sFg\" id=\"CMS-4o-DI9\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"Settings\" id=\"kw6-7O-wxw\">\n                        <barButtonItem key=\"rightBarButtonItem\" style=\"done\" systemItem=\"done\" id=\"MdV-yk-Hsj\">\n                            <connections>\n                                <action selector=\"doneAction:\" destination=\"a61-Vn-sFg\" id=\"MNU-YV-d8i\"/>\n                            </connections>\n                        </barButtonItem>\n                    </navigationItem>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"rxf-XD-lY8\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-187\" y=\"1704\"/>\n        </scene>\n        <!--Options-->\n        <scene sceneID=\"KAM-fd-clq\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"OptionsViewController\" id=\"ZXU-ko-Wbd\" customClass=\"OptionsViewController\" customModule=\"DemoSwift\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"grouped\" separatorStyle=\"default\" rowHeight=\"50\" sectionHeaderHeight=\"18\" sectionFooterHeight=\"18\" id=\"0zd-6T-nzy\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"812\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <prototypes>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"default\" accessoryType=\"checkmark\" indentationWidth=\"10\" reuseIdentifier=\"OptionTableViewCell\" id=\"8mo-kC-Wyf\" customClass=\"OptionTableViewCell\" customModule=\"DemoSwift\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"38\" width=\"375\" height=\"50\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"8mo-kC-Wyf\" id=\"NOG-NC-g47\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"331\" height=\"50\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Toolbar Manage Behaviour\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iPm-jy-a7o\">\n                                            <rect key=\"frame\" x=\"10\" y=\"16\" width=\"316\" height=\"18\"/>\n                                            <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"15\"/>\n                                            <nil key=\"highlightedColor\"/>\n                                        </label>\n                                    </subviews>\n                                    <constraints>\n                                        <constraint firstItem=\"iPm-jy-a7o\" firstAttribute=\"centerY\" secondItem=\"NOG-NC-g47\" secondAttribute=\"centerY\" id=\"UTR-kx-Roc\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"iPm-jy-a7o\" secondAttribute=\"trailing\" constant=\"5\" id=\"ct3-1k-lZO\"/>\n                                        <constraint firstItem=\"iPm-jy-a7o\" firstAttribute=\"leading\" secondItem=\"NOG-NC-g47\" secondAttribute=\"leading\" constant=\"10\" id=\"khX-uZ-EBL\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                                <connections>\n                                    <outlet property=\"labelOption\" destination=\"iPm-jy-a7o\" id=\"PfV-Cd-vxk\"/>\n                                </connections>\n                            </tableViewCell>\n                        </prototypes>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"ZXU-ko-Wbd\" id=\"RIJ-NG-9C9\"/>\n                            <outlet property=\"delegate\" destination=\"ZXU-ko-Wbd\" id=\"10w-y3-ejP\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"Options\" id=\"H3G-vI-2WD\"/>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"3iB-Er-LOs\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"507\" y=\"1704\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"IQButtonBarArrowDown\" width=\"21\" height=\"12\"/>\n        <namedColor name=\"757677\">\n            <color red=\"0.45882352941176469\" green=\"0.46274509803921571\" blue=\"0.46666666666666667\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"TouchBarBezel\">\n            <color red=\"0.68627450980392157\" green=\"0.32156862745098042\" blue=\"0.87058823529411766\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <systemColor name=\"secondaryLabelColor\">\n            <color red=\"0.23529411764705882\" green=\"0.23529411764705882\" blue=\"0.2627450980392157\" alpha=\"0.59999999999999998\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemBackgroundColor\">\n            <color white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemBlueColor\">\n            <color red=\"0.0\" green=\"0.47843137254901963\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemGray4Color\">\n            <color red=\"0.81960784313725488\" green=\"0.81960784313725488\" blue=\"0.83921568627450982\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemGray5Color\">\n            <color red=\"0.89803921568627454\" green=\"0.89803921568627454\" blue=\"0.91764705882352937\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/SpecialCase.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"24127\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\">\n    <device id=\"retina6_1\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"24063\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Special Cases-->\n        <scene sceneID=\"H0c-gk-sJO\">\n            <objects>\n                <viewController storyboardIdentifier=\"SpecialCaseViewController\" id=\"dPG-sk-vRY\" customClass=\"SpecialCaseViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"PdK-Kw-AQ1\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <searchBar contentMode=\"redraw\" searchBarStyle=\"minimal\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Lsj-4F-dUH\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"96\" width=\"414\" height=\"64\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                                <connections>\n                                    <outlet property=\"delegate\" destination=\"dPG-sk-vRY\" id=\"Ogy-4u-RWW\"/>\n                                </connections>\n                            </searchBar>\n                            <button opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"system\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YrO-Gs-dk3\">\n                                <rect key=\"frame\" x=\"5\" y=\"165\" width=\"173\" height=\"30\"/>\n                                <state key=\"normal\" title=\"Show Alert with TextField\">\n                                    <color key=\"titleColor\" systemColor=\"systemBlueColor\"/>\n                                    <color key=\"titleShadowColor\" red=\"0.5\" green=\"0.5\" blue=\"0.5\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                </state>\n                                <connections>\n                                    <action selector=\"showAlertClicked:\" destination=\"dPG-sk-vRY\" eventType=\"touchUpInside\" id=\"5rA-wP-JUb\"/>\n                                </connections>\n                            </button>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Custom Work\" textAlignment=\"center\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2mf-mU-ovU\">\n                                <rect key=\"frame\" x=\"183\" y=\"163\" width=\"226\" height=\"34\"/>\n                                <color key=\"backgroundColor\" systemColor=\"systemGray5Color\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                                <connections>\n                                    <outlet property=\"delegate\" destination=\"dPG-sk-vRY\" id=\"05U-Nx-aNy\"/>\n                                </connections>\n                            </textField>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"SHK-82-xFg\">\n                                <rect key=\"frame\" x=\"5\" y=\"207\" width=\"404\" height=\"479\"/>\n                                <subviews>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"k8L-Hj-hKb\">\n                                        <rect key=\"frame\" x=\"10\" y=\"10\" width=\"384\" height=\"98\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"102\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 1\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LhW-1m-VYd\">\n                                                <rect key=\"frame\" x=\"10\" y=\"10\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"0.24049992778501456\" blue=\"0.24961712136854244\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"103\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 2\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"48H-nl-1ha\">\n                                                <rect key=\"frame\" x=\"10\" y=\"54\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"0.23946265798981581\" blue=\"0.40014717068959244\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"LhW-1m-VYd\" firstAttribute=\"leading\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"leading\" constant=\"10\" id=\"FNj-d2-fIT\"/>\n                                            <constraint firstItem=\"48H-nl-1ha\" firstAttribute=\"leading\" secondItem=\"LhW-1m-VYd\" secondAttribute=\"leading\" id=\"JwJ-Iy-QRv\"/>\n                                            <constraint firstItem=\"48H-nl-1ha\" firstAttribute=\"trailing\" secondItem=\"LhW-1m-VYd\" secondAttribute=\"trailing\" id=\"L07-Pv-YiB\"/>\n                                            <constraint firstAttribute=\"bottom\" secondItem=\"48H-nl-1ha\" secondAttribute=\"bottom\" constant=\"10\" id=\"MKe-LZ-Oo9\"/>\n                                            <constraint firstItem=\"48H-nl-1ha\" firstAttribute=\"top\" secondItem=\"LhW-1m-VYd\" secondAttribute=\"bottom\" constant=\"10\" id=\"P3E-x6-feO\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"LhW-1m-VYd\" secondAttribute=\"trailing\" constant=\"10\" id=\"jny-h3-WxC\"/>\n                                            <constraint firstItem=\"LhW-1m-VYd\" firstAttribute=\"top\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"top\" constant=\"10\" id=\"vT0-Na-T5x\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uOD-xJ-Vjb\">\n                                        <rect key=\"frame\" x=\"10\" y=\"118\" width=\"384\" height=\"243\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"102\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 3\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UJZ-io-mQK\">\n                                                <rect key=\"frame\" x=\"10\" y=\"104.5\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <color key=\"tintColor\" red=\"0.42113987790245616\" green=\"0.2545063021333267\" blue=\"0.47692340353260865\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"UJZ-io-mQK\" firstAttribute=\"centerY\" secondItem=\"uOD-xJ-Vjb\" secondAttribute=\"centerY\" id=\"4gD-H1-KBE\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"UJZ-io-mQK\" secondAttribute=\"trailing\" constant=\"10\" id=\"OVi-NX-eaz\"/>\n                                            <constraint firstItem=\"UJZ-io-mQK\" firstAttribute=\"leading\" secondItem=\"uOD-xJ-Vjb\" secondAttribute=\"leading\" constant=\"10\" id=\"tub-d9-0xL\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uYv-to-iCC\">\n                                        <rect key=\"frame\" x=\"10\" y=\"371\" width=\"384\" height=\"98\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"102\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 4\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yDj-sx-3pn\">\n                                                <rect key=\"frame\" x=\"10\" y=\"10\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <color key=\"tintColor\" red=\"0.26544843492011005\" green=\"0.27984934521839783\" blue=\"0.47692340353260865\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"103\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 5\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cub-N3-8xz\">\n                                                <rect key=\"frame\" x=\"10\" y=\"54\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <color key=\"tintColor\" red=\"0.28746597428324966\" green=\"0.4522703921823798\" blue=\"0.47692340353260865\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"cub-N3-8xz\" firstAttribute=\"leading\" secondItem=\"yDj-sx-3pn\" secondAttribute=\"leading\" id=\"76g-ak-H5w\"/>\n                                            <constraint firstItem=\"yDj-sx-3pn\" firstAttribute=\"leading\" secondItem=\"uYv-to-iCC\" secondAttribute=\"leading\" constant=\"10\" id=\"Ij9-nS-uFR\"/>\n                                            <constraint firstItem=\"yDj-sx-3pn\" firstAttribute=\"top\" secondItem=\"uYv-to-iCC\" secondAttribute=\"top\" constant=\"10\" id=\"Mdu-pl-TeR\"/>\n                                            <constraint firstItem=\"cub-N3-8xz\" firstAttribute=\"top\" secondItem=\"yDj-sx-3pn\" secondAttribute=\"bottom\" constant=\"10\" id=\"VXv-de-zVN\"/>\n                                            <constraint firstItem=\"cub-N3-8xz\" firstAttribute=\"trailing\" secondItem=\"yDj-sx-3pn\" secondAttribute=\"trailing\" id=\"YrJ-Rc-7sP\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"yDj-sx-3pn\" secondAttribute=\"trailing\" constant=\"10\" id=\"b9I-Vb-bzX\"/>\n                                            <constraint firstAttribute=\"bottom\" secondItem=\"cub-N3-8xz\" secondAttribute=\"bottom\" constant=\"10\" id=\"e1b-gW-xhJ\"/>\n                                        </constraints>\n                                    </view>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"ABB0BA\"/>\n                                <constraints>\n                                    <constraint firstItem=\"uOD-xJ-Vjb\" firstAttribute=\"top\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"bottom\" constant=\"10\" id=\"4jM-my-kWr\"/>\n                                    <constraint firstItem=\"k8L-Hj-hKb\" firstAttribute=\"top\" secondItem=\"SHK-82-xFg\" secondAttribute=\"top\" constant=\"10\" id=\"FKe-5c-V5l\"/>\n                                    <constraint firstItem=\"k8L-Hj-hKb\" firstAttribute=\"leading\" secondItem=\"SHK-82-xFg\" secondAttribute=\"leading\" constant=\"10\" id=\"Fys-LT-knM\"/>\n                                    <constraint firstItem=\"uOD-xJ-Vjb\" firstAttribute=\"trailing\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"trailing\" id=\"L17-Wi-uEz\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"trailing\" constant=\"10\" id=\"WvP-2l-ric\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"uYv-to-iCC\" secondAttribute=\"bottom\" constant=\"10\" id=\"d4g-o7-qZy\"/>\n                                    <constraint firstItem=\"uYv-to-iCC\" firstAttribute=\"top\" secondItem=\"uOD-xJ-Vjb\" secondAttribute=\"bottom\" constant=\"10\" id=\"jX6-vP-Cb6\"/>\n                                    <constraint firstItem=\"uOD-xJ-Vjb\" firstAttribute=\"leading\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"leading\" id=\"o9E-ze-X0n\"/>\n                                    <constraint firstItem=\"uYv-to-iCC\" firstAttribute=\"leading\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"leading\" id=\"u0I-jF-5Kx\"/>\n                                    <constraint firstItem=\"uYv-to-iCC\" firstAttribute=\"trailing\" secondItem=\"k8L-Hj-hKb\" secondAttribute=\"trailing\" id=\"v8D-5L-ce9\"/>\n                                </constraints>\n                            </view>\n                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bu5-oQ-42U\">\n                                <rect key=\"frame\" x=\"5\" y=\"699\" width=\"63\" height=\"28\"/>\n                                <color key=\"onTintColor\" name=\"757677\"/>\n                                <connections>\n                                    <action selector=\"switch1Action:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"w7K-q9-qPu\"/>\n                                    <action selector=\"switch1UserInteractionAction:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"mqs-zq-oFu\"/>\n                                </connections>\n                            </switch>\n                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aom-uE-BXB\">\n                                <rect key=\"frame\" x=\"5\" y=\"743\" width=\"63\" height=\"28\"/>\n                                <color key=\"onTintColor\" name=\"757677\"/>\n                                <connections>\n                                    <action selector=\"switch2Action:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"LsF-4D-pCa\"/>\n                                    <action selector=\"switch2UserInteractionAction:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"bLx-jM-5GL\"/>\n                                </connections>\n                            </switch>\n                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eWk-1G-dAW\">\n                                <rect key=\"frame\" x=\"5\" y=\"787\" width=\"63\" height=\"28\"/>\n                                <color key=\"onTintColor\" name=\"757677\"/>\n                                <connections>\n                                    <action selector=\"switch3Action:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"QUV-Yg-nAq\"/>\n                                    <action selector=\"switch3UserInteractionAction:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"Epd-gi-vxY\"/>\n                                </connections>\n                            </switch>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"103\" contentMode=\"scaleToFill\" enabled=\"NO\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField.enabled = NO\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"d6z-1T-UIh\">\n                                <rect key=\"frame\" x=\"76\" y=\"696\" width=\"262\" height=\"34\"/>\n                                <color key=\"backgroundColor\" systemColor=\"systemGray5Color\"/>\n                                <color key=\"tintColor\" red=\"0.42418679255223279\" green=\"0.47692340353260865\" blue=\"0.44535587797670728\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                <connections>\n                                    <outlet property=\"delegate\" destination=\"dPG-sk-vRY\" id=\"y6W-d4-97L\"/>\n                                </connections>\n                            </textField>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"102\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wcb-LB-3eZ\">\n                                <rect key=\"frame\" x=\"76\" y=\"740\" width=\"262\" height=\"34\"/>\n                                <color key=\"backgroundColor\" systemColor=\"systemGray5Color\"/>\n                                <color key=\"tintColor\" red=\"0.24721406846218438\" green=\"0.47692340353260865\" blue=\"0.14491207448407367\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <string key=\"placeholder\">TextField enabled. Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test,</string>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                <connections>\n                                    <outlet property=\"delegate\" destination=\"dPG-sk-vRY\" id=\"Ehn-Oa-7pM\"/>\n                                </connections>\n                            </textField>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" tag=\"104\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"textField.userEnteractionEnabled = NO\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"PfH-qV-9D8\">\n                                <rect key=\"frame\" x=\"76\" y=\"784\" width=\"262\" height=\"34\"/>\n                                <color key=\"backgroundColor\" systemColor=\"systemGray5Color\"/>\n                                <color key=\"tintColor\" red=\"0.47692340353260865\" green=\"0.21517294103872731\" blue=\"0.38909220091310093\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numberPad\"/>\n                                <connections>\n                                    <outlet property=\"delegate\" destination=\"dPG-sk-vRY\" id=\"SZk-6Q-XQd\"/>\n                                </connections>\n                            </textField>\n                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Gc0-kK-H9m\">\n                                <rect key=\"frame\" x=\"348\" y=\"699\" width=\"63\" height=\"28\"/>\n                                <color key=\"onTintColor\" name=\"757677\"/>\n                                <connections>\n                                    <action selector=\"switch1Action:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"FOK-zA-pLe\"/>\n                                </connections>\n                            </switch>\n                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"j2n-iP-pDN\">\n                                <rect key=\"frame\" x=\"348\" y=\"743\" width=\"63\" height=\"28\"/>\n                                <color key=\"onTintColor\" name=\"757677\"/>\n                                <connections>\n                                    <action selector=\"switch2Action:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"tXa-Du-4gN\"/>\n                                </connections>\n                            </switch>\n                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UW7-qN-2eU\">\n                                <rect key=\"frame\" x=\"348\" y=\"787\" width=\"63\" height=\"28\"/>\n                                <color key=\"onTintColor\" name=\"757677\"/>\n                                <connections>\n                                    <action selector=\"switch3Action:\" destination=\"dPG-sk-vRY\" eventType=\"valueChanged\" id=\"CPc-Xs-9c7\"/>\n                                </connections>\n                            </switch>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Y2z-kz-cHH\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"d6z-1T-UIh\" firstAttribute=\"top\" secondItem=\"SHK-82-xFg\" secondAttribute=\"bottom\" constant=\"10\" id=\"1Nc-G2-4bi\"/>\n                            <constraint firstItem=\"YrO-Gs-dk3\" firstAttribute=\"leading\" secondItem=\"Y2z-kz-cHH\" secondAttribute=\"leading\" constant=\"5\" id=\"2Ia-Ir-tjR\"/>\n                            <constraint firstItem=\"SHK-82-xFg\" firstAttribute=\"leading\" secondItem=\"YrO-Gs-dk3\" secondAttribute=\"leading\" id=\"2c0-q8-YTQ\"/>\n                            <constraint firstItem=\"UW7-qN-2eU\" firstAttribute=\"leading\" secondItem=\"PfH-qV-9D8\" secondAttribute=\"trailing\" constant=\"10\" id=\"2y0-Xm-x0w\"/>\n                            <constraint firstItem=\"2mf-mU-ovU\" firstAttribute=\"leading\" secondItem=\"YrO-Gs-dk3\" secondAttribute=\"trailing\" constant=\"5\" id=\"7nS-CG-aKX\"/>\n                            <constraint firstItem=\"Y2z-kz-cHH\" firstAttribute=\"trailing\" secondItem=\"2mf-mU-ovU\" secondAttribute=\"trailing\" constant=\"5\" id=\"BgQ-Pn-ZzJ\"/>\n                            <constraint firstItem=\"Gc0-kK-H9m\" firstAttribute=\"trailing\" secondItem=\"SHK-82-xFg\" secondAttribute=\"trailing\" id=\"BzK-nz-a7c\"/>\n                            <constraint firstItem=\"2mf-mU-ovU\" firstAttribute=\"trailing\" secondItem=\"SHK-82-xFg\" secondAttribute=\"trailing\" id=\"H3P-9T-gIR\"/>\n                            <constraint firstItem=\"Lsj-4F-dUH\" firstAttribute=\"top\" secondItem=\"Y2z-kz-cHH\" secondAttribute=\"top\" id=\"Hvk-nS-EmF\"/>\n                            <constraint firstItem=\"Gc0-kK-H9m\" firstAttribute=\"leading\" secondItem=\"d6z-1T-UIh\" secondAttribute=\"trailing\" constant=\"10\" id=\"MZO-SP-4ep\"/>\n                            <constraint firstItem=\"SHK-82-xFg\" firstAttribute=\"top\" secondItem=\"2mf-mU-ovU\" secondAttribute=\"bottom\" constant=\"10\" id=\"NQx-z5-8bw\"/>\n                            <constraint firstItem=\"UW7-qN-2eU\" firstAttribute=\"centerY\" secondItem=\"eWk-1G-dAW\" secondAttribute=\"centerY\" id=\"PLE-C8-CA5\"/>\n                            <constraint firstItem=\"j2n-iP-pDN\" firstAttribute=\"leading\" secondItem=\"wcb-LB-3eZ\" secondAttribute=\"trailing\" constant=\"10\" id=\"PQk-9a-k5q\"/>\n                            <constraint firstItem=\"wcb-LB-3eZ\" firstAttribute=\"leading\" secondItem=\"aom-uE-BXB\" secondAttribute=\"trailing\" constant=\"10\" id=\"Rmo-sy-VtW\"/>\n                            <constraint firstItem=\"j2n-iP-pDN\" firstAttribute=\"trailing\" secondItem=\"SHK-82-xFg\" secondAttribute=\"trailing\" id=\"UMx-Hw-kQF\"/>\n                            <constraint firstItem=\"bu5-oQ-42U\" firstAttribute=\"leading\" secondItem=\"YrO-Gs-dk3\" secondAttribute=\"leading\" id=\"aJa-Du-Ld4\"/>\n                            <constraint firstItem=\"2mf-mU-ovU\" firstAttribute=\"centerY\" secondItem=\"YrO-Gs-dk3\" secondAttribute=\"centerY\" id=\"aid-ZU-a59\"/>\n                            <constraint firstItem=\"Y2z-kz-cHH\" firstAttribute=\"bottom\" secondItem=\"PfH-qV-9D8\" secondAttribute=\"bottom\" constant=\"10\" id=\"ayo-XV-PMl\"/>\n                            <constraint firstItem=\"aom-uE-BXB\" firstAttribute=\"leading\" secondItem=\"YrO-Gs-dk3\" secondAttribute=\"leading\" id=\"baK-tE-e1v\"/>\n                            <constraint firstItem=\"PfH-qV-9D8\" firstAttribute=\"leading\" secondItem=\"eWk-1G-dAW\" secondAttribute=\"trailing\" constant=\"10\" id=\"cCO-Mw-96N\"/>\n                            <constraint firstItem=\"YrO-Gs-dk3\" firstAttribute=\"top\" secondItem=\"Lsj-4F-dUH\" secondAttribute=\"bottom\" constant=\"5\" id=\"dce-Sv-c0V\"/>\n                            <constraint firstItem=\"PfH-qV-9D8\" firstAttribute=\"centerY\" secondItem=\"eWk-1G-dAW\" secondAttribute=\"centerY\" id=\"jfe-tP-D6H\"/>\n                            <constraint firstItem=\"d6z-1T-UIh\" firstAttribute=\"leading\" secondItem=\"bu5-oQ-42U\" secondAttribute=\"trailing\" constant=\"10\" id=\"k8e-FU-GyU\"/>\n                            <constraint firstItem=\"PfH-qV-9D8\" firstAttribute=\"top\" secondItem=\"wcb-LB-3eZ\" secondAttribute=\"bottom\" constant=\"10\" id=\"lPf-pj-n1G\"/>\n                            <constraint firstItem=\"d6z-1T-UIh\" firstAttribute=\"centerY\" secondItem=\"bu5-oQ-42U\" secondAttribute=\"centerY\" id=\"m2T-Ys-Snh\"/>\n                            <constraint firstItem=\"UW7-qN-2eU\" firstAttribute=\"trailing\" secondItem=\"SHK-82-xFg\" secondAttribute=\"trailing\" id=\"rnV-LE-YXA\"/>\n                            <constraint firstItem=\"j2n-iP-pDN\" firstAttribute=\"centerY\" secondItem=\"aom-uE-BXB\" secondAttribute=\"centerY\" id=\"sLm-aJ-Vyz\"/>\n                            <constraint firstItem=\"Y2z-kz-cHH\" firstAttribute=\"trailing\" secondItem=\"Lsj-4F-dUH\" secondAttribute=\"trailing\" id=\"t2S-Ek-bw0\"/>\n                            <constraint firstItem=\"eWk-1G-dAW\" firstAttribute=\"leading\" secondItem=\"YrO-Gs-dk3\" secondAttribute=\"leading\" id=\"wEd-ah-R8x\"/>\n                            <constraint firstItem=\"Gc0-kK-H9m\" firstAttribute=\"centerY\" secondItem=\"bu5-oQ-42U\" secondAttribute=\"centerY\" id=\"wV2-Ic-55A\"/>\n                            <constraint firstItem=\"wcb-LB-3eZ\" firstAttribute=\"top\" secondItem=\"d6z-1T-UIh\" secondAttribute=\"bottom\" constant=\"10\" id=\"wh0-3o-MCq\"/>\n                            <constraint firstItem=\"Lsj-4F-dUH\" firstAttribute=\"leading\" secondItem=\"Y2z-kz-cHH\" secondAttribute=\"leading\" id=\"xJM-oZ-wDk\"/>\n                            <constraint firstItem=\"wcb-LB-3eZ\" firstAttribute=\"centerY\" secondItem=\"aom-uE-BXB\" secondAttribute=\"centerY\" id=\"z8m-F1-5JB\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Special Cases\" id=\"iYf-Wa-Sqo\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"g53-aV-qov\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"customWorkTextField\" destination=\"2mf-mU-ovU\" id=\"3GY-QD-LQI\"/>\n                        <outlet property=\"switchEnabled1\" destination=\"Gc0-kK-H9m\" id=\"0HL-Vi-p0F\"/>\n                        <outlet property=\"switchEnabled2\" destination=\"j2n-iP-pDN\" id=\"7cv-Lu-dw6\"/>\n                        <outlet property=\"switchEnabled3\" destination=\"UW7-qN-2eU\" id=\"aHs-TK-eVJ\"/>\n                        <outlet property=\"switchInteraction1\" destination=\"bu5-oQ-42U\" id=\"i5y-Fl-5ZJ\"/>\n                        <outlet property=\"switchInteraction2\" destination=\"aom-uE-BXB\" id=\"00j-tV-rFu\"/>\n                        <outlet property=\"switchInteraction3\" destination=\"eWk-1G-dAW\" id=\"Olt-H5-eAl\"/>\n                        <outlet property=\"textField6\" destination=\"d6z-1T-UIh\" id=\"crk-5c-cXa\"/>\n                        <outlet property=\"textField7\" destination=\"wcb-LB-3eZ\" id=\"rOk-YJ-3nK\"/>\n                        <outlet property=\"textField8\" destination=\"PfH-qV-9D8\" id=\"Htp-Rs-lNq\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"NUL-9c-m8o\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-1196\" y=\"216\"/>\n        </scene>\n        <!--WKWebView Example-->\n        <scene sceneID=\"MtW-0i-ACI\">\n            <objects>\n                <viewController storyboardIdentifier=\"WebViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"JDM-Xg-93g\" customClass=\"WebViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"XOS-eg-1xO\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8bu-NR-xhG\">\n                                <rect key=\"frame\" x=\"20\" y=\"116\" width=\"374\" height=\"34\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                            </textField>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MSG-Rg-LQK\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"170\" width=\"414\" height=\"584\"/>\n                            </view>\n                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2uI-gz-Tn0\">\n                                <rect key=\"frame\" x=\"20\" y=\"774\" width=\"374\" height=\"34\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\"/>\n                            </textField>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"KD4-aj-Q4c\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"KD4-aj-Q4c\" firstAttribute=\"trailing\" secondItem=\"MSG-Rg-LQK\" secondAttribute=\"trailing\" id=\"2g3-DB-bZm\"/>\n                            <constraint firstItem=\"MSG-Rg-LQK\" firstAttribute=\"top\" secondItem=\"8bu-NR-xhG\" secondAttribute=\"bottom\" constant=\"20\" id=\"4A7-QF-2r5\"/>\n                            <constraint firstItem=\"MSG-Rg-LQK\" firstAttribute=\"leading\" secondItem=\"KD4-aj-Q4c\" secondAttribute=\"leading\" id=\"6g1-c7-fX4\"/>\n                            <constraint firstItem=\"8bu-NR-xhG\" firstAttribute=\"leading\" secondItem=\"KD4-aj-Q4c\" secondAttribute=\"leading\" constant=\"20\" id=\"Gby-0b-hBY\"/>\n                            <constraint firstItem=\"2uI-gz-Tn0\" firstAttribute=\"leading\" secondItem=\"8bu-NR-xhG\" secondAttribute=\"leading\" id=\"KNq-C5-4mq\"/>\n                            <constraint firstItem=\"8bu-NR-xhG\" firstAttribute=\"top\" secondItem=\"KD4-aj-Q4c\" secondAttribute=\"top\" constant=\"20\" id=\"R0c-u4-eSO\"/>\n                            <constraint firstItem=\"2uI-gz-Tn0\" firstAttribute=\"trailing\" secondItem=\"8bu-NR-xhG\" secondAttribute=\"trailing\" id=\"T6h-Ff-pOu\"/>\n                            <constraint firstItem=\"KD4-aj-Q4c\" firstAttribute=\"bottom\" secondItem=\"2uI-gz-Tn0\" secondAttribute=\"bottom\" constant=\"20\" id=\"giS-YY-OMy\"/>\n                            <constraint firstItem=\"KD4-aj-Q4c\" firstAttribute=\"trailing\" secondItem=\"8bu-NR-xhG\" secondAttribute=\"trailing\" constant=\"20\" id=\"mBK-6Z-PhV\"/>\n                            <constraint firstItem=\"2uI-gz-Tn0\" firstAttribute=\"top\" secondItem=\"MSG-Rg-LQK\" secondAttribute=\"bottom\" constant=\"20\" id=\"nC2-uw-lSO\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"WKWebView Example\" id=\"3s1-JL-XZo\"/>\n                    <connections>\n                        <outlet property=\"webContainerView\" destination=\"MSG-Rg-LQK\" id=\"kRE-vv-cB9\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"o51-Fr-4am\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-2110\" y=\"217\"/>\n        </scene>\n        <!--CustomView Demo-->\n        <scene sceneID=\"MYw-ck-tPn\">\n            <objects>\n                <viewController storyboardIdentifier=\"CustomViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"P54-QV-iJ7\" customClass=\"CustomViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"vKd-hd-wnE\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uLB-dv-85O\" customClass=\"IQDeepResponderContainerView\" customModule=\"IQKeyboardToolbarManager\">\n                                <rect key=\"frame\" x=\"10\" y=\"136\" width=\"394\" height=\"682\"/>\n                                <subviews>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Oad-Sj-fOj\">\n                                        <rect key=\"frame\" x=\"5\" y=\"5\" width=\"384\" height=\"108\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"101\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wyq-GK-KgK\">\n                                                <rect key=\"frame\" x=\"10\" y=\"37\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"alphabet\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"wyq-GK-KgK\" firstAttribute=\"centerY\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"centerY\" id=\"TuU-Gl-cgO\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"wyq-GK-KgK\" secondAttribute=\"trailing\" constant=\"10\" id=\"oVt-qz-7tB\"/>\n                                            <constraint firstItem=\"wyq-GK-KgK\" firstAttribute=\"leading\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"leading\" constant=\"10\" id=\"zz0-1G-uOc\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uhz-yA-0bZ\">\n                                        <rect key=\"frame\" x=\"5\" y=\"118\" width=\"384\" height=\"107.5\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"102\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zdb-k8-QUh\">\n                                                <rect key=\"frame\" x=\"10\" y=\"37\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numbersAndPunctuation\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"zdb-k8-QUh\" firstAttribute=\"leading\" secondItem=\"uhz-yA-0bZ\" secondAttribute=\"leading\" constant=\"10\" id=\"1bx-O5-SLj\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"zdb-k8-QUh\" secondAttribute=\"trailing\" constant=\"10\" id=\"9Hb-x3-WMs\"/>\n                                            <constraint firstItem=\"zdb-k8-QUh\" firstAttribute=\"centerY\" secondItem=\"uhz-yA-0bZ\" secondAttribute=\"centerY\" id=\"bQd-tQ-S7e\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8PR-I6-gEU\">\n                                        <rect key=\"frame\" x=\"5\" y=\"230.5\" width=\"384\" height=\"108\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"103\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eNh-28-ex5\">\n                                                <rect key=\"frame\" x=\"10\" y=\"37\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"eNh-28-ex5\" firstAttribute=\"centerY\" secondItem=\"8PR-I6-gEU\" secondAttribute=\"centerY\" id=\"LBf-6b-3Y7\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"eNh-28-ex5\" secondAttribute=\"trailing\" constant=\"10\" id=\"lHA-Hi-f2o\"/>\n                                            <constraint firstItem=\"eNh-28-ex5\" firstAttribute=\"leading\" secondItem=\"8PR-I6-gEU\" secondAttribute=\"leading\" constant=\"10\" id=\"tC9-SK-Hnb\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UW7-Qt-UNy\">\n                                        <rect key=\"frame\" x=\"5\" y=\"343.5\" width=\"384\" height=\"108\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"104\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QOR-Pv-XwY\">\n                                                <rect key=\"frame\" x=\"10\" y=\"37\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numberPad\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"QOR-Pv-XwY\" secondAttribute=\"trailing\" constant=\"10\" id=\"fsy-m4-jeC\"/>\n                                            <constraint firstItem=\"QOR-Pv-XwY\" firstAttribute=\"leading\" secondItem=\"UW7-Qt-UNy\" secondAttribute=\"leading\" constant=\"10\" id=\"vfC-3f-qgY\"/>\n                                            <constraint firstItem=\"QOR-Pv-XwY\" firstAttribute=\"centerY\" secondItem=\"UW7-Qt-UNy\" secondAttribute=\"centerY\" id=\"yI1-py-3Yl\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"BId-gB-gYg\">\n                                        <rect key=\"frame\" x=\"5\" y=\"456.5\" width=\"384\" height=\"107.5\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"103\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0NB-yU-ihq\">\n                                                <rect key=\"frame\" x=\"10\" y=\"37\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"URL\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"0NB-yU-ihq\" firstAttribute=\"leading\" secondItem=\"BId-gB-gYg\" secondAttribute=\"leading\" constant=\"10\" id=\"Dow-cR-VuL\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"0NB-yU-ihq\" secondAttribute=\"trailing\" constant=\"10\" id=\"Wja-jK-eCh\"/>\n                                            <constraint firstItem=\"0NB-yU-ihq\" firstAttribute=\"centerY\" secondItem=\"BId-gB-gYg\" secondAttribute=\"centerY\" id=\"faJ-lr-bxO\"/>\n                                        </constraints>\n                                    </view>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ncx-P1-tBt\">\n                                        <rect key=\"frame\" x=\"5\" y=\"569\" width=\"384\" height=\"108\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" tag=\"104\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"m64-Rm-VMc\">\n                                                <rect key=\"frame\" x=\"10\" y=\"37\" width=\"364\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\" keyboardType=\"numberPad\"/>\n                                            </textField>\n                                        </subviews>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstItem=\"m64-Rm-VMc\" firstAttribute=\"centerY\" secondItem=\"ncx-P1-tBt\" secondAttribute=\"centerY\" id=\"iKg-De-EK2\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"m64-Rm-VMc\" secondAttribute=\"trailing\" constant=\"10\" id=\"kTs-Bi-txA\"/>\n                                            <constraint firstItem=\"m64-Rm-VMc\" firstAttribute=\"leading\" secondItem=\"ncx-P1-tBt\" secondAttribute=\"leading\" constant=\"10\" id=\"zSC-FW-cgJ\"/>\n                                        </constraints>\n                                    </view>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"ABB0BA\"/>\n                                <gestureRecognizers/>\n                                <constraints>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"ncx-P1-tBt\" secondAttribute=\"bottom\" constant=\"5\" id=\"0zi-cn-pJ7\"/>\n                                    <constraint firstItem=\"ncx-P1-tBt\" firstAttribute=\"leading\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"leading\" id=\"1Wj-TO-ld2\"/>\n                                    <constraint firstItem=\"8PR-I6-gEU\" firstAttribute=\"height\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"height\" id=\"33g-27-x8R\"/>\n                                    <constraint firstItem=\"Oad-Sj-fOj\" firstAttribute=\"leading\" secondItem=\"uLB-dv-85O\" secondAttribute=\"leading\" constant=\"5\" id=\"3hn-wH-4mF\"/>\n                                    <constraint firstItem=\"BId-gB-gYg\" firstAttribute=\"trailing\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"trailing\" id=\"5kZ-3F-GeB\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"trailing\" constant=\"5\" id=\"8xW-s6-DdT\"/>\n                                    <constraint firstItem=\"BId-gB-gYg\" firstAttribute=\"height\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"height\" id=\"923-bs-gNy\"/>\n                                    <constraint firstItem=\"UW7-Qt-UNy\" firstAttribute=\"trailing\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"trailing\" id=\"9di-uH-PWT\"/>\n                                    <constraint firstItem=\"Oad-Sj-fOj\" firstAttribute=\"top\" secondItem=\"uLB-dv-85O\" secondAttribute=\"top\" constant=\"5\" id=\"BYR-X7-byJ\"/>\n                                    <constraint firstItem=\"8PR-I6-gEU\" firstAttribute=\"top\" secondItem=\"uhz-yA-0bZ\" secondAttribute=\"bottom\" constant=\"5\" id=\"DaM-BV-KqT\"/>\n                                    <constraint firstItem=\"ncx-P1-tBt\" firstAttribute=\"top\" secondItem=\"BId-gB-gYg\" secondAttribute=\"bottom\" constant=\"5\" id=\"F9T-5p-d2w\"/>\n                                    <constraint firstItem=\"uhz-yA-0bZ\" firstAttribute=\"top\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"bottom\" constant=\"5\" id=\"HKC-oe-dab\"/>\n                                    <constraint firstItem=\"8PR-I6-gEU\" firstAttribute=\"leading\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"leading\" id=\"M93-HS-MKo\"/>\n                                    <constraint firstItem=\"uhz-yA-0bZ\" firstAttribute=\"trailing\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"trailing\" id=\"NOt-Fd-9gR\"/>\n                                    <constraint firstItem=\"ncx-P1-tBt\" firstAttribute=\"trailing\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"trailing\" id=\"O0Y-yS-IPT\"/>\n                                    <constraint firstItem=\"BId-gB-gYg\" firstAttribute=\"leading\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"leading\" id=\"UDi-Um-09A\"/>\n                                    <constraint firstItem=\"8PR-I6-gEU\" firstAttribute=\"trailing\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"trailing\" id=\"X2t-d8-dsZ\"/>\n                                    <constraint firstItem=\"uhz-yA-0bZ\" firstAttribute=\"leading\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"leading\" id=\"cnH-x9-ywa\"/>\n                                    <constraint firstItem=\"uhz-yA-0bZ\" firstAttribute=\"height\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"height\" id=\"dnZ-SU-g5V\"/>\n                                    <constraint firstItem=\"UW7-Qt-UNy\" firstAttribute=\"top\" secondItem=\"8PR-I6-gEU\" secondAttribute=\"bottom\" constant=\"5\" id=\"lip-Tu-F7V\"/>\n                                    <constraint firstItem=\"UW7-Qt-UNy\" firstAttribute=\"leading\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"leading\" id=\"tEV-Js-YNf\"/>\n                                    <constraint firstItem=\"BId-gB-gYg\" firstAttribute=\"top\" secondItem=\"UW7-Qt-UNy\" secondAttribute=\"bottom\" constant=\"5\" id=\"ubQ-AA-Hjh\"/>\n                                    <constraint firstItem=\"UW7-Qt-UNy\" firstAttribute=\"height\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"height\" id=\"y1N-jv-YMs\"/>\n                                    <constraint firstItem=\"ncx-P1-tBt\" firstAttribute=\"height\" secondItem=\"Oad-Sj-fOj\" secondAttribute=\"height\" id=\"yET-3d-ZSJ\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uul-1Z-y2V\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"-311\" width=\"414\" height=\"416\"/>\n                                <subviews>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"DisableDistanceHandling Inside CustomViewController even if IQKeyboardManager is enabled.\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"I5d-yW-B3e\">\n                                        <rect key=\"frame\" x=\"10\" y=\"29.5\" width=\"328\" height=\"29\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Eyj-bn-6eN\">\n                                        <rect key=\"frame\" x=\"343\" y=\"30\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"disableInViewControllerAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"vkD-zL-eaj\"/>\n                                        </connections>\n                                    </switch>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"EnableDistanceHandling Inside CustomViewController even if IQKeyboardManager is disabled.\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nhk-VO-9Ye\">\n                                        <rect key=\"frame\" x=\"10\" y=\"77.5\" width=\"328\" height=\"29\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NAn-8R-RkL\">\n                                        <rect key=\"frame\" x=\"343\" y=\"78\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"enableInViewControllerAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"GN1-gB-4cT\"/>\n                                        </connections>\n                                    </switch>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uE4-kc-hqQ\">\n                                        <rect key=\"frame\" x=\"10\" y=\"121\" width=\"404\" height=\"1\"/>\n                                        <color key=\"backgroundColor\" systemColor=\"separatorColor\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"1\" id=\"bcU-Nb-wQF\"/>\n                                        </constraints>\n                                    </view>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Disable Toolbar inside CustomViewController\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"JGH-5V-8ic\">\n                                        <rect key=\"frame\" x=\"10\" y=\"142.5\" width=\"328\" height=\"14.5\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"IOT-Ym-kVt\">\n                                        <rect key=\"frame\" x=\"343\" y=\"136\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"disableToolbarAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"7Na-xT-D3m\"/>\n                                        </connections>\n                                    </switch>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Enable Toolbar inside CustomViewController\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oLV-3B-B0Z\">\n                                        <rect key=\"frame\" x=\"10\" y=\"190.5\" width=\"328\" height=\"14.5\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"17k-N2-9OE\">\n                                        <rect key=\"frame\" x=\"343\" y=\"184\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"enableToolbarAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"dPs-2u-Peu\"/>\n                                        </connections>\n                                    </switch>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6C5-5b-NsC\">\n                                        <rect key=\"frame\" x=\"10\" y=\"227\" width=\"404\" height=\"1\"/>\n                                        <color key=\"backgroundColor\" systemColor=\"separatorColor\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"1\" id=\"kpf-Ui-rzv\"/>\n                                        </constraints>\n                                    </view>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Disable Touch Resign inside CustomViewController\" lineBreakMode=\"tailTruncation\" numberOfLines=\"2\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"a6b-j6-OEh\">\n                                        <rect key=\"frame\" x=\"10\" y=\"248.5\" width=\"328\" height=\"14.5\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"n7Z-Uy-FKT\">\n                                        <rect key=\"frame\" x=\"343\" y=\"242\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"disableTouchOutsideAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"ufm-B9-dHr\"/>\n                                        </connections>\n                                    </switch>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Enable Touch Resign inside CustomViewController\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"B56-NE-au7\">\n                                        <rect key=\"frame\" x=\"10\" y=\"296.5\" width=\"328\" height=\"15\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bSn-Lo-RYW\">\n                                        <rect key=\"frame\" x=\"343\" y=\"290\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"enableTouchOutsideAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"IJ1-rX-uB8\"/>\n                                        </connections>\n                                    </switch>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"41y-Od-Vs1\">\n                                        <rect key=\"frame\" x=\"10\" y=\"333\" width=\"404\" height=\"1\"/>\n                                        <color key=\"backgroundColor\" systemColor=\"separatorColor\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"1\" id=\"RCP-pb-Bwx\"/>\n                                        </constraints>\n                                    </view>\n                                    <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Allow Toolbar PreviousNext Inside IQDeepResponderContainerView\" lineBreakMode=\"tailTruncation\" numberOfLines=\"0\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uiA-Vu-37g\">\n                                        <rect key=\"frame\" x=\"10\" y=\"347.5\" width=\"328\" height=\"29\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"12\"/>\n                                        <nil key=\"highlightedColor\"/>\n                                    </label>\n                                    <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7wh-DA-9Uk\">\n                                        <rect key=\"frame\" x=\"343\" y=\"348\" width=\"63\" height=\"28\"/>\n                                        <connections>\n                                            <action selector=\"allowedPreviousNextAction:\" destination=\"P54-QV-iJ7\" eventType=\"valueChanged\" id=\"fGT-S0-Z8d\"/>\n                                        </connections>\n                                    </switch>\n                                    <view userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"I0D-hz-SkR\">\n                                        <rect key=\"frame\" x=\"177\" y=\"406\" width=\"60\" height=\"2\"/>\n                                        <color key=\"backgroundColor\" systemColor=\"systemGrayColor\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"2\" id=\"GZG-nL-rAX\"/>\n                                            <constraint firstAttribute=\"width\" constant=\"60\" id=\"hns-vG-oja\"/>\n                                        </constraints>\n                                    </view>\n                                    <view userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aVG-WK-DTv\">\n                                        <rect key=\"frame\" x=\"187\" y=\"411\" width=\"40\" height=\"2\"/>\n                                        <color key=\"backgroundColor\" systemColor=\"systemGrayColor\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"width\" constant=\"40\" id=\"Pdc-49-F3W\"/>\n                                            <constraint firstAttribute=\"height\" constant=\"2\" id=\"gP4-tS-XhU\"/>\n                                        </constraints>\n                                    </view>\n                                </subviews>\n                                <color key=\"backgroundColor\" systemColor=\"systemGray5Color\"/>\n                                <constraints>\n                                    <constraint firstItem=\"B56-NE-au7\" firstAttribute=\"trailing\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" id=\"3gl-zN-mLZ\"/>\n                                    <constraint firstItem=\"41y-Od-Vs1\" firstAttribute=\"leading\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"leading\" constant=\"10\" id=\"9LY-g8-TQa\"/>\n                                    <constraint firstItem=\"6C5-5b-NsC\" firstAttribute=\"leading\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"leading\" constant=\"10\" id=\"D3S-GI-Cf6\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"6C5-5b-NsC\" secondAttribute=\"trailing\" id=\"Dl7-9c-psX\"/>\n                                    <constraint firstItem=\"7wh-DA-9Uk\" firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" id=\"EYL-xJ-2Tc\"/>\n                                    <constraint firstItem=\"JGH-5V-8ic\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"leading\" id=\"GJS-oB-J3I\"/>\n                                    <constraint firstItem=\"aVG-WK-DTv\" firstAttribute=\"top\" secondItem=\"I0D-hz-SkR\" secondAttribute=\"bottom\" constant=\"3\" id=\"HRw-5p-bxt\"/>\n                                    <constraint firstItem=\"Eyj-bn-6eN\" firstAttribute=\"top\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"top\" constant=\"30\" id=\"JO1-9l-RR6\"/>\n                                    <constraint firstItem=\"IOT-Ym-kVt\" firstAttribute=\"top\" secondItem=\"NAn-8R-RkL\" secondAttribute=\"bottom\" constant=\"30\" id=\"JjS-yz-blQ\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"41y-Od-Vs1\" secondAttribute=\"trailing\" id=\"JxI-OS-0i6\"/>\n                                    <constraint firstItem=\"uE4-kc-hqQ\" firstAttribute=\"top\" secondItem=\"NAn-8R-RkL\" secondAttribute=\"bottom\" constant=\"15\" id=\"Max-qI-jOV\"/>\n                                    <constraint firstItem=\"17k-N2-9OE\" firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" id=\"Mx2-A0-DnO\"/>\n                                    <constraint firstItem=\"nhk-VO-9Ye\" firstAttribute=\"trailing\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" id=\"P4A-gt-nzK\"/>\n                                    <constraint firstItem=\"oLV-3B-B0Z\" firstAttribute=\"trailing\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" id=\"PXF-OL-Mf7\"/>\n                                    <constraint firstItem=\"7wh-DA-9Uk\" firstAttribute=\"centerY\" secondItem=\"uiA-Vu-37g\" secondAttribute=\"centerY\" id=\"Pqr-hG-oBm\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"7wh-DA-9Uk\" secondAttribute=\"bottom\" constant=\"40\" id=\"RdQ-8j-DlE\"/>\n                                    <constraint firstItem=\"uiA-Vu-37g\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"leading\" id=\"S2t-j8-sPG\"/>\n                                    <constraint firstItem=\"NAn-8R-RkL\" firstAttribute=\"centerY\" secondItem=\"nhk-VO-9Ye\" secondAttribute=\"centerY\" id=\"TaI-1K-7Fq\"/>\n                                    <constraint firstItem=\"IOT-Ym-kVt\" firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" id=\"Uj5-NZ-lhi\"/>\n                                    <constraint firstItem=\"Eyj-bn-6eN\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" constant=\"5\" id=\"VA2-Le-ZV7\"/>\n                                    <constraint firstItem=\"uiA-Vu-37g\" firstAttribute=\"trailing\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" id=\"VmA-oX-x71\"/>\n                                    <constraint firstItem=\"Eyj-bn-6eN\" firstAttribute=\"centerY\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"centerY\" id=\"Y7s-kS-yR9\"/>\n                                    <constraint firstItem=\"I0D-hz-SkR\" firstAttribute=\"centerX\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"centerX\" id=\"aNM-FN-22m\"/>\n                                    <constraint firstItem=\"6C5-5b-NsC\" firstAttribute=\"top\" secondItem=\"17k-N2-9OE\" secondAttribute=\"bottom\" constant=\"15\" id=\"bnp-bR-UdL\"/>\n                                    <constraint firstItem=\"B56-NE-au7\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"leading\" id=\"cci-JB-EvN\"/>\n                                    <constraint firstItem=\"bSn-Lo-RYW\" firstAttribute=\"top\" secondItem=\"n7Z-Uy-FKT\" secondAttribute=\"bottom\" constant=\"20\" id=\"d4n-4j-veu\"/>\n                                    <constraint firstItem=\"I5d-yW-B3e\" firstAttribute=\"leading\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"leading\" constant=\"10\" id=\"dzc-Bh-ybr\"/>\n                                    <constraint firstItem=\"aVG-WK-DTv\" firstAttribute=\"centerX\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"centerX\" id=\"ep1-Kw-5HF\"/>\n                                    <constraint firstItem=\"oLV-3B-B0Z\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"leading\" id=\"f2e-7i-cmz\"/>\n                                    <constraint firstItem=\"a6b-j6-OEh\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"leading\" id=\"fdu-sR-kcx\"/>\n                                    <constraint firstItem=\"17k-N2-9OE\" firstAttribute=\"centerY\" secondItem=\"oLV-3B-B0Z\" secondAttribute=\"centerY\" id=\"hJ5-JV-SQT\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"uE4-kc-hqQ\" secondAttribute=\"trailing\" id=\"jHK-iz-cWR\"/>\n                                    <constraint firstItem=\"17k-N2-9OE\" firstAttribute=\"top\" secondItem=\"IOT-Ym-kVt\" secondAttribute=\"bottom\" constant=\"20\" id=\"kgR-px-O8Y\"/>\n                                    <constraint firstItem=\"JGH-5V-8ic\" firstAttribute=\"trailing\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" id=\"liJ-Qk-DIL\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"aVG-WK-DTv\" secondAttribute=\"bottom\" constant=\"3\" id=\"mbo-hk-6Zp\"/>\n                                    <constraint firstItem=\"bSn-Lo-RYW\" firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" id=\"njr-Tp-gno\"/>\n                                    <constraint firstItem=\"NAn-8R-RkL\" firstAttribute=\"top\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"bottom\" constant=\"20\" id=\"o54-HS-ijg\"/>\n                                    <constraint firstItem=\"n7Z-Uy-FKT\" firstAttribute=\"centerY\" secondItem=\"a6b-j6-OEh\" secondAttribute=\"centerY\" id=\"omY-ac-AZe\"/>\n                                    <constraint firstItem=\"bSn-Lo-RYW\" firstAttribute=\"centerY\" secondItem=\"B56-NE-au7\" secondAttribute=\"centerY\" id=\"pZK-pf-zyn\"/>\n                                    <constraint firstItem=\"a6b-j6-OEh\" firstAttribute=\"trailing\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"trailing\" id=\"qXU-xe-imd\"/>\n                                    <constraint firstItem=\"uE4-kc-hqQ\" firstAttribute=\"leading\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"leading\" constant=\"10\" id=\"sbs-fJ-bzE\"/>\n                                    <constraint firstItem=\"nhk-VO-9Ye\" firstAttribute=\"leading\" secondItem=\"I5d-yW-B3e\" secondAttribute=\"leading\" id=\"sfe-nN-L67\"/>\n                                    <constraint firstItem=\"NAn-8R-RkL\" firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" id=\"srr-J6-3ex\"/>\n                                    <constraint firstItem=\"n7Z-Uy-FKT\" firstAttribute=\"top\" secondItem=\"17k-N2-9OE\" secondAttribute=\"bottom\" constant=\"30\" id=\"vJL-z5-70d\"/>\n                                    <constraint firstItem=\"7wh-DA-9Uk\" firstAttribute=\"top\" secondItem=\"bSn-Lo-RYW\" secondAttribute=\"bottom\" constant=\"30\" id=\"xcS-eI-JVn\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" constant=\"10\" id=\"ySG-QE-LyN\"/>\n                                    <constraint firstItem=\"41y-Od-Vs1\" firstAttribute=\"top\" secondItem=\"bSn-Lo-RYW\" secondAttribute=\"bottom\" constant=\"15\" id=\"z8E-g5-T5x\"/>\n                                    <constraint firstItem=\"IOT-Ym-kVt\" firstAttribute=\"centerY\" secondItem=\"JGH-5V-8ic\" secondAttribute=\"centerY\" id=\"zZW-8Y-XLp\"/>\n                                    <constraint firstItem=\"n7Z-Uy-FKT\" firstAttribute=\"trailing\" secondItem=\"Eyj-bn-6eN\" secondAttribute=\"trailing\" id=\"zfx-Ml-ruK\"/>\n                                </constraints>\n                                <connections>\n                                    <outletCollection property=\"gestureRecognizers\" destination=\"hVs-Fy-REN\" appends=\"YES\" id=\"Iqk-5w-DHX\"/>\n                                </connections>\n                            </view>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"tlC-oF-IyF\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"tlC-oF-IyF\" firstAttribute=\"trailing\" secondItem=\"uul-1Z-y2V\" secondAttribute=\"trailing\" id=\"ARb-j6-VKW\"/>\n                            <constraint firstItem=\"uul-1Z-y2V\" firstAttribute=\"top\" secondItem=\"tlC-oF-IyF\" secondAttribute=\"top\" constant=\"-407\" id=\"CaY-fa-4bg\"/>\n                            <constraint firstItem=\"uul-1Z-y2V\" firstAttribute=\"leading\" secondItem=\"tlC-oF-IyF\" secondAttribute=\"leading\" id=\"Uky-0F-4xq\"/>\n                            <constraint firstItem=\"uLB-dv-85O\" firstAttribute=\"top\" secondItem=\"tlC-oF-IyF\" secondAttribute=\"top\" constant=\"40\" id=\"dni-c6-ses\"/>\n                            <constraint firstItem=\"tlC-oF-IyF\" firstAttribute=\"bottom\" secondItem=\"uLB-dv-85O\" secondAttribute=\"bottom\" constant=\"10\" id=\"uOS-Sr-fmh\"/>\n                            <constraint firstItem=\"tlC-oF-IyF\" firstAttribute=\"trailing\" secondItem=\"uLB-dv-85O\" secondAttribute=\"trailing\" constant=\"10\" id=\"wa4-0U-ixc\"/>\n                            <constraint firstItem=\"uLB-dv-85O\" firstAttribute=\"leading\" secondItem=\"tlC-oF-IyF\" secondAttribute=\"leading\" constant=\"10\" id=\"wgK-VV-XE5\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"CustomView Demo\" id=\"oVJ-aw-xfZ\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"1FT-gp-Z1a\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"settingsTopConstraint\" destination=\"CaY-fa-4bg\" id=\"v3a-F6-z4h\"/>\n                        <outlet property=\"settingsView\" destination=\"uul-1Z-y2V\" id=\"a0Q-lc-TdC\"/>\n                        <outlet property=\"switchAllowPreviousNext\" destination=\"7wh-DA-9Uk\" id=\"D9o-bZ-U88\"/>\n                        <outlet property=\"switchDisableToolbar\" destination=\"IOT-Ym-kVt\" id=\"J1A-8S-n3x\"/>\n                        <outlet property=\"switchDisableTouchResign\" destination=\"n7Z-Uy-FKT\" id=\"Sdr-xT-s3L\"/>\n                        <outlet property=\"switchDisableViewController\" destination=\"Eyj-bn-6eN\" id=\"FJv-tr-1e9\"/>\n                        <outlet property=\"switchEnableToolbar\" destination=\"17k-N2-9OE\" id=\"UqL-qB-Bx4\"/>\n                        <outlet property=\"switchEnableTouchResign\" destination=\"bSn-Lo-RYW\" id=\"7Nk-Ca-ghm\"/>\n                        <outlet property=\"switchEnableViewController\" destination=\"NAn-8R-RkL\" id=\"Mzv-kp-wO3\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"rEi-dS-Imq\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n                <tapGestureRecognizer id=\"hVs-Fy-REN\">\n                    <connections>\n                        <action selector=\"tapAction:\" destination=\"P54-QV-iJ7\" id=\"CCx-nE-7kK\"/>\n                    </connections>\n                </tapGestureRecognizer>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1442\" y=\"217\"/>\n        </scene>\n        <!--UIStackView Example-->\n        <scene sceneID=\"0zI-o4-2RU\">\n            <objects>\n                <viewController storyboardIdentifier=\"StackViewController\" automaticallyAdjustsScrollViewInsets=\"NO\" id=\"0iq-QC-GA9\" customClass=\"StackViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"5wM-y3-LXg\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" distribution=\"equalSpacing\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7Xa-Ad-oaN\">\n                                <rect key=\"frame\" x=\"10\" y=\"96\" width=\"394\" height=\"732\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ML6-mO-aS8\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FdK-U5-FBa\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"116.5\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vAD-K4-HaZ\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"232.5\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7DJ-b9-EYd\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"349\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HPg-Kk-C7K\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"465.5\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yfv-ae-fhx\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"581.5\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"V6o-r0-cPa\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"698\" width=\"394\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                            </stackView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"xtj-sq-r1k\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"7Xa-Ad-oaN\" firstAttribute=\"leading\" secondItem=\"xtj-sq-r1k\" secondAttribute=\"leading\" constant=\"10\" id=\"1gM-Jg-2kI\"/>\n                            <constraint firstItem=\"7Xa-Ad-oaN\" firstAttribute=\"top\" secondItem=\"xtj-sq-r1k\" secondAttribute=\"top\" id=\"Bwb-I3-g9A\"/>\n                            <constraint firstItem=\"xtj-sq-r1k\" firstAttribute=\"trailing\" secondItem=\"7Xa-Ad-oaN\" secondAttribute=\"trailing\" constant=\"10\" id=\"KSU-b9-Vj7\"/>\n                            <constraint firstItem=\"xtj-sq-r1k\" firstAttribute=\"bottom\" secondItem=\"7Xa-Ad-oaN\" secondAttribute=\"bottom\" id=\"nq4-G4-Ctn\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"UIStackView Example\" id=\"L7c-7d-d1o\"/>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"lrD-fL-0A0\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-276\" y=\"215\"/>\n        </scene>\n        <!--Refresh Layout-->\n        <scene sceneID=\"Tw0-s7-gmb\">\n            <objects>\n                <viewController storyboardIdentifier=\"RefreshLayoutViewController\" id=\"RqH-aq-Hdz\" customClass=\"RefreshLayoutViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"CNg-ge-9Lk\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <stepper opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"751\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"150\" maximumValue=\"300\" stepValue=\"5\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"41C-VU-wjc\">\n                                <rect key=\"frame\" x=\"310\" y=\"236\" width=\"94\" height=\"32\"/>\n                                <connections>\n                                    <action selector=\"stepperChanged:\" destination=\"RqH-aq-Hdz\" eventType=\"valueChanged\" id=\"a80-Dq-ekC\"/>\n                                </connections>\n                            </stepper>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" textAlignment=\"natural\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"djH-2u-YPC\">\n                                <rect key=\"frame\" x=\"10\" y=\"196\" width=\"290\" height=\"150\"/>\n                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"height\" constant=\"150\" id=\"hbm-bp-Yy4\"/>\n                                </constraints>\n                                <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.</string>\n                                <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                            </textView>\n                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"system\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zDG-8z-I8F\">\n                                <rect key=\"frame\" x=\"308.5\" y=\"196\" width=\"97\" height=\"30\"/>\n                                <state key=\"normal\" title=\"Reload Layout\">\n                                    <color key=\"titleColor\" systemColor=\"systemBlueColor\"/>\n                                </state>\n                                <connections>\n                                    <action selector=\"reloadLayoutAction:\" destination=\"RqH-aq-Hdz\" eventType=\"touchUpInside\" id=\"Knk-US-bUe\"/>\n                                </connections>\n                            </button>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"iQo-2o-KKs\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"41C-VU-wjc\" firstAttribute=\"centerX\" secondItem=\"zDG-8z-I8F\" secondAttribute=\"centerX\" id=\"9N2-gG-smY\"/>\n                            <constraint firstItem=\"zDG-8z-I8F\" firstAttribute=\"top\" secondItem=\"djH-2u-YPC\" secondAttribute=\"top\" id=\"GeA-1f-zic\"/>\n                            <constraint firstItem=\"iQo-2o-KKs\" firstAttribute=\"trailing\" secondItem=\"41C-VU-wjc\" secondAttribute=\"trailing\" constant=\"10\" id=\"H2k-VC-hnq\"/>\n                            <constraint firstItem=\"djH-2u-YPC\" firstAttribute=\"leading\" secondItem=\"iQo-2o-KKs\" secondAttribute=\"leading\" constant=\"10\" id=\"PPm-SZ-hSN\"/>\n                            <constraint firstItem=\"41C-VU-wjc\" firstAttribute=\"top\" secondItem=\"zDG-8z-I8F\" secondAttribute=\"bottom\" constant=\"10\" id=\"fFU-Ma-xj1\"/>\n                            <constraint firstItem=\"41C-VU-wjc\" firstAttribute=\"leading\" secondItem=\"djH-2u-YPC\" secondAttribute=\"trailing\" constant=\"10\" id=\"x0k-In-01g\"/>\n                            <constraint firstItem=\"djH-2u-YPC\" firstAttribute=\"top\" secondItem=\"iQo-2o-KKs\" secondAttribute=\"top\" constant=\"100\" id=\"yxi-2L-y00\"/>\n                        </constraints>\n                        <variation key=\"userInterfaceIdiom=mac\">\n                            <mask key=\"subviews\">\n                                <exclude reference=\"41C-VU-wjc\"/>\n                            </mask>\n                        </variation>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Refresh Layout\" id=\"aR0-XP-p7v\"/>\n                    <connections>\n                        <outlet property=\"textViewHeightConstraint\" destination=\"hbm-bp-Yy4\" id=\"Qv0-r6-kb2\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iI3-vc-79g\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"2258\" y=\"218\"/>\n        </scene>\n        <!--Popover-->\n        <scene sceneID=\"VC3-C2-vx9\">\n            <objects>\n                <viewController storyboardIdentifier=\"PopoverViewController\" id=\"G2n-n9-dIs\" customClass=\"PopoverViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"kT5-gA-5rN\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QCE-dD-nDY\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                                <subviews>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xHi-X8-Xov\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"1594\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LOn-Q1-VhE\">\n                                                <rect key=\"frame\" x=\"10\" y=\"40\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tFK-uQ-wXZ\">\n                                                <rect key=\"frame\" x=\"10\" y=\"114\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Mbl-kd-GjI\">\n                                                <rect key=\"frame\" x=\"10\" y=\"188\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"POu-ZO-0HH\">\n                                                <rect key=\"frame\" x=\"10\" y=\"262\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"V6u-Mi-AnR\">\n                                                <rect key=\"frame\" x=\"10\" y=\"336\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Hj2-Fu-NA2\">\n                                                <rect key=\"frame\" x=\"10\" y=\"410\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9kA-7f-Ar2\">\n                                                <rect key=\"frame\" x=\"10\" y=\"484\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"M7N-Td-qMd\">\n                                                <rect key=\"frame\" x=\"10\" y=\"558\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"e9c-dp-jrG\">\n                                                <rect key=\"frame\" x=\"10\" y=\"632\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oOF-hQ-2XT\">\n                                                <rect key=\"frame\" x=\"10\" y=\"706\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"udz-4K-veH\">\n                                                <rect key=\"frame\" x=\"10\" y=\"780\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Jvt-Pr-wH2\">\n                                                <rect key=\"frame\" x=\"10\" y=\"854\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fgB-gw-JEu\">\n                                                <rect key=\"frame\" x=\"10\" y=\"928\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"l2r-cS-jHY\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1002\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dpc-RL-OHA\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1076\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"68s-Qc-9El\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1150\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"U4l-VL-HNF\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1224\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"heC-v1-QFP\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1298\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Emq-hK-WnG\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1372\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gOE-XA-PpE\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1446\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9N7-WM-GBU\">\n                                                <rect key=\"frame\" x=\"10\" y=\"1520\" width=\"394\" height=\"34\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                        </subviews>\n                                        <constraints>\n                                            <constraint firstItem=\"Mbl-kd-GjI\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"1I4-tS-fuH\"/>\n                                            <constraint firstItem=\"Emq-hK-WnG\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"1PD-7Q-Zlp\"/>\n                                            <constraint firstAttribute=\"bottom\" secondItem=\"9N7-WM-GBU\" secondAttribute=\"bottom\" constant=\"40\" id=\"23g-2L-pmL\"/>\n                                            <constraint firstItem=\"POu-ZO-0HH\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"7Dj-a7-UrL\"/>\n                                            <constraint firstItem=\"oOF-hQ-2XT\" firstAttribute=\"top\" secondItem=\"e9c-dp-jrG\" secondAttribute=\"bottom\" constant=\"40\" id=\"Du5-LJ-umB\"/>\n                                            <constraint firstItem=\"Jvt-Pr-wH2\" firstAttribute=\"top\" secondItem=\"udz-4K-veH\" secondAttribute=\"bottom\" constant=\"40\" id=\"EPq-tX-B3Z\"/>\n                                            <constraint firstItem=\"Jvt-Pr-wH2\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"F8S-4C-6jJ\"/>\n                                            <constraint firstItem=\"fgB-gw-JEu\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"Fyp-5V-VNu\"/>\n                                            <constraint firstItem=\"heC-v1-QFP\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"I1r-Jp-2jb\"/>\n                                            <constraint firstItem=\"9kA-7f-Ar2\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"Igu-jU-rY7\"/>\n                                            <constraint firstItem=\"M7N-Td-qMd\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"JaR-Bz-mKJ\"/>\n                                            <constraint firstItem=\"oOF-hQ-2XT\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"KRX-0I-an2\"/>\n                                            <constraint firstItem=\"LOn-Q1-VhE\" firstAttribute=\"leading\" secondItem=\"xHi-X8-Xov\" secondAttribute=\"leading\" constant=\"10\" id=\"LDc-Hw-ptf\"/>\n                                            <constraint firstItem=\"POu-ZO-0HH\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"PZQ-0i-2Px\"/>\n                                            <constraint firstItem=\"oOF-hQ-2XT\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"Pfo-6A-jwU\"/>\n                                            <constraint firstItem=\"U4l-VL-HNF\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"R4a-29-gef\"/>\n                                            <constraint firstItem=\"M7N-Td-qMd\" firstAttribute=\"top\" secondItem=\"9kA-7f-Ar2\" secondAttribute=\"bottom\" constant=\"40\" id=\"R93-5g-mnU\"/>\n                                            <constraint firstItem=\"l2r-cS-jHY\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"SQm-r0-7h3\"/>\n                                            <constraint firstItem=\"Mbl-kd-GjI\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"SXL-VZ-GVZ\"/>\n                                            <constraint firstItem=\"68s-Qc-9El\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"SxU-dw-fKg\"/>\n                                            <constraint firstItem=\"dpc-RL-OHA\" firstAttribute=\"top\" secondItem=\"l2r-cS-jHY\" secondAttribute=\"bottom\" constant=\"40\" id=\"TS9-Uj-dwm\"/>\n                                            <constraint firstItem=\"9N7-WM-GBU\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"W5L-og-6sh\"/>\n                                            <constraint firstItem=\"fgB-gw-JEu\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"W6T-b1-at0\"/>\n                                            <constraint firstItem=\"heC-v1-QFP\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"WKC-8v-973\"/>\n                                            <constraint firstItem=\"Mbl-kd-GjI\" firstAttribute=\"top\" secondItem=\"tFK-uQ-wXZ\" secondAttribute=\"bottom\" constant=\"40\" id=\"YvG-mE-0bg\"/>\n                                            <constraint firstItem=\"tFK-uQ-wXZ\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"Zjl-7L-OXP\"/>\n                                            <constraint firstItem=\"U4l-VL-HNF\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"a2H-TP-tZH\"/>\n                                            <constraint firstItem=\"l2r-cS-jHY\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"a8u-Zm-rQf\"/>\n                                            <constraint firstItem=\"gOE-XA-PpE\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"b1h-lr-6LL\"/>\n                                            <constraint firstItem=\"Emq-hK-WnG\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"cPl-QM-dX1\"/>\n                                            <constraint firstItem=\"e9c-dp-jrG\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"dMl-2S-EZI\"/>\n                                            <constraint firstItem=\"LOn-Q1-VhE\" firstAttribute=\"top\" secondItem=\"xHi-X8-Xov\" secondAttribute=\"top\" constant=\"40\" id=\"dTU-iD-JTY\"/>\n                                            <constraint firstItem=\"POu-ZO-0HH\" firstAttribute=\"top\" secondItem=\"Mbl-kd-GjI\" secondAttribute=\"bottom\" constant=\"40\" id=\"du3-zv-YBb\"/>\n                                            <constraint firstItem=\"tFK-uQ-wXZ\" firstAttribute=\"top\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"bottom\" constant=\"40\" id=\"exg-qz-VxE\"/>\n                                            <constraint firstItem=\"dpc-RL-OHA\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"eyq-qe-8k3\"/>\n                                            <constraint firstItem=\"gOE-XA-PpE\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"fcx-8Q-keh\"/>\n                                            <constraint firstItem=\"l2r-cS-jHY\" firstAttribute=\"top\" secondItem=\"fgB-gw-JEu\" secondAttribute=\"bottom\" constant=\"40\" id=\"fub-M3-lw4\"/>\n                                            <constraint firstItem=\"V6u-Mi-AnR\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"g49-G0-Ihz\"/>\n                                            <constraint firstItem=\"udz-4K-veH\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"gSI-Xt-fAK\"/>\n                                            <constraint firstItem=\"9kA-7f-Ar2\" firstAttribute=\"top\" secondItem=\"Hj2-Fu-NA2\" secondAttribute=\"bottom\" constant=\"40\" id=\"gqc-XE-NVj\"/>\n                                            <constraint firstItem=\"e9c-dp-jrG\" firstAttribute=\"top\" secondItem=\"M7N-Td-qMd\" secondAttribute=\"bottom\" constant=\"40\" id=\"h5i-QW-NFg\"/>\n                                            <constraint firstItem=\"9N7-WM-GBU\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"hla-es-fml\"/>\n                                            <constraint firstItem=\"gOE-XA-PpE\" firstAttribute=\"top\" secondItem=\"Emq-hK-WnG\" secondAttribute=\"bottom\" constant=\"40\" id=\"iTY-qx-sgs\"/>\n                                            <constraint firstItem=\"68s-Qc-9El\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"j2O-8a-cR3\"/>\n                                            <constraint firstItem=\"Jvt-Pr-wH2\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"j6m-gJ-qyr\"/>\n                                            <constraint firstItem=\"udz-4K-veH\" firstAttribute=\"top\" secondItem=\"oOF-hQ-2XT\" secondAttribute=\"bottom\" constant=\"40\" id=\"jYq-dC-8UJ\"/>\n                                            <constraint firstItem=\"e9c-dp-jrG\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"jau-k9-7zx\"/>\n                                            <constraint firstItem=\"M7N-Td-qMd\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"jy7-GL-gf5\"/>\n                                            <constraint firstItem=\"V6u-Mi-AnR\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"kA1-mz-OJs\"/>\n                                            <constraint firstItem=\"Hj2-Fu-NA2\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"kQk-ur-hQ6\"/>\n                                            <constraint firstItem=\"U4l-VL-HNF\" firstAttribute=\"top\" secondItem=\"68s-Qc-9El\" secondAttribute=\"bottom\" constant=\"40\" id=\"lk8-Eb-MRh\"/>\n                                            <constraint firstItem=\"heC-v1-QFP\" firstAttribute=\"top\" secondItem=\"U4l-VL-HNF\" secondAttribute=\"bottom\" constant=\"40\" id=\"obS-Ga-Xnh\"/>\n                                            <constraint firstItem=\"68s-Qc-9El\" firstAttribute=\"top\" secondItem=\"dpc-RL-OHA\" secondAttribute=\"bottom\" constant=\"40\" id=\"ols-HJ-PiZ\"/>\n                                            <constraint firstItem=\"Hj2-Fu-NA2\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"owQ-lv-kac\"/>\n                                            <constraint firstItem=\"Hj2-Fu-NA2\" firstAttribute=\"top\" secondItem=\"V6u-Mi-AnR\" secondAttribute=\"bottom\" constant=\"40\" id=\"pbJ-Sc-7bj\"/>\n                                            <constraint firstItem=\"Emq-hK-WnG\" firstAttribute=\"top\" secondItem=\"heC-v1-QFP\" secondAttribute=\"bottom\" constant=\"40\" id=\"s9z-3y-sC1\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" constant=\"10\" id=\"sfo-iJ-G0Z\"/>\n                                            <constraint firstItem=\"9kA-7f-Ar2\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"tRP-Mr-XDb\"/>\n                                            <constraint firstItem=\"V6u-Mi-AnR\" firstAttribute=\"top\" secondItem=\"POu-ZO-0HH\" secondAttribute=\"bottom\" constant=\"40\" id=\"teX-1k-ZGF\"/>\n                                            <constraint firstItem=\"udz-4K-veH\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"tlv-Qz-tEv\"/>\n                                            <constraint firstItem=\"fgB-gw-JEu\" firstAttribute=\"top\" secondItem=\"Jvt-Pr-wH2\" secondAttribute=\"bottom\" constant=\"40\" id=\"wAR-MN-gfF\"/>\n                                            <constraint firstItem=\"dpc-RL-OHA\" firstAttribute=\"trailing\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"trailing\" id=\"xSj-Il-Sjd\"/>\n                                            <constraint firstItem=\"9N7-WM-GBU\" firstAttribute=\"top\" secondItem=\"gOE-XA-PpE\" secondAttribute=\"bottom\" constant=\"40\" id=\"xeK-YR-xKt\"/>\n                                            <constraint firstItem=\"tFK-uQ-wXZ\" firstAttribute=\"leading\" secondItem=\"LOn-Q1-VhE\" secondAttribute=\"leading\" id=\"xjq-Qn-jDm\"/>\n                                        </constraints>\n                                    </view>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"xHi-X8-Xov\" secondAttribute=\"trailing\" id=\"40X-B6-WvR\"/>\n                                    <constraint firstItem=\"xHi-X8-Xov\" firstAttribute=\"top\" secondItem=\"QCE-dD-nDY\" secondAttribute=\"top\" id=\"KPw-jc-2SR\"/>\n                                    <constraint firstItem=\"xHi-X8-Xov\" firstAttribute=\"width\" secondItem=\"QCE-dD-nDY\" secondAttribute=\"width\" id=\"YOM-4E-fcZ\"/>\n                                    <constraint firstItem=\"xHi-X8-Xov\" firstAttribute=\"leading\" secondItem=\"QCE-dD-nDY\" secondAttribute=\"leading\" id=\"aNi-21-USi\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"xHi-X8-Xov\" secondAttribute=\"bottom\" id=\"ivf-aq-XgV\"/>\n                                </constraints>\n                            </scrollView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Q79-5h-FYB\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"QCE-dD-nDY\" firstAttribute=\"leading\" secondItem=\"Q79-5h-FYB\" secondAttribute=\"leading\" id=\"9Su-Vw-r1w\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"QCE-dD-nDY\" secondAttribute=\"bottom\" id=\"Au1-fW-vk3\"/>\n                            <constraint firstItem=\"QCE-dD-nDY\" firstAttribute=\"top\" secondItem=\"kT5-gA-5rN\" secondAttribute=\"top\" id=\"B7W-oh-nO7\"/>\n                            <constraint firstItem=\"Q79-5h-FYB\" firstAttribute=\"trailing\" secondItem=\"QCE-dD-nDY\" secondAttribute=\"trailing\" id=\"teb-IG-BbR\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Popover\" id=\"xql-cd-wEy\"/>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"NJ7-WP-epA\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"3798\" y=\"215\"/>\n        </scene>\n        <!--Page Screen-->\n        <scene sceneID=\"oNq-q9-bec\">\n            <objects>\n                <viewController storyboardIdentifier=\"PageViewController\" id=\"Qg6-ME-i2X\" customClass=\"PageViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Mju-MK-0pc\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <viewLayoutGuide key=\"safeArea\" id=\"ek2-7l-1oy\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Page Screen\" id=\"G3Z-Yb-aDx\"/>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"ITa-Ra-M6u\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"4658\" y=\"215\"/>\n        </scene>\n        <!--Test-->\n        <scene sceneID=\"QI0-aP-bqD\">\n            <objects>\n                <viewController storyboardIdentifier=\"TestViewController\" id=\"nWs-50-lJ7\" customClass=\"TestViewController\" customModule=\"IQKeyboardManagerSwiftExampleSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"r98-M0-HX1\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <viewLayoutGuide key=\"safeArea\" id=\"EJb-Us-KgM\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Test\" id=\"k9z-AT-D3s\"/>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"czu-Ff-LjX\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"5423\" y=\"217\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"settings\" width=\"25\" height=\"25\"/>\n        <namedColor name=\"757677\">\n            <color red=\"0.45882352941176469\" green=\"0.46274509803921571\" blue=\"0.46666666666666667\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"ABB0BA\">\n            <color red=\"0.6705882352941176\" green=\"0.69019607843137254\" blue=\"0.72941176470588232\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"DEDEDE\">\n            <color red=\"0.87058823529411766\" green=\"0.87058823529411766\" blue=\"0.87058823529411766\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"EBEDF0\">\n            <color red=\"0.92156862745098034\" green=\"0.92941176470588238\" blue=\"0.94117647058823528\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <systemColor name=\"labelColor\">\n            <color white=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"separatorColor\">\n            <color red=\"0.23529411759999999\" green=\"0.23529411759999999\" blue=\"0.26274509800000001\" alpha=\"0.28999999999999998\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemBackgroundColor\">\n            <color white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemBlueColor\">\n            <color red=\"0.0\" green=\"0.47843137250000001\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemGray5Color\">\n            <color red=\"0.8980392157\" green=\"0.8980392157\" blue=\"0.91764705879999997\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n        <systemColor name=\"systemGrayColor\">\n            <color red=\"0.5568627451\" green=\"0.5568627451\" blue=\"0.57647058819999997\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/Base.lproj/TestCases.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"23077.2\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\">\n    <device id=\"retina6_12\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"23068.1\"/>\n        <capability name=\"Named colors\" minToolsVersion=\"9.0\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"System colors in document resources\" minToolsVersion=\"11.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Autofill Password View Controller-->\n        <scene sceneID=\"s0d-6b-0kx\">\n            <objects>\n                <viewController storyboardIdentifier=\"AutofillPasswordViewController\" id=\"Y6W-OH-hqX\" customClass=\"AutofillPasswordViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"5EZ-qb-Rvc\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"852\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4s8-Og-pQg\">\n                                <rect key=\"frame\" x=\"20\" y=\"630\" width=\"353\" height=\"88\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"248\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Username\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Tq0-rf-tlo\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"353\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" textContentType=\"username\"/>\n                                    </textField>\n                                    <textField opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"248\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"Password\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ff4-RK-ti0\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"54\" width=\"353\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" textContentType=\"password\"/>\n                                    </textField>\n                                </subviews>\n                            </stackView>\n                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"system\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Hdv-V2-Ods\">\n                                <rect key=\"frame\" x=\"20\" y=\"738\" width=\"353\" height=\"30\"/>\n                                <color key=\"backgroundColor\" name=\"TouchBarBezel\"/>\n                                <color key=\"tintColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n                                <inset key=\"imageEdgeInsets\" minX=\"0.0\" minY=\"0.0\" maxX=\"2.2250738585072014e-308\" maxY=\"0.0\"/>\n                                <state key=\"normal\" title=\"Login\">\n                                    <color key=\"titleColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n                                </state>\n                                <connections>\n                                    <action selector=\"loginActin:\" destination=\"Y6W-OH-hqX\" eventType=\"touchUpInside\" id=\"UpW-Hx-Qc0\"/>\n                                </connections>\n                            </button>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"vDu-zF-Fre\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"Hdv-V2-Ods\" firstAttribute=\"leading\" secondItem=\"4s8-Og-pQg\" secondAttribute=\"leading\" id=\"9Zx-Wz-dvt\"/>\n                            <constraint firstItem=\"vDu-zF-Fre\" firstAttribute=\"bottom\" secondItem=\"Hdv-V2-Ods\" secondAttribute=\"bottom\" constant=\"50\" id=\"A7o-WN-Naa\"/>\n                            <constraint firstItem=\"vDu-zF-Fre\" firstAttribute=\"trailing\" secondItem=\"4s8-Og-pQg\" secondAttribute=\"trailing\" constant=\"20\" id=\"C7d-Nb-xun\"/>\n                            <constraint firstItem=\"4s8-Og-pQg\" firstAttribute=\"leading\" secondItem=\"vDu-zF-Fre\" secondAttribute=\"leading\" constant=\"20\" id=\"Wx8-A2-KFA\"/>\n                            <constraint firstItem=\"Hdv-V2-Ods\" firstAttribute=\"top\" secondItem=\"4s8-Og-pQg\" secondAttribute=\"bottom\" constant=\"20\" id=\"ctZ-8j-0wm\"/>\n                            <constraint firstItem=\"Hdv-V2-Ods\" firstAttribute=\"trailing\" secondItem=\"4s8-Og-pQg\" secondAttribute=\"trailing\" id=\"k09-Bh-O7c\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Ief-a0-LHa\" userLabel=\"First Responder\" customClass=\"UIResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"131\" y=\"-49\"/>\n        </scene>\n        <!--#1892-->\n        <scene sceneID=\"nYA-fa-Ds7\">\n            <objects>\n                <viewController storyboardIdentifier=\"ReloadLayout1892ViewController\" title=\"#1892\" id=\"7UA-hp-Yka\" customClass=\"ReloadLayout1892ViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"z50-sE-5ux\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"852\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"N9O-kc-Nkk\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"59\" width=\"393\" height=\"759\"/>\n                                <subviews>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" scrollEnabled=\"NO\" textAlignment=\"natural\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fZO-Pf-MBM\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"100\" width=\"393\" height=\"835\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.\na\na\na\na\na\na\na\na\nb\nb\nb\nb\nb\nb\nc\nc\nc\ncc\nc\nc\ncc\nc\nc\nd\nc\ne\ne\ne\ne\ne\ne\nef\n\nff\n\nff\nf\nf\nf\n</string>\n                                        <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                        <connections>\n                                            <outlet property=\"delegate\" destination=\"7UA-hp-Yka\" id=\"m4H-aX-dcO\"/>\n                                        </connections>\n                                    </textView>\n                                    <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4te-dH-efj\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"100\"/>\n                                        <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"100\" id=\"RuT-p4-D6v\"/>\n                                        </constraints>\n                                    </view>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"fZO-Pf-MBM\" firstAttribute=\"top\" secondItem=\"4te-dH-efj\" secondAttribute=\"bottom\" id=\"4Ny-1q-lRL\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"4te-dH-efj\" secondAttribute=\"trailing\" id=\"5YQ-a1-mp1\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"fZO-Pf-MBM\" secondAttribute=\"bottom\" id=\"R0N-6P-hfK\"/>\n                                    <constraint firstItem=\"4te-dH-efj\" firstAttribute=\"leading\" secondItem=\"N9O-kc-Nkk\" secondAttribute=\"leading\" id=\"T4z-WE-mZG\"/>\n                                    <constraint firstItem=\"4te-dH-efj\" firstAttribute=\"top\" secondItem=\"N9O-kc-Nkk\" secondAttribute=\"top\" id=\"azD-qf-40k\"/>\n                                    <constraint firstItem=\"fZO-Pf-MBM\" firstAttribute=\"leading\" secondItem=\"N9O-kc-Nkk\" secondAttribute=\"leading\" id=\"c8i-XN-pLu\"/>\n                                    <constraint firstItem=\"fZO-Pf-MBM\" firstAttribute=\"height\" secondItem=\"N9O-kc-Nkk\" secondAttribute=\"height\" multiplier=\"1.1\" id=\"dkg-gd-aWG\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"fZO-Pf-MBM\" secondAttribute=\"trailing\" id=\"e9i-XE-3GR\"/>\n                                </constraints>\n                            </scrollView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"2OT-xF-F2Q\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"N9O-kc-Nkk\" firstAttribute=\"leading\" secondItem=\"2OT-xF-F2Q\" secondAttribute=\"leading\" id=\"8AD-6L-7Sg\"/>\n                            <constraint firstItem=\"2OT-xF-F2Q\" firstAttribute=\"trailing\" secondItem=\"N9O-kc-Nkk\" secondAttribute=\"trailing\" id=\"ASB-RB-vTq\"/>\n                            <constraint firstItem=\"N9O-kc-Nkk\" firstAttribute=\"top\" secondItem=\"2OT-xF-F2Q\" secondAttribute=\"top\" id=\"I48-g8-kmw\"/>\n                            <constraint firstItem=\"2OT-xF-F2Q\" firstAttribute=\"bottom\" secondItem=\"N9O-kc-Nkk\" secondAttribute=\"bottom\" id=\"Mxj-xh-MJH\"/>\n                            <constraint firstItem=\"fZO-Pf-MBM\" firstAttribute=\"width\" secondItem=\"z50-sE-5ux\" secondAttribute=\"width\" id=\"wrh-S9-6cv\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"textView\" destination=\"fZO-Pf-MBM\" id=\"NFq-LX-VEq\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"bOh-jP-2Cw\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"921\" y=\"-49\"/>\n        </scene>\n        <!--#1935-->\n        <scene sceneID=\"dhC-vZ-lz5\">\n            <objects>\n                <viewController storyboardIdentifier=\"EdgesForExtendedLayoutViewController\" title=\"#1935\" id=\"DDk-RX-3X8\" customClass=\"EdgesForExtendedLayoutViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"eHE-2w-lGX\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"852\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hPy-C5-F0G\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"59\" width=\"393\" height=\"759\"/>\n                                <subviews>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" textAlignment=\"natural\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Svw-Rb-nV7\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"759\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <string key=\"text\">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.</string>\n                                        <color key=\"textColor\" systemColor=\"labelColor\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                    </textView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"Svw-Rb-nV7\" firstAttribute=\"width\" secondItem=\"hPy-C5-F0G\" secondAttribute=\"width\" id=\"Alc-zo-m43\"/>\n                                    <constraint firstItem=\"Svw-Rb-nV7\" firstAttribute=\"leading\" secondItem=\"hPy-C5-F0G\" secondAttribute=\"leading\" id=\"UHY-mY-LW0\"/>\n                                    <constraint firstItem=\"Svw-Rb-nV7\" firstAttribute=\"height\" secondItem=\"hPy-C5-F0G\" secondAttribute=\"height\" id=\"dKR-hV-m7G\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"Svw-Rb-nV7\" secondAttribute=\"bottom\" id=\"rnt-Sx-yOb\"/>\n                                    <constraint firstItem=\"Svw-Rb-nV7\" firstAttribute=\"top\" secondItem=\"hPy-C5-F0G\" secondAttribute=\"top\" id=\"tJj-SU-UYg\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"Svw-Rb-nV7\" secondAttribute=\"trailing\" id=\"uxl-l1-iGa\"/>\n                                </constraints>\n                            </scrollView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"KHT-Yf-N8s\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"hPy-C5-F0G\" firstAttribute=\"top\" secondItem=\"KHT-Yf-N8s\" secondAttribute=\"top\" id=\"97S-38-oSn\"/>\n                            <constraint firstItem=\"KHT-Yf-N8s\" firstAttribute=\"bottom\" secondItem=\"hPy-C5-F0G\" secondAttribute=\"bottom\" id=\"Ke7-sb-aII\"/>\n                            <constraint firstItem=\"hPy-C5-F0G\" firstAttribute=\"leading\" secondItem=\"KHT-Yf-N8s\" secondAttribute=\"leading\" id=\"gnL-FX-gW7\"/>\n                            <constraint firstItem=\"KHT-Yf-N8s\" firstAttribute=\"trailing\" secondItem=\"hPy-C5-F0G\" secondAttribute=\"trailing\" id=\"wIH-bA-iec\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"Akd-ou-1xs\" userLabel=\"First Responder\" customClass=\"UIResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1624\" y=\"-49\"/>\n        </scene>\n        <!--UITextView Selection (#56)-->\n        <scene sceneID=\"DlL-B7-fVn\">\n            <objects>\n                <viewController storyboardIdentifier=\"TextSelectionViewController\" id=\"aGy-VH-eDu\" customClass=\"TextSelectionViewController\" customModule=\"DemoSwift\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"K57-tY-6IX\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"852\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <tableView clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"40\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yvg-ll-4ka\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"59\" width=\"393\" height=\"655\"/>\n                                <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <connections>\n                                    <outlet property=\"dataSource\" destination=\"aGy-VH-eDu\" id=\"cvJ-Co-PlC\"/>\n                                    <outlet property=\"delegate\" destination=\"aGy-VH-eDu\" id=\"4jr-A5-zsk\"/>\n                                </connections>\n                            </tableView>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5iC-jM-dFg\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"714\" width=\"393\" height=\"50\"/>\n                                <subviews>\n                                    <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CII-aL-EK1\">\n                                        <rect key=\"frame\" x=\"5\" y=\"10\" width=\"383\" height=\"30\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"30\" id=\"HL9-hW-6fJ\"/>\n                                        </constraints>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                    </textView>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"DEDEDE\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"CII-aL-EK1\" secondAttribute=\"bottom\" constant=\"10\" id=\"4bO-ig-Lky\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"CII-aL-EK1\" secondAttribute=\"trailing\" constant=\"5\" id=\"aMs-SB-v9I\"/>\n                                    <constraint firstItem=\"CII-aL-EK1\" firstAttribute=\"leading\" secondItem=\"5iC-jM-dFg\" secondAttribute=\"leading\" constant=\"5\" id=\"sXW-1f-VdC\"/>\n                                    <constraint firstItem=\"CII-aL-EK1\" firstAttribute=\"top\" secondItem=\"5iC-jM-dFg\" secondAttribute=\"top\" constant=\"10\" id=\"xHi-Lf-yHb\"/>\n                                </constraints>\n                            </view>\n                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"TK9-hP-YHy\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"764\" width=\"393\" height=\"54\"/>\n                                <subviews>\n                                    <textField opaque=\"NO\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"H8D-QB-Qhx\">\n                                        <rect key=\"frame\" x=\"5\" y=\"10\" width=\"383\" height=\"34\"/>\n                                        <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                        <textInputTraits key=\"textInputTraits\"/>\n                                    </textField>\n                                </subviews>\n                                <color key=\"backgroundColor\" name=\"D1D2D9\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"H8D-QB-Qhx\" secondAttribute=\"bottom\" constant=\"10\" id=\"0Qg-OC-22U\"/>\n                                    <constraint firstAttribute=\"trailing\" secondItem=\"H8D-QB-Qhx\" secondAttribute=\"trailing\" constant=\"5\" id=\"EhV-Mo-VIC\"/>\n                                    <constraint firstItem=\"H8D-QB-Qhx\" firstAttribute=\"top\" secondItem=\"TK9-hP-YHy\" secondAttribute=\"top\" constant=\"10\" id=\"NIo-Xx-E33\"/>\n                                    <constraint firstItem=\"H8D-QB-Qhx\" firstAttribute=\"leading\" secondItem=\"TK9-hP-YHy\" secondAttribute=\"leading\" constant=\"5\" id=\"qes-ol-5yT\"/>\n                                </constraints>\n                            </view>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Mkw-XL-FKG\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"TK9-hP-YHy\" firstAttribute=\"top\" secondItem=\"5iC-jM-dFg\" secondAttribute=\"bottom\" id=\"9N5-l8-v7q\"/>\n                            <constraint firstItem=\"Mkw-XL-FKG\" firstAttribute=\"trailing\" secondItem=\"yvg-ll-4ka\" secondAttribute=\"trailing\" id=\"Ajn-Ws-xU6\"/>\n                            <constraint firstItem=\"5iC-jM-dFg\" firstAttribute=\"top\" secondItem=\"yvg-ll-4ka\" secondAttribute=\"bottom\" id=\"X8L-0n-ddV\"/>\n                            <constraint firstItem=\"5iC-jM-dFg\" firstAttribute=\"trailing\" secondItem=\"yvg-ll-4ka\" secondAttribute=\"trailing\" id=\"YeF-yS-eq8\"/>\n                            <constraint firstItem=\"Mkw-XL-FKG\" firstAttribute=\"bottom\" secondItem=\"TK9-hP-YHy\" secondAttribute=\"bottom\" id=\"bsK-cQ-VS3\"/>\n                            <constraint firstItem=\"5iC-jM-dFg\" firstAttribute=\"leading\" secondItem=\"yvg-ll-4ka\" secondAttribute=\"leading\" id=\"fcg-yy-TSn\"/>\n                            <constraint firstItem=\"TK9-hP-YHy\" firstAttribute=\"trailing\" secondItem=\"yvg-ll-4ka\" secondAttribute=\"trailing\" id=\"g92-0D-J6V\"/>\n                            <constraint firstItem=\"yvg-ll-4ka\" firstAttribute=\"top\" secondItem=\"Mkw-XL-FKG\" secondAttribute=\"top\" id=\"gfi-IZ-WYV\"/>\n                            <constraint firstItem=\"TK9-hP-YHy\" firstAttribute=\"leading\" secondItem=\"yvg-ll-4ka\" secondAttribute=\"leading\" id=\"lQj-4E-ziq\"/>\n                            <constraint firstItem=\"yvg-ll-4ka\" firstAttribute=\"leading\" secondItem=\"Mkw-XL-FKG\" secondAttribute=\"leading\" id=\"tFt-y2-Hr4\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"UITextView Selection (#56)\" id=\"czX-qU-Ka4\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"Fao-jK-Bu6\"/>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"tableView\" destination=\"yvg-ll-4ka\" id=\"zCC-d0-xZI\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"1LS-NN-4qo\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-3041\" y=\"217\"/>\n        </scene>\n        <!--Non Scrollable TextView (#1979)-->\n        <scene sceneID=\"yE9-fb-Jw7\">\n            <objects>\n                <viewController storyboardIdentifier=\"NonScrollTextView1979ViewController\" id=\"CEK-Og-pGd\" customClass=\"NonScrollTextView1979ViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"HaP-j4-hld\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"852\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <viewLayoutGuide key=\"safeArea\" id=\"pLD-mj-2F4\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                    </view>\n                    <navigationItem key=\"navigationItem\" title=\"Non Scrollable TextView (#1979)\" id=\"b3I-5W-Yrn\">\n                        <barButtonItem key=\"rightBarButtonItem\" image=\"settings\" id=\"QTj-hW-fxS\"/>\n                    </navigationItem>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"ob8-kF-zqG\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-608\" y=\"-49\"/>\n        </scene>\n        <!--Enable Mode2000 View Controller-->\n        <scene sceneID=\"Cvh-T6-Ojs\">\n            <objects>\n                <viewController storyboardIdentifier=\"EnableMode2000ViewController\" id=\"GLv-jS-3hn\" customClass=\"EnableMode2000ViewController\" customModule=\"DemoSwift\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"FoR-AW-eif\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"393\" height=\"852\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <stackView opaque=\"NO\" contentMode=\"scaleToFill\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XUN-wl-hwC\">\n                                <rect key=\"frame\" x=\"20\" y=\"716\" width=\"353\" height=\"82\"/>\n                                <subviews>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" distribution=\"fillEqually\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"VAf-qq-35A\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"82.333333333333329\" height=\"82\"/>\n                                        <subviews>\n                                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"252\" verticalHuggingPriority=\"252\" horizontalCompressionResistancePriority=\"752\" verticalCompressionResistancePriority=\"752\" text=\"TextField 1\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rwg-y0-2a6\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"82.333333333333329\" height=\"31\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                <nil key=\"textColor\"/>\n                                                <nil key=\"highlightedColor\"/>\n                                            </label>\n                                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"252\" verticalHuggingPriority=\"252\" horizontalCompressionResistancePriority=\"752\" verticalCompressionResistancePriority=\"752\" text=\"TextField 2\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Ke-R1-2ex\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"51\" width=\"82.333333333333329\" height=\"31\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                <nil key=\"textColor\"/>\n                                                <nil key=\"highlightedColor\"/>\n                                            </label>\n                                        </subviews>\n                                    </stackView>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" distribution=\"fillEqually\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aRM-jh-CeM\">\n                                        <rect key=\"frame\" x=\"102.33333333333333\" y=\"0.0\" width=\"181.66666666666669\" height=\"82\"/>\n                                        <subviews>\n                                            <textField opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 1\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"g8w-it-niB\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"181.66666666666666\" height=\"31\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                            <textField opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"center\" borderStyle=\"roundedRect\" placeholder=\"TextField 2\" textAlignment=\"natural\" minimumFontSize=\"17\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2ds-zI-OMo\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"51\" width=\"181.66666666666666\" height=\"31\"/>\n                                                <color key=\"backgroundColor\" name=\"EBEDF0\"/>\n                                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                                <textInputTraits key=\"textInputTraits\"/>\n                                            </textField>\n                                        </subviews>\n                                    </stackView>\n                                    <stackView opaque=\"NO\" contentMode=\"scaleToFill\" axis=\"vertical\" distribution=\"fillEqually\" spacing=\"20\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QpN-6Q-oWb\">\n                                        <rect key=\"frame\" x=\"304\" y=\"0.0\" width=\"49\" height=\"82\"/>\n                                        <subviews>\n                                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"752\" verticalHuggingPriority=\"752\" horizontalCompressionResistancePriority=\"752\" verticalCompressionResistancePriority=\"752\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" title=\"EnableMode\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"r8d-GV-vmC\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"51\" height=\"31\"/>\n                                                <color key=\"onTintColor\" name=\"757677\"/>\n                                                <connections>\n                                                    <action selector=\"textField1ModeAction:\" destination=\"GLv-jS-3hn\" eventType=\"valueChanged\" id=\"ZKy-63-RXB\"/>\n                                                </connections>\n                                            </switch>\n                                            <switch opaque=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"752\" verticalHuggingPriority=\"752\" horizontalCompressionResistancePriority=\"752\" verticalCompressionResistancePriority=\"752\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" on=\"YES\" title=\"EnableMode\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"F0Z-u4-3yo\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"51\" width=\"51\" height=\"31\"/>\n                                                <color key=\"onTintColor\" name=\"757677\"/>\n                                                <connections>\n                                                    <action selector=\"textField2ModeAction:\" destination=\"GLv-jS-3hn\" eventType=\"valueChanged\" id=\"3M8-kl-j60\"/>\n                                                </connections>\n                                            </switch>\n                                        </subviews>\n                                    </stackView>\n                                </subviews>\n                            </stackView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"vTl-yJ-CP6\"/>\n                        <color key=\"backgroundColor\" systemColor=\"systemBackgroundColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"XUN-wl-hwC\" firstAttribute=\"leading\" secondItem=\"vTl-yJ-CP6\" secondAttribute=\"leading\" constant=\"20\" id=\"12R-hK-mAn\"/>\n                            <constraint firstItem=\"vTl-yJ-CP6\" firstAttribute=\"trailing\" secondItem=\"XUN-wl-hwC\" secondAttribute=\"trailing\" constant=\"20\" id=\"MHv-DS-3CJ\"/>\n                            <constraint firstItem=\"vTl-yJ-CP6\" firstAttribute=\"bottom\" secondItem=\"XUN-wl-hwC\" secondAttribute=\"bottom\" constant=\"20\" id=\"nC6-YJ-yHb\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"textField1\" destination=\"g8w-it-niB\" id=\"1gZ-Ru-fTt\"/>\n                        <outlet property=\"textField2\" destination=\"2ds-zI-OMo\" id=\"s2g-Zh-wUu\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"mgF-Ho-6Ti\" userLabel=\"First Responder\" customClass=\"UIResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"2439\" y=\"-49\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"settings\" width=\"25\" height=\"25\"/>\n        <namedColor name=\"757677\">\n            <color red=\"0.45882352941176469\" green=\"0.46274509803921571\" blue=\"0.46666666666666667\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"D1D2D9\">\n            <color red=\"0.81960784313725488\" green=\"0.82352941176470584\" blue=\"0.85098039215686272\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"DEDEDE\">\n            <color red=\"0.87058823529411766\" green=\"0.87058823529411766\" blue=\"0.87058823529411766\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"EBEDF0\">\n            <color red=\"0.92156862745098034\" green=\"0.92941176470588238\" blue=\"0.94117647058823528\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <namedColor name=\"TouchBarBezel\">\n            <color red=\"0.68627450980392157\" green=\"0.32156862745098042\" blue=\"0.87058823529411766\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n        </namedColor>\n        <systemColor name=\"labelColor\">\n            <color white=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n        <systemColor name=\"systemBackgroundColor\">\n            <color white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"genericGamma22GrayColorSpace\"/>\n        </systemColor>\n    </resources>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/FullScreenControllers.strings",
    "content": "\n/* Class = \"UINavigationItem\"; title = \"UISearchController\"; ObjectID = \"4DZ-MZ-qyC\"; */\n\"4DZ-MZ-qyC.title\" = \"UISearchController\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"50p-P4-9dL\"; */\n\"50p-P4-9dL.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UINavigationItem\"; title = \"TextViewController\"; ObjectID = \"WU4-It-O6g\"; */\n\"WU4-It-O6g.title\" = \"TextViewController\";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/General.strings",
    "content": "\n/* Class = \"UITextView\"; text = \"Can set keyboard and textFiled distance\"; ObjectID = \"0xQ-D1-B5M\"; */\n\"0xQ-D1-B5M.text\" = \"Can set keyboard and textFiled distance\";\n\n/* Class = \"UITextView\"; text = \"`IQKeyboardManager` works on all orientations, and with the toolbar.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"2d0-tG-Pzx\"; */\n\"2d0-tG-Pzx.text\" = \"`IQKeyboardManager` works on all orientations, and with the toolbar.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UILabel\"; text = \"Customised keyboardDistanceFromTextField = 150\"; ObjectID = \"6fq-Kb-dPm\"; */\n\"6fq-Kb-dPm.text\" = \"Customised keyboardDistanceFromTextField = 150\";\n\n/* Class = \"UIButton\"; normalTitle = \"Present\"; ObjectID = \"8D8-Vm-PL6\"; */\n\"8D8-Vm-PL6.normalTitle\" = \"Present\";\n\n/* Class = \"UINavigationItem\"; title = \"Manual UIToolbar\"; ObjectID = \"Bsk-WG-eqv\"; */\n\"Bsk-WG-eqv.title\" = \"Manual UIToolbar\";\n\n/* Class = \"UITextView\"; text = \"can adjust textView's height when it is too big to fit on screen\"; ObjectID = \"Inj-lY-mEU\"; */\n\"Inj-lY-mEU.text\" = \"can adjust textView's height when it is too big to fit on screen\";\n\n/* Class = \"UITextField\"; placeholder = \"Device Orientation support\"; ObjectID = \"Kdq-Kn-JCR\"; */\n\"Kdq-Kn-JCR.placeholder\" = \"Device Orientation support\";\n\n/* Class = \"UITextView\"; text = \"`IQKeyboardManager` allows you to prevent issues of the keyboard sliding up and covering a text field without needing you to enter any code.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"L8v-ua-y0A\"; */\n\"L8v-ua-y0A.text\" = \"`IQKeyboardManager` allows you to prevent issues of the keyboard sliding up and covering a text field without needing you to enter any code.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UITextView\"; text = \"To use `IQKeyboardManager` you simply need to add the framework to your project or add the source files to your project.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"LEb-Ei-7Sx\"; */\n\"LEb-Ei-7Sx.text\" = \"To use `IQKeyboardManager` you simply need to add the framework to your project or add the source files to your project.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UIButton\"; normalTitle = \"Push\"; ObjectID = \"OBL-N5-MlD\"; */\n\"OBL-N5-MlD.normalTitle\" = \"Push\";\n\n/* Class = \"UINavigationItem\"; title = \"UITextView\"; ObjectID = \"Qen-Wv-SxX\"; */\n\"Qen-Wv-SxX.title\" = \"UITextView\";\n\n/* Class = \"UILabel\"; text = \"This textField customise toolbar titile to use as UIButton\"; ObjectID = \"R4y-qs-Tiw\"; */\n\"R4y-qs-Tiw.text\" = \"This textField customise toolbar titile to use as UIButton\";\n\n/* Class = \"UITextField\"; placeholder = \"Easiest integration\"; ObjectID = \"Rr4-Yx-SRn\"; */\n\"Rr4-Yx-SRn.placeholder\" = \"Easiest integration\";\n\n/* Class = \"UIButton\"; normalTitle = \"Push\"; ObjectID = \"Tt5-47-EvZ\"; */\n\"Tt5-47-EvZ.normalTitle\" = \"Push\";\n\n/* Class = \"UITextView\"; text = \"2 There are also nice optional features allowing you to customize the distance from the text field, add the next/previous done button as a keyboard UIToolbar, play sounds when the user navigations through the form and more. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"Zjk-gc-QEr\"; */\n\"Zjk-gc-QEr.text\" = \"2 There are also nice optional features allowing you to customize the distance from the text field, add the next/previous done button as a keyboard UIToolbar, play sounds when the user navigations through the form and more. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UITextField\"; text = \"3\"; ObjectID = \"ai2-LR-bIl\"; */\n\"ai2-LR-bIl.text\" = \"3\";\n\n/* Class = \"UITextField\"; text = \"1\"; ObjectID = \"dET-Cl-VUb\"; */\n\"dET-Cl-VUb.text\" = \"1\";\n\n/* Class = \"UITextField\"; placeholder = \"Enter Username\"; ObjectID = \"dQK-Ms-QYa\"; */\n\"dQK-Ms-QYa.placeholder\" = \"Enter Username\";\n\n/* Class = \"UILabel\"; text = \"This is IQTextView with placeholder support\"; ObjectID = \"eGW-E3-wza\"; */\n\"eGW-E3-wza.text\" = \"This is IQTextView with placeholder support\";\n\n/* Class = \"UITextField\"; placeholder = \"UITextField Category for Keyboard\"; ObjectID = \"f9i-hv-EJj\"; */\n\"f9i-hv-EJj.placeholder\" = \"UITextField Category for Keyboard\";\n\n/* Class = \"UITextView\"; text = \"`ZERO LINE OF CODE`, `No More imports`, `No More Subclasses`, `No More Manual Work`.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"m72-tJ-oyd\"; */\n\"m72-tJ-oyd.text\" = \"`ZERO LINE OF CODE`, `No More imports`, `No More Subclasses`, `No More Manual Work`.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UILabel\"; text = \"If you do not want to add any UIToolbar on a textField, just set ablank UIView as it's inputAccessoryView\\n                                    \\n                                    textField.inputAcessoryView = [[UIView alloc] init];\"; ObjectID = \"oB6-a2-0nS\"; */\n\"oB6-a2-0nS.text\" = \"If you do not want to add any UIToolbar on a textField, just set ablank UIView as it's inputAccessoryView\\n                                    \\n                                    textField.inputAcessoryView = [[UIView alloc] init];\";\n\n/* Class = \"UITextView\"; text = \"One of the Speciality of this Library is `It Works Automatically`.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"rUI-UY-dtz\"; */\n\"rUI-UY-dtz.text\" = \"One of the Speciality of this Library is `It Works Automatically`.\\n                                    \\n                                    Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UILabel\"; text = \"This textField observes custom prev/next/done selector\"; ObjectID = \"s35-Qq-Nsv\"; */\n\"s35-Qq-Nsv.text\" = \"This textField observes custom prev/next/done selector\";\n\n/* Class = \"UINavigationItem\"; title = \"TextField Demo\"; ObjectID = \"s8z-5e-RBK\"; */\n\"s8z-5e-RBK.title\" = \"TextField Demo\";\n\n/* Class = \"UIButton\"; normalTitle = \"Present\"; ObjectID = \"uNE-Wh-GsT\"; */\n\"uNE-Wh-GsT.normalTitle\" = \"Present\";\n\n/* Class = \"UITextView\"; text = \"Can resign on touching outside\"; ObjectID = \"wIC-LZ-asw\"; */\n\"wIC-LZ-asw.text\" = \"Can resign on touching outside\";\n\n/* Class = \"UITextField\"; placeholder = \"Customize InputView support\"; ObjectID = \"z7r-JB-8xa\"; */\n\"z7r-JB-8xa.placeholder\" = \"Customize InputView support\";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/Launch.strings",
    "content": "\n/* Class = \"UILabel\"; text = \"IQKeyboardManager Swift\"; ObjectID = \"8Gp-lr-M5c\"; */\n\"8Gp-lr-M5c.text\" = \"IQKeyboardManager Swift\";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/Main.strings",
    "content": "\n/* Class = \"UILabel\"; text = \"Full Screen TextViewController\"; ObjectID = \"29q-7C-AJL\"; */\n\"29q-7C-AJL.text\" = \"Full Screen TextViewController\";\n\n/* Class = \"UILabel\"; text = \"- registerTextFieldViewClass: didBeginEditingNotificationName: didEndEditingNotificationName\"; ObjectID = \"3xx-A5-U5p\"; */\n\"3xx-A5-U5p.text\" = \"- registerTextFieldViewClass: didBeginEditingNotificationName: didEndEditingNotificationName\";\n\n/* Class = \"UILabel\"; text = \"UITableViewController\"; ObjectID = \"47J-01-GaW\"; */\n\"47J-01-GaW.text\" = \"UITableViewController\";\n\n/* Class = \"UILabel\"; text = \"UITableView\"; ObjectID = \"4tu-ej-glw\"; */\n\"4tu-ej-glw.text\" = \"UITableView\";\n\n/* Class = \"UILabel\"; text = \"UICollectionView example\"; ObjectID = \"5G2-JX-PU5\"; */\n\"5G2-JX-PU5.text\" = \"UICollectionView example\";\n\n/* Class = \"UILabel\"; text = \"Text Selection #56\"; ObjectID = \"5Sl-ZO-6OH\"; */\n\"5Sl-ZO-6OH.text\" = \"Text Selection #56\";\n\n/* Class = \"UILabel\"; text = \"StackView\"; ObjectID = \"686-2k-7Sa\"; */\n\"686-2k-7Sa.text\" = \"StackView\";\n\n/* Class = \"UITableViewSection\"; headerTitle = \"UIScrollView & it's subclasses example\"; ObjectID = \"6Y6-J2-kBv\"; */\n\"6Y6-J2-kBv.headerTitle\" = \"UIScrollView & it's subclasses example\";\n\n/* Class = \"UILabel\"; text = \"UIStackView example in iOS9\"; ObjectID = \"7nn-db-1QM\"; */\n\"7nn-db-1QM.text\" = \"UIStackView example in iOS9\";\n\n/* Class = \"UILabel\"; text = \"WKWebView example\"; ObjectID = \"8XY-A5-dnk\"; */\n\"8XY-A5-dnk.text\" = \"WKWebView example\";\n\n/* Class = \"UILabel\"; text = \"Refreshing Layout on the fly\"; ObjectID = \"C0s-kb-Bl8\"; */\n\"C0s-kb-Bl8.text\" = \"Refreshing Layout on the fly\";\n\n/* Class = \"UILabel\"; text = \"- (void)reloadLayoutIfNeeded\"; ObjectID = \"Dzz-bo-Ft8\"; */\n\"Dzz-bo-Ft8.text\" = \"- (void)reloadLayoutIfNeeded\";\n\n/* Class = \"UILabel\"; text = \"NavigationBar & Toolbar\"; ObjectID = \"F3P-4I-j2h\"; */\n\"F3P-4I-j2h.text\" = \"NavigationBar & Toolbar\";\n\n/* Class = \"UITableViewSection\"; headerTitle = \"Full Screen\"; ObjectID = \"GLu-hg-zhP\"; */\n\"GLu-hg-zhP.headerTitle\" = \"Full Screen\";\n\n/* Class = \"UILabel\"; text = \"UIPageViewController\"; ObjectID = \"Gc8-g0-sng\"; */\n\"Gc8-g0-sng.text\" = \"UIPageViewController\";\n\n/* Class = \"UILabel\"; text = \"UITableView in Container\"; ObjectID = \"JTC-NP-c0d\"; */\n\"JTC-NP-c0d.text\" = \"UITableView in Container\";\n\n/* Class = \"UILabel\"; text = \"UITableView inside UIScrollView\"; ObjectID = \"JUG-pm-L0a\"; */\n\"JUG-pm-L0a.text\" = \"UITableView inside UIScrollView\";\n\n/* Class = \"UILabel\"; text = \"- enableAutoToolbar - toolbarManageBehaviour - overrideKeyboardAppearance - keyboardAppearance - shouldResignOnTouchOutside - IQKeyboardReturnKeyHandler (Class) - shouldHideToolbarPlaceholder (Category) - toolbarPlaceholder (Category) - toolbarTintColor - toolbarDoneBarButtonItemImage - toolbarDoneBarButtonItemText\"; ObjectID = \"KuD-1z-36f\"; */\n\"KuD-1z-36f.text\" = \"- enableAutoToolbar - toolbarManageBehaviour - overrideKeyboardAppearance - keyboardAppearance - shouldResignOnTouchOutside - IQKeyboardReturnKeyHandler (Class) - shouldHideToolbarPlaceholder (Category) - toolbarPlaceholder (Category) - toolbarTintColor - toolbarDoneBarButtonItemImage - toolbarDoneBarButtonItemText\";\n\n/* Class = \"UILabel\"; text = \"Text Selection\"; ObjectID = \"WIY-wJ-lgq\"; */\n\"WIY-wJ-lgq.text\" = \"Text Selection\";\n\n/* Class = \"UILabel\"; text = \"Popover\"; ObjectID = \"XnQ-PR-MXs\"; */\n\"XnQ-PR-MXs.text\" = \"Popover\";\n\n/* Class = \"UILabel\"; text = \"- disabledDistanceHandlingClasses - enabledDistanceHandlingClasses - disabledToolbarClasses - enabledToolbarClasses - toolbarPreviousNextAllowedClasses - disabledTouchResignedClasses\\n- enabledTouchResignedClasses\"; ObjectID = \"YB6-DC-bfI\"; */\n\"YB6-DC-bfI.text\" = \"- disabledDistanceHandlingClasses - enabledDistanceHandlingClasses - disabledToolbarClasses - enabledToolbarClasses - toolbarPreviousNextAllowedClasses - disabledTouchResignedClasses\\n- enabledTouchResignedClasses\";\n\n/* Class = \"UILabel\"; text = \"CustomView example\"; ObjectID = \"ask-lD-56a\"; */\n\"ask-lD-56a.text\" = \"CustomView example\";\n\n/* Class = \"UILabel\"; text = \"Navigate next/prev in collectionView\"; ObjectID = \"bC5-7g-33X\"; */\n\"bC5-7g-33X.text\" = \"Navigate next/prev in collectionView\";\n\n/* Class = \"UILabel\"; text = \"IQKeyboardManager doesn't affet UITableViewController default scrolling implementation. UITableViewController class automatically resizes and repositions its table view when there is in-line editing of text fields\"; ObjectID = \"dVp-ny-Wn7\"; */\n\"dVp-ny-Wn7.text\" = \"IQKeyboardManager doesn't affet UITableViewController default scrolling implementation. UITableViewController class automatically resizes and repositions its table view when there is in-line editing of text fields\";\n\n/* Class = \"UILabel\"; text = \"- UISearchBar, UIAlertView, UITextField within different UIView\"; ObjectID = \"dYe-IU-fRj\"; */\n\"dYe-IU-fRj.text\" = \"- UISearchBar, UIAlertView, UITextField within different UIView\";\n\n/* Class = \"UILabel\"; text = \"- shouldRestoreScrollViewContentOffset A UITableView as a child of UIViewController embedded in the storyboard using a container view.\"; ObjectID = \"ed7-8b-Ck4\"; */\n\"ed7-8b-Ck4.text\" = \"- shouldRestoreScrollViewContentOffset A UITableView as a child of UIViewController embedded in the storyboard using a container view.\";\n\n/* Class = \"UITableViewSection\"; headerTitle = \"Library Properties\"; ObjectID = \"fYv-iE-p8L\"; */\n\"fYv-iE-p8L.headerTitle\" = \"Library Properties\";\n\n/* Class = \"UILabel\"; text = \"UITextView ContentInset adjustment\"; ObjectID = \"fsu-LW-S6P\"; */\n\"fsu-LW-S6P.text\" = \"UITextView ContentInset adjustment\";\n\n/* Class = \"UILabel\"; text = \"- TextViewController using IQLayoutGuide\"; ObjectID = \"gQK-gD-yCA\"; */\n\"gQK-gD-yCA.text\" = \"- TextViewController using IQLayoutGuide\";\n\n/* Class = \"UILabel\"; text = \"Special Cases\"; ObjectID = \"hSl-CV-20a\"; */\n\"hSl-CV-20a.text\" = \"Special Cases\";\n\n/* Class = \"UILabel\"; text = \"UITextField, UITextView inside UITableView\"; ObjectID = \"hfZ-RB-s53\"; */\n\"hfZ-RB-s53.text\" = \"UITextField, UITextView inside UITableView\";\n\n/* Class = \"UILabel\"; text = \"UISearchController\"; ObjectID = \"ira-UX-Ixl\"; */\n\"ira-UX-Ixl.text\" = \"UISearchController\";\n\n/* Class = \"UILabel\"; text = \"UITextField/UITextView example\"; ObjectID = \"itr-sp-j54\"; */\n\"itr-sp-j54.text\" = \"UITextField/UITextView example\";\n\n/* Class = \"UILabel\"; text = \"- enable - shouldToolbarUsesTextFieldTintColor - keyboardDistanceFromTextField - shouldShowToolbarPlaceholder - placeholderFont - keyboardDistanceFromTextField (Category) - IQTextView (Class) - setCustomPreviousTarget: action: (Category) - setCustomNextTarget: action: (Category) - setCustomDoneTarget: action: (Category)\"; ObjectID = \"ko2-SX-mJs\"; */\n\"ko2-SX-mJs.text\" = \"- enable - shouldToolbarUsesTextFieldTintColor - keyboardDistanceFromTextField - shouldShowToolbarPlaceholder - placeholderFont - keyboardDistanceFromTextField (Category) - IQTextView (Class) - setCustomPreviousTarget: action: (Category) - setCustomNextTarget: action: (Category) - setCustomDoneTarget: action: (Category)\";\n\n/* Class = \"UILabel\"; text = \"Search Controller\"; ObjectID = \"sfy-kL-TLi\"; */\n\"sfy-kL-TLi.text\" = \"Search Controller\";\n\n/* Class = \"UITableViewSection\"; headerTitle = \"Others\"; ObjectID = \"t68-ki-Vqj\"; */\n\"t68-ki-Vqj.headerTitle\" = \"Others\";\n\n/* Class = \"UINavigationItem\"; title = \"IQKeyboardManagerSwift\"; ObjectID = \"tP6-QK-Jl8\"; */\n\"tP6-QK-Jl8.title\" = \"IQKeyboardManagerSwift\";\n\n/* Class = \"UILabel\"; text = \"- addPreviousNextDoneOnKeyboardWithTarget: previousAction: nextAction: doneAction: - addDoneOnKeyboardWithTarget: action: - Use Toolbar title as button to do something special\"; ObjectID = \"wqF-JW-cmz\"; */\n\"wqF-JW-cmz.text\" = \"- addPreviousNextDoneOnKeyboardWithTarget: previousAction: nextAction: doneAction: - addDoneOnKeyboardWithTarget: action: - Use Toolbar title as button to do something special\";\n\n/* Class = \"UILabel\"; text = \"Manual UIToolbar + No UIToolbar\"; ObjectID = \"xCu-GT-OP1\"; */\n\"xCu-GT-OP1.text\" = \"Manual UIToolbar + No UIToolbar\";\n\n/* Class = \"UILabel\"; text = \"UIScrollView+UITableView example\"; ObjectID = \"xTK-Wa-4qX\"; */\n\"xTK-Wa-4qX.text\" = \"UIScrollView+UITableView example\";\n\n/* Class = \"UILabel\"; text = \"- Doesn't affect WKWebView default scrolling implementation\"; ObjectID = \"zU8-4C-nid\"; */\n\"zU8-4C-nid.text\" = \"- Doesn't affect WKWebView default scrolling implementation\";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/ScrollView.strings",
    "content": "\n/* Class = \"UINavigationItem\"; title = \"UIScrollView Example\"; ObjectID = \"1XW-VW-7XA\"; */\n\"1XW-VW-7XA.title\" = \"UIScrollView Example\";\n\n/* Class = \"UILabel\"; text = \"If you want to always show UINavigationBar, then change the UIView class to UIScrollView. Note that if scrollView.scrollEnabled = NO then library ignore scrollView and behave like as there is no scrollView in the middle\"; ObjectID = \"2HE-8l-pwN\"; */\n\"2HE-8l-pwN.text\" = \"If you want to always show UINavigationBar, then change the UIView class to UIScrollView. Note that if scrollView.scrollEnabled = NO then library ignore scrollView and behave like as there is no scrollView in the middle\";\n\n/* Class = \"UINavigationItem\"; title = \"UITableViewController\"; ObjectID = \"7ET-Mf-F9b\"; */\n\"7ET-Mf-F9b.title\" = \"UITableViewController\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"7Nj-eG-LrV\"; */\n\"7Nj-eG-LrV.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UINavigationItem\"; title = \"UICollectionView\"; ObjectID = \"Byq-bS-sCQ\"; */\n\"Byq-bS-sCQ.title\" = \"UICollectionView\";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Position: 7, Tag: 3\"; ObjectID = \"Fa0-cQ-2Qp\"; */\n\"Fa0-cQ-2Qp.placeholder\" = \"Subview Position: 7, Tag: 3\";\n\n/* Class = \"UINavigationItem\"; title = \"Navigation Bar\"; ObjectID = \"IWx-4s-DcF\"; */\n\"IWx-4s-DcF.title\" = \"Navigation Bar\";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Position: 3, Tag: 7\"; ObjectID = \"JwK-tl-xro\"; */\n\"JwK-tl-xro.placeholder\" = \"Subview Position: 3, Tag: 7\";\n\n/* Class = \"UITextView\"; text = \"TextView2\"; ObjectID = \"Qlj-B6-NJn\"; */\n\"Qlj-B6-NJn.text\" = \"TextView2\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"QxW-ea-vah\"; */\n\"QxW-ea-vah.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UILabel\"; text = \"Try editing the last cell.\"; ObjectID = \"RIL-5e-TSk\"; */\n\"RIL-5e-TSk.text\" = \"Try editing the last cell.\";\n\n/* Class = \"UILabel\"; text = \"scrollView.scrollEnabled\"; ObjectID = \"V8j-ee-Y7K\"; */\n\"V8j-ee-Y7K.text\" = \"scrollView.scrollEnabled\";\n\n/* Class = \"UINavigationItem\"; title = \"UITableView Example\"; ObjectID = \"ZVF-w5-7zs\"; */\n\"ZVF-w5-7zs.title\" = \"UITableView Example\";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Position: 2, Tag: 5\"; ObjectID = \"bxS-Ei-dBG\"; */\n\"bxS-Ei-dBG.placeholder\" = \"Subview Position: 2, Tag: 5\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"c05-oS-Wjq\"; */\n\"c05-oS-Wjq.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Position: 4, Tag: 2\"; ObjectID = \"cfl-i4-rKq\"; */\n\"cfl-i4-rKq.placeholder\" = \"Subview Position: 4, Tag: 2\";\n\n/* Class = \"UINavigationItem\"; title = \"UITableView in Container\"; ObjectID = \"f0D-mr-Rzc\"; */\n\"f0D-mr-Rzc.title\" = \"UITableView in Container\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"fgX-lN-poh\"; */\n\"fgX-lN-poh.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Position: 5, Tag: 6\"; ObjectID = \"heE-KG-kGl\"; */\n\"heE-KG-kGl.placeholder\" = \"Subview Position: 5, Tag: 6\";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Position: 6, Tag: 1\"; ObjectID = \"iZI-Ur-2uh\"; */\n\"iZI-Ur-2uh.placeholder\" = \"Subview Position: 6, Tag: 1\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"jHL-zT-u6g\"; */\n\"jHL-zT-u6g.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"kmt-IJ-ajj\"; */\n\"kmt-IJ-ajj.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"nJx-vj-aC8\"; */\n\"nJx-vj-aC8.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n\n/* Class = \"UILabel\"; text = \"Should Hide Title?\"; ObjectID = \"oiz-z1-TuT\"; */\n\"oiz-z1-TuT.text\" = \"Should Hide Title?\";\n\n/* Class = \"UITextView\"; text = \"TextView1\"; ObjectID = \"pMi-TP-eI0\"; */\n\"pMi-TP-eI0.text\" = \"TextView1\";\n\n/* Class = \"UITextField\"; placeholder = \"Subview Postion: 1, Tag: 4\"; ObjectID = \"wO8-Qd-oOx\"; */\n\"wO8-Qd-oOx.placeholder\" = \"Subview Postion: 1, Tag: 4\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \"; ObjectID = \"xgn-PI-i5c\"; */\n\"xgn-PI-i5c.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. \";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/Settings.strings",
    "content": "\n/* Class = \"UILabel\"; text = \"Set customised text for displaying instead of done button\"; ObjectID = \"6c1-Bw-1aW\"; */\n\"6c1-Bw-1aW.text\" = \"Set customised text for displaying instead of done button\";\n\n/* Class = \"UILabel\"; text = \"Keyboard Distance From TextField\"; ObjectID = \"6ui-Nh-dce\"; */\n\"6ui-Nh-dce.text\" = \"Keyboard Distance From TextField\";\n\n/* Class = \"UILabel\"; text = \"Enable/Disable IQKeyboardManager\"; ObjectID = \"83w-3B-iAB\"; */\n\"83w-3B-iAB.text\" = \"Enable/Disable IQKeyboardManager\";\n\n/* Class = \"UILabel\"; text = \"Toolbar Done BarButtonItem Image\"; ObjectID = \"Fho-oc-M7i\"; */\n\"Fho-oc-M7i.text\" = \"Toolbar Done BarButtonItem Image\";\n\n/* Class = \"UILabel\"; text = \"Enable/Disable IQKeyboardManager\"; ObjectID = \"GSN-ib-2QV\"; */\n\"GSN-ib-2QV.text\" = \"Enable/Disable IQKeyboardManager\";\n\n/* Class = \"UINavigationItem\"; title = \"Options\"; ObjectID = \"H3G-vI-2WD\"; */\n\"H3G-vI-2WD.title\" = \"Options\";\n\n/* Class = \"UILabel\"; text = \"Set keyboard distance from textField\"; ObjectID = \"OWA-3C-V4P\"; */\n\"OWA-3C-V4P.text\" = \"Set keyboard distance from textField\";\n\n/* Class = \"UILabel\"; text = \"Enable\"; ObjectID = \"P6l-3B-Vbo\"; */\n\"P6l-3B-Vbo.text\" = \"Enable\";\n\n/* Class = \"UILabel\"; text = \"Set keyboard distance from textField\"; ObjectID = \"YNr-d4-Faa\"; */\n\"YNr-d4-Faa.text\" = \"Set keyboard distance from textField\";\n\n/* Class = \"UILabel\"; text = \"100\"; ObjectID = \"eZu-JU-5IX\"; */\n\"eZu-JU-5IX.text\" = \"100\";\n\n/* Class = \"UILabel\"; text = \"Keyboard Distance From TextField\"; ObjectID = \"eij-19-1a2\"; */\n\"eij-19-1a2.text\" = \"Keyboard Distance From TextField\";\n\n/* Class = \"UILabel\"; text = \"Toolbar Done BarButtonItem Text\"; ObjectID = \"epd-OM-hrb\"; */\n\"epd-OM-hrb.text\" = \"Toolbar Done BarButtonItem Text\";\n\n/* Class = \"UILabel\"; text = \"Toolbar Tint Color\"; ObjectID = \"gbI-Y1-o9F\"; */\n\"gbI-Y1-o9F.text\" = \"Toolbar Tint Color\";\n\n/* Class = \"UILabel\"; text = \"Toolbar Manage Behaviour\"; ObjectID = \"iPm-jy-a7o\"; */\n\"iPm-jy-a7o.text\" = \"Toolbar Manage Behaviour\";\n\n/* Class = \"UILabel\"; text = \"Set keyboard toolbar tintColor\"; ObjectID = \"kpy-XG-RQx\"; */\n\"kpy-XG-RQx.text\" = \"Set keyboard toolbar tintColor\";\n\n/* Class = \"UINavigationItem\"; title = \"Settings\"; ObjectID = \"kw6-7O-wxw\"; */\n\"kw6-7O-wxw.title\" = \"Settings\";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/Storyboard/ar.lproj/SpecialCase.strings",
    "content": "\n/* Class = \"UITextField\"; placeholder = \"Custom Work\"; ObjectID = \"2mf-mU-ovU\"; */\n\"2mf-mU-ovU.placeholder\" = \"Custom Work\";\n\n/* Class = \"UINavigationItem\"; title = \"WKWebView Example\"; ObjectID = \"3s1-JL-XZo\"; */\n\"3s1-JL-XZo.title\" = \"WKWebView Example\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField 2\"; ObjectID = \"48H-nl-1ha\"; */\n\"48H-nl-1ha.placeholder\" = \"TextField 2\";\n\n/* Class = \"UILabel\"; text = \"Enable Touch Resign inside CustomViewController\"; ObjectID = \"B56-NE-au7\"; */\n\"B56-NE-au7.text\" = \"Enable Touch Resign inside CustomViewController\";\n\n/* Class = \"UILabel\"; text = \"DisableDistanceHandling Inside CustomViewController even if IQKeyboardManager is enabled.\"; ObjectID = \"I5d-yW-B3e\"; */\n\"I5d-yW-B3e.text\" = \"DisableDistanceHandling Inside CustomViewController even if IQKeyboardManager is enabled.\";\n\n/* Class = \"UILabel\"; text = \"Disable Toolbar inside CustomViewController\"; ObjectID = \"JGH-5V-8ic\"; */\n\"JGH-5V-8ic.text\" = \"Disable Toolbar inside CustomViewController\";\n\n/* Class = \"UINavigationItem\"; title = \"UIStackView Example\"; ObjectID = \"L7c-7d-d1o\"; */\n\"L7c-7d-d1o.title\" = \"UIStackView Example\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField 1\"; ObjectID = \"LhW-1m-VYd\"; */\n\"LhW-1m-VYd.placeholder\" = \"TextField 1\";\n\n/* Class = \"UITextField\"; placeholder = \"textField.userEnteractionEnabled = NO\"; ObjectID = \"PfH-qV-9D8\"; */\n\"PfH-qV-9D8.placeholder\" = \"textField.userEnteractionEnabled = NO\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField 3\"; ObjectID = \"UJZ-io-mQK\"; */\n\"UJZ-io-mQK.placeholder\" = \"TextField 3\";\n\n/* Class = \"UIButton\"; normalTitle = \"Show Alert with TextField\"; ObjectID = \"YrO-Gs-dk3\"; */\n\"YrO-Gs-dk3.normalTitle\" = \"Show Alert with TextField\";\n\n/* Class = \"UILabel\"; text = \"Disable Touch Resign inside CustomViewController\"; ObjectID = \"a6b-j6-OEh\"; */\n\"a6b-j6-OEh.text\" = \"Disable Touch Resign inside CustomViewController\";\n\n/* Class = \"UINavigationItem\"; title = \"Refresh Layout\"; ObjectID = \"aR0-XP-p7v\"; */\n\"aR0-XP-p7v.title\" = \"Refresh Layout\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField 5\"; ObjectID = \"cub-N3-8xz\"; */\n\"cub-N3-8xz.placeholder\" = \"TextField 5\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField.enabled = NO\"; ObjectID = \"d6z-1T-UIh\"; */\n\"d6z-1T-UIh.placeholder\" = \"TextField.enabled = NO\";\n\n/* Class = \"UITextView\"; text = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.\"; ObjectID = \"djH-2u-YPC\"; */\n\"djH-2u-YPC.text\" = \"Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.\";\n\n/* Class = \"UINavigationItem\"; title = \"UITextView Selection (#56)\"; ObjectID = \"f8P-PN-bre\"; */\n\"f8P-PN-bre.title\" = \"UITextView Selection (#56)\";\n\n/* Class = \"UINavigationItem\"; title = \"Special Cases\"; ObjectID = \"iYf-Wa-Sqo\"; */\n\"iYf-Wa-Sqo.title\" = \"Special Cases\";\n\n/* Class = \"UILabel\"; text = \"EnableDistanceHandling Inside CustomViewController even if IQKeyboardManager is disabled.\"; ObjectID = \"nhk-VO-9Ye\"; */\n\"nhk-VO-9Ye.text\" = \"EnableDistanceHandling Inside CustomViewController even if IQKeyboardManager is disabled.\";\n\n/* Class = \"UILabel\"; text = \"Enable Toolbar inside CustomViewController\"; ObjectID = \"oLV-3B-B0Z\"; */\n\"oLV-3B-B0Z.text\" = \"Enable Toolbar inside CustomViewController\";\n\n/* Class = \"UINavigationItem\"; title = \"CustomView Demo\"; ObjectID = \"oVJ-aw-xfZ\"; */\n\"oVJ-aw-xfZ.title\" = \"CustomView Demo\";\n\n/* Class = \"UILabel\"; text = \"Allow Toolbar PreviousNext Inside IQPreviousNextView\"; ObjectID = \"uiA-Vu-37g\"; */\n\"uiA-Vu-37g.text\" = \"Allow Toolbar PreviousNext Inside IQPreviousNextView\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField enabled. Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test,\"; ObjectID = \"wcb-LB-3eZ\"; */\n\"wcb-LB-3eZ.placeholder\" = \"TextField enabled. Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test, Long Text Test,\";\n\n/* Class = \"UITextField\"; placeholder = \"TextField 4\"; ObjectID = \"yDj-sx-3pn\"; */\n\"yDj-sx-3pn.placeholder\" = \"TextField 4\";\n\n/* Class = \"UIButton\"; normalTitle = \"Reload Layout\"; ObjectID = \"zDG-8z-I8F\"; */\n\"zDG-8z-I8F.normalTitle\" = \"Reload Layout\";\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/AutofillPasswordViewController.swift",
    "content": "//\n//  AutofillPasswordViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass AutofillPasswordViewController: BaseViewController {\n\n    @IBAction private func loginActin(_ sender: UIButton) {\n        self.view.endEditing(true)\n        DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: {\n            let viewController = BaseViewController()\n            viewController.view.backgroundColor = UIColor.white\n            self.navigationController?.pushViewController(viewController, animated: true)\n        })\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/BaseTableViewController.swift",
    "content": "//\n//  BaseTableViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass BaseTableViewController: UITableViewController {\n\n    override func viewWillAppear(_ animated: Bool) {\n        super.viewWillAppear(animated)\n\n        let presentButtonTitle = (self.presentingViewController == nil) ? \"Present\" : \"Dismiss\"\n        let presentBarButtonItem = UIBarButtonItem(title: presentButtonTitle,\n                                                   style: .done,\n                                                   target: self,\n                                                   action: #selector(presentAction(_:)))\n\n        let settingsBarButtongItem = UIBarButtonItem(image: UIImage(named: \"settings\"),\n                                                     style: .done,\n                                                     target: self,\n                                                     action: #selector(settingsAction(_:)))\n        self.navigationItem.rightBarButtonItems = [settingsBarButtongItem, presentBarButtonItem]\n    }\n\n    override var shouldAutorotate: Bool {\n        return true\n    }\n}\n\nextension BaseTableViewController {\n\n    @IBAction private func presentAction(_ sender: UIBarButtonItem) {\n\n        if self.presentingViewController == nil {\n\n            let controller = UIAlertController.init(title: nil, message: nil, preferredStyle: .actionSheet)\n            controller.popoverPresentationController?.barButtonItem = sender\n\n            controller.addAction(.init(title: \"Full Screen\", style: .default, handler: { _ in\n                self.presentUsing(style: .fullScreen, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Page Sheet\", style: .default, handler: { _ in\n                self.presentUsing(style: .pageSheet, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Form Sheet\", style: .default, handler: { _ in\n                self.presentUsing(style: .formSheet, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Current Context\", style: .default, handler: { _ in\n                self.presentUsing(style: .currentContext, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Over Full Screen\", style: .default, handler: { _ in\n                self.presentUsing(style: .overFullScreen, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Over Current Context\", style: .default, handler: { _ in\n                self.presentUsing(style: .overCurrentContext, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Popover\", style: .default, handler: { _ in\n                self.presentUsing(style: .popover, sender: sender)\n            }))\n\n            if #available(iOS 13, *) {\n                controller.addAction(.init(title: \"Automatic\", style: .default, handler: { _ in\n                    self.presentUsing(style: .automatic, sender: sender)\n                }))\n            }\n\n            controller.addAction(.init(title: \"Cancel\", style: .cancel))\n\n            present(controller, animated: true, completion: nil)\n        } else {\n            dismiss(animated: true, completion: nil)\n        }\n    }\n\n    func presentUsing(style: UIModalPresentationStyle, sender: UIBarButtonItem) {\n\n        let classNameString: String = \"\\(type(of: self.self))\"\n\n        let controller: UIViewController = (storyboard?.instantiateViewController(withIdentifier: classNameString))!\n        let navController: NavigationController = NavigationController(rootViewController: controller)\n        navController.navigationBar.tintColor = self.navigationController?.navigationBar.tintColor\n        navController.navigationBar.barTintColor = self.navigationController?.navigationBar.barTintColor\n        navController.navigationBar.titleTextAttributes = self.navigationController?.navigationBar.titleTextAttributes\n        navController.modalPresentationStyle = style\n        if style == .popover {\n            let heightWidth = max(UIScreen.main.bounds.width, UIScreen.main.bounds.height)\n            navController.preferredContentSize = CGSize(width: heightWidth, height: heightWidth)\n            navController.popoverPresentationController?.barButtonItem = sender\n            navController.popoverPresentationController?.delegate = self\n        }\n        present(navController, animated: true, completion: nil)\n    }\n}\n\nextension BaseTableViewController {\n\n    @IBAction private func settingsAction(_ sender: UIBarButtonItem) {\n        let storyboard = UIStoryboard(name: \"Settings\", bundle: nil)\n        let controller = storyboard.instantiateViewController(withIdentifier: \"SettingsViewController\")\n\n        let navController: NavigationController = NavigationController(rootViewController: controller)\n        navController.navigationBar.tintColor = self.navigationController?.navigationBar.tintColor\n        navController.navigationBar.barTintColor = self.navigationController?.navigationBar.barTintColor\n        navController.navigationBar.titleTextAttributes = self.navigationController?.navigationBar.titleTextAttributes\n        navController.modalPresentationStyle = .popover\n        navController.popoverPresentationController?.barButtonItem = sender\n        let heightWidth = max(UIScreen.main.bounds.width, UIScreen.main.bounds.height)\n        navController.preferredContentSize = CGSize(width: heightWidth, height: heightWidth)\n        navController.popoverPresentationController?.delegate = self\n        present(navController, animated: true, completion: nil)\n    }\n}\n\nextension BaseTableViewController: UIPopoverPresentationControllerDelegate {\n\n    func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle {\n        return .none\n    }\n\n    func prepareForPopoverPresentation(_ popoverPresentationController: UIPopoverPresentationController) {\n        self.view.endEditing(true)\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/BaseViewController.swift",
    "content": "//\n//  BaseViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass BaseViewController: UIViewController {\n\n    override func viewWillAppear(_ animated: Bool) {\n        super.viewWillAppear(animated)\n\n        let presentButtonTitle = (self.presentingViewController == nil) ? \"Present\" : \"Dismiss\"\n        let presentBarButtonItem = UIBarButtonItem(title: presentButtonTitle,\n                                                   style: .done,\n                                                   target: self,\n                                                   action: #selector(presentAction(_:)))\n\n        let settingsBarButtongItem = UIBarButtonItem(image: UIImage(named: \"settings\"),\n                                                     style: .done,\n                                                     target: self,\n                                                     action: #selector(settingsAction(_:)))\n        self.navigationItem.rightBarButtonItems = [settingsBarButtongItem, presentBarButtonItem]\n    }\n\n    override var shouldAutorotate: Bool {\n        return true\n    }\n}\n\nextension BaseViewController {\n\n    @IBAction private func presentAction(_ sender: UIBarButtonItem) {\n\n        if self.presentingViewController == nil {\n\n            let controller = UIAlertController.init(title: nil, message: nil, preferredStyle: .actionSheet)\n            controller.popoverPresentationController?.barButtonItem = sender\n\n            controller.addAction(.init(title: \"Full Screen\", style: .default, handler: { _ in\n                self.presentUsing(style: .fullScreen, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Page Sheet\", style: .default, handler: { _ in\n                self.presentUsing(style: .pageSheet, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Form Sheet\", style: .default, handler: { _ in\n                self.presentUsing(style: .formSheet, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Current Context\", style: .default, handler: { _ in\n                self.presentUsing(style: .currentContext, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Over Full Screen\", style: .default, handler: { _ in\n                self.presentUsing(style: .overFullScreen, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Over Current Context\", style: .default, handler: { _ in\n                self.presentUsing(style: .overCurrentContext, sender: sender)\n            }))\n\n            controller.addAction(.init(title: \"Popover\", style: .default, handler: { _ in\n                self.presentUsing(style: .popover, sender: sender)\n            }))\n\n            if #available(iOS 13, *) {\n                controller.addAction(.init(title: \"Automatic\", style: .default, handler: { _ in\n                    self.presentUsing(style: .automatic, sender: sender)\n                }))\n            }\n\n            controller.addAction(.init(title: \"Cancel\", style: .cancel))\n\n            present(controller, animated: true, completion: nil)\n        } else {\n            dismiss(animated: true, completion: nil)\n        }\n    }\n\n    func presentUsing(style: UIModalPresentationStyle, sender: UIBarButtonItem) {\n\n        let classNameString: String = \"\\(type(of: self.self))\"\n\n        let controller: UIViewController = (storyboard?.instantiateViewController(withIdentifier: classNameString))!\n        let navController: NavigationController = NavigationController(rootViewController: controller)\n        navController.navigationBar.tintColor = self.navigationController?.navigationBar.tintColor\n        navController.navigationBar.barTintColor = self.navigationController?.navigationBar.barTintColor\n        navController.navigationBar.titleTextAttributes = self.navigationController?.navigationBar.titleTextAttributes\n        navController.modalPresentationStyle = style\n        if style == .popover {\n            let heightWidth = max(UIScreen.main.bounds.width, UIScreen.main.bounds.height)\n            navController.preferredContentSize = CGSize(width: heightWidth, height: heightWidth)\n            navController.popoverPresentationController?.barButtonItem = sender\n            navController.popoverPresentationController?.delegate = self\n        }\n        present(navController, animated: true, completion: nil)\n    }\n}\n\nextension BaseViewController {\n\n    @IBAction private func settingsAction(_ sender: UIBarButtonItem) {\n        let storyboard = UIStoryboard(name: \"Settings\", bundle: nil)\n        let controller = storyboard.instantiateViewController(withIdentifier: \"SettingsViewController\")\n\n        let navController: NavigationController = NavigationController(rootViewController: controller)\n        navController.navigationBar.tintColor = self.navigationController?.navigationBar.tintColor\n        navController.navigationBar.barTintColor = self.navigationController?.navigationBar.barTintColor\n        navController.navigationBar.titleTextAttributes = self.navigationController?.navigationBar.titleTextAttributes\n        navController.modalPresentationStyle = .popover\n        navController.popoverPresentationController?.barButtonItem = sender\n        let heightWidth = max(UIScreen.main.bounds.width, UIScreen.main.bounds.height)\n        navController.preferredContentSize = CGSize(width: heightWidth, height: heightWidth)\n        navController.popoverPresentationController?.delegate = self\n        present(navController, animated: true, completion: nil)\n    }\n}\n\nextension BaseViewController: UIPopoverPresentationControllerDelegate {\n\n    func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle {\n        return .none\n    }\n\n    func prepareForPopoverPresentation(_ popoverPresentationController: UIPopoverPresentationController) {\n        self.view.endEditing(true)\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/CollectionViewDemoController.swift",
    "content": "//\n//  CollectionViewDemoController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass CollectionViewDemoController: BaseViewController, UICollectionViewDelegate, UICollectionViewDataSource {\n\n    @IBOutlet var collectionView: UICollectionView!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        do {\n            let itemSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0),\n                                                 heightDimension: .fractionalHeight(1.0))\n\n            let groupSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0),\n                                                  heightDimension: .absolute(50))\n\n            let item = NSCollectionLayoutItem(layoutSize: itemSize)\n\n            let group = NSCollectionLayoutGroup.horizontal(layoutSize: groupSize,\n                                                           subitems: [item])\n\n            let section: NSCollectionLayoutSection = NSCollectionLayoutSection(group: group)\n\n            let configuration: UICollectionViewCompositionalLayoutConfiguration = .init()\n            configuration.scrollDirection = .vertical\n\n            collectionView.collectionViewLayout = UICollectionViewCompositionalLayout(section: section,\n                                                                                      configuration: configuration)\n        }\n    }\n\n    func collectionView(_ collectionView: UICollectionView,\n                        numberOfItemsInSection section: Int) -> Int {\n        return 15\n    }\n\n    func collectionView(_ collectionView: UICollectionView,\n                        cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {\n\n        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: \"TextFieldCollectionViewCell\",\n                                                      for: indexPath)\n\n        let textField = cell.viewWithTag(10) as? UITextField\n        textField?.placeholder = \"\\(indexPath.section) \\(indexPath.row)\"\n\n        return cell\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/CustomViewController.swift",
    "content": "//\n//  CustomViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardReturnManager\nimport IQKeyboardToolbarManager\n\nclass CustomViewController: BaseViewController {\n\n    private let returnHandler: IQKeyboardReturnManager = .init()\n    @IBOutlet var settingsView: UIView!\n\n    @IBOutlet var switchDisableViewController: UISwitch!\n    @IBOutlet var switchEnableViewController: UISwitch!\n\n    @IBOutlet var switchDisableToolbar: UISwitch!\n    @IBOutlet var switchEnableToolbar: UISwitch!\n\n    @IBOutlet var switchDisableTouchResign: UISwitch!\n    @IBOutlet var switchEnableTouchResign: UISwitch!\n\n    @IBOutlet var switchAllowPreviousNext: UISwitch!\n\n    @IBOutlet var settingsTopConstraint: NSLayoutConstraint!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        settingsView.layer.shadowColor = UIColor.black.cgColor\n        settingsView.layer.shadowOffset = CGSize.zero\n        settingsView.layer.shadowRadius = 5.0\n        settingsView.layer.shadowOpacity = 0.5\n\n        returnHandler.addResponderSubviews(of: self.view, recursive: true)\n        returnHandler.lastTextInputViewReturnKeyType = .done\n    }\n\n    override func viewWillAppear(_ animated: Bool) {\n        super.viewWillAppear(animated)\n\n        do {\n            let classes = IQKeyboardManager.shared.disabledDistanceHandlingClasses\n            switchDisableViewController.isOn = classes.contains(where: { element in\n                return element == CustomViewController.self\n            })\n        }\n\n        do {\n            let classes = IQKeyboardManager.shared.enabledDistanceHandlingClasses\n            switchEnableViewController.isOn = classes.contains(where: { element in\n                return element == CustomViewController.self\n            })\n        }\n\n        do {\n            let classes = IQKeyboardToolbarManager.shared.disabledToolbarClasses\n            switchDisableToolbar.isOn = classes.contains(where: { element in\n                return element == CustomViewController.self\n            })\n        }\n\n        do {\n            let classes = IQKeyboardToolbarManager.shared.enabledToolbarClasses\n            switchEnableToolbar.isOn = classes.contains(where: { element in\n                return element == CustomViewController.self\n            })\n        }\n\n        do {\n            let classes = IQKeyboardManager.shared.disabledTouchResignedClasses\n            switchDisableTouchResign.isOn = classes.contains(where: { element in\n                return element == CustomViewController.self\n            })\n        }\n\n        do {\n            let classes = IQKeyboardManager.shared.enabledTouchResignedClasses\n            switchEnableTouchResign.isOn = classes.contains(where: { element in\n                return element == CustomViewController.self\n            })\n        }\n\n        do {\n            let classes = IQKeyboardToolbarManager.shared.deepResponderAllowedContainerClasses\n            switchAllowPreviousNext.isOn = classes.contains(where: { element in\n                return element == IQDeepResponderContainerView.self\n            })\n        }\n    }\n\n    @IBAction func tapAction(_ sender: UITapGestureRecognizer) {\n        if sender.state == .ended {\n\n            let finalCurve = UIView.AnimationOptions.beginFromCurrentState.union(.init(rawValue: 7))\n\n            let animationDuration: TimeInterval = 0.3\n\n            UIView.animate(withDuration: animationDuration, delay: 0, options: finalCurve, animations: {\n\n                if self.settingsTopConstraint.constant != 0 {\n                    self.settingsTopConstraint.constant = 0\n                } else {\n                    self.settingsTopConstraint.constant = -self.settingsView.frame.size.height+30\n                }\n\n                self.view.setNeedsLayout()\n                self.view.layoutIfNeeded()\n            }, completion: nil)\n        }\n    }\n\n    @IBAction func disableInViewControllerAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardManager.shared.disabledDistanceHandlingClasses.append(CustomViewController.self)\n        } else {\n\n            if let index = IQKeyboardManager.shared.disabledDistanceHandlingClasses.firstIndex(where: { element in\n                return element == CustomViewController.self\n            }) {\n                IQKeyboardManager.shared.disabledDistanceHandlingClasses.remove(at: index)\n            }\n        }\n    }\n\n    @IBAction func enableInViewControllerAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardManager.shared.enabledDistanceHandlingClasses.append(CustomViewController.self)\n        } else {\n\n            if let index = IQKeyboardManager.shared.enabledDistanceHandlingClasses.firstIndex(where: { element in\n                return element == CustomViewController.self\n            }) {\n                IQKeyboardManager.shared.enabledDistanceHandlingClasses.remove(at: index)\n            }\n        }\n    }\n\n    @IBAction func disableToolbarAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardToolbarManager.shared.disabledToolbarClasses.append(CustomViewController.self)\n        } else {\n\n            if let index = IQKeyboardToolbarManager.shared.disabledToolbarClasses.firstIndex(where: { element in\n                return element == CustomViewController.self\n            }) {\n                IQKeyboardToolbarManager.shared.disabledToolbarClasses.remove(at: index)\n            }\n        }\n    }\n\n    @IBAction func enableToolbarAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardToolbarManager.shared.enabledToolbarClasses.append(CustomViewController.self)\n        } else {\n            if let index = IQKeyboardToolbarManager.shared.enabledToolbarClasses.firstIndex(where: { element in\n                return element == CustomViewController.self\n            }) {\n                IQKeyboardToolbarManager.shared.enabledToolbarClasses.remove(at: index)\n            }\n        }\n    }\n\n    @IBAction func disableTouchOutsideAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardManager.shared.disabledTouchResignedClasses.append(CustomViewController.self)\n        } else {\n            if let index = IQKeyboardManager.shared.disabledTouchResignedClasses.firstIndex(where: { element in\n                return element == CustomViewController.self\n            }) {\n                IQKeyboardManager.shared.disabledTouchResignedClasses.remove(at: index)\n            }\n        }\n    }\n\n    @IBAction func enableTouchOutsideAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardManager.shared.enabledTouchResignedClasses.append(CustomViewController.self)\n        } else {\n\n            if let index = IQKeyboardManager.shared.enabledTouchResignedClasses.firstIndex(where: { element in\n                return element == CustomViewController.self\n            }) {\n                IQKeyboardManager.shared.enabledTouchResignedClasses.remove(at: index)\n            }\n        }\n    }\n\n    @IBAction func allowedPreviousNextAction(_ sender: UISwitch) {\n        self.view.endEditing(true)\n        if sender.isOn {\n            IQKeyboardToolbarManager.shared\n                .deepResponderAllowedContainerClasses.append(IQDeepResponderContainerView.self)\n        } else {\n\n            if let index = IQKeyboardToolbarManager.shared\n                .deepResponderAllowedContainerClasses.firstIndex(where: { element in\n                return element == IQDeepResponderContainerView.self\n            }) {\n                IQKeyboardToolbarManager.shared.deepResponderAllowedContainerClasses.remove(at: index)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/EdgesForExtendedLayoutViewController.swift",
    "content": "//\n//  EdgesForExtendedLayoutViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass EdgesForExtendedLayoutViewController: BaseViewController {\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        self.edgesForExtendedLayout = .all\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/EnableMode2000ViewController.swift",
    "content": "//\n//  TextSelectionViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\n\nclass EnableMode2000ViewController: BaseViewController {\n\n    @IBOutlet private var textField1: UITextField!\n    @IBOutlet private var textField2: UITextField!\n\n    @IBAction private func textField1ModeAction(_ sender: UISwitch) {\n        textField1.iq.enableMode = sender.isOn ? .enabled : .disabled\n    }\n\n    @IBAction private func textField2ModeAction(_ sender: UISwitch) {\n        textField2.iq.enableMode = sender.isOn ? .enabled : .disabled\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/ExampleTableViewController.swift",
    "content": "//\n//  ExampleTableViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass ExampleTableViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {\n\n    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n        return 10\n    }\n\n    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {\n        if (indexPath.row % 2) == 0 {\n            return 40\n        } else {\n            return 160\n        }\n    }\n\n    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n\n        let identifier = \"\\(indexPath.section) \\(indexPath.row)\"\n\n        var cell = tableView.dequeueReusableCell(withIdentifier: identifier)\n\n        if cell == nil {\n\n            cell = UITableViewCell(style: .default, reuseIdentifier: identifier)\n            cell?.backgroundColor = UIColor.clear\n            cell?.selectionStyle = .none\n\n            let contentView: UIView! = cell?.contentView\n\n            if (indexPath.row % 2) == 0 {\n\n                let textField = UITextField(frame: CGRect(x: 5, y: 5,\n                                                          width: contentView.frame.size.width-10,\n                                                          height: 30))\n                textField.autoresizingMask = [.flexibleBottomMargin, .flexibleTopMargin, .flexibleWidth]\n                textField.placeholder = identifier\n                textField.backgroundColor = UIColor.clear\n                textField.borderStyle = .roundedRect\n                cell?.contentView.addSubview(textField)\n\n            } else {\n\n                let textView = UITextView(frame: contentView.bounds.insetBy(dx: 5, dy: 5))\n                textView.autoresizingMask = [.flexibleHeight, .flexibleWidth]\n                textView.text = \"Sample Text\"\n                cell?.contentView.addSubview(textView)\n            }\n        }\n\n        return cell!\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/ManualToolbarViewController.swift",
    "content": "//\n//  ManualToolbarViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\n\nclass ManualToolbarViewController: BaseViewController {\n\n    @IBOutlet var textField1: UITextField!\n    @IBOutlet var textField2: UITextField!\n    @IBOutlet var textView3: UITextView!\n    @IBOutlet var textField4: UITextField!\n    @IBOutlet var textField5: UITextField!\n\n    deinit {\n        textField1 = nil\n        textField2 = nil\n        textView3 = nil\n        textField4 = nil\n        textField5 = nil\n    }\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        textField1.iq.addPreviousNextDone(target: self,\n                                          previousAction: #selector(self.previousAction(_:)),\n                                          nextAction: #selector(self.nextAction(_:)),\n                                          doneAction: #selector(self.doneAction(_:)),\n                                          showPlaceholder: true)\n        textField1.iq.toolbar.previousBarButton.isEnabled = false\n        textField1.iq.toolbar.nextBarButton.isEnabled = true\n\n        textField2.iq.addPreviousNextDone(target: self,\n                                          previousAction: #selector(self.previousAction(_:)),\n                                          nextAction: #selector(self.nextAction(_:)),\n                                          doneAction: #selector(self.doneAction(_:)),\n                                          showPlaceholder: true)\n        textField2.iq.toolbar.previousBarButton.isEnabled = true\n        textField2.iq.toolbar.nextBarButton.isEnabled = false\n\n        textView3.iq.addPreviousNextDone(target: self,\n                                         previousAction: #selector(self.previousAction(_:)),\n                                         nextAction: #selector(self.nextAction(_:)),\n                                         doneAction: #selector(self.doneAction(_:)),\n                                         showPlaceholder: true)\n\n        textField4.iq.toolbar.titleBarButton.setTarget(self, action: #selector(self.titleAction(_:)))\n        textField4.iq.placeholder = \"Saved Passwords\"\n        textField4.iq.addDone(target: self, action: #selector(self.doneAction(_:)), showPlaceholder: true)\n\n        textField5.inputAccessoryView = UIView()\n    }\n\n    @objc func previousAction(_ sender: UITextField!) {\n\n        if textField2.isFirstResponder {\n            textView3.becomeFirstResponder()\n        } else if textView3.isFirstResponder {\n            textField1.becomeFirstResponder()\n        }\n    }\n\n    @objc func nextAction(_ sender: UITextField!) {\n\n        if textField1.isFirstResponder {\n            textView3.becomeFirstResponder()\n        } else if textView3.isFirstResponder {\n            textField2.becomeFirstResponder()\n        }\n    }\n\n    @objc func doneAction(_ sender: UITextField!) {\n        self.view.endEditing(true)\n    }\n\n    @objc func titleAction(_ sender: UIButton) {\n\n        let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)\n        alertController.addAction(UIAlertAction(title: \"Cancel\", style: .cancel, handler: nil))\n\n        alertController.addAction(UIAlertAction(title: \"test@example.com\",\n                                                style: .default,\n                                                handler: { (_: UIAlertAction) in\n            self.textField4.text = \"test\"\n        }))\n\n        alertController.addAction(UIAlertAction(title: \"demo@example.com\",\n                                                style: .default,\n                                                handler: { (_: UIAlertAction) in\n            self.textField4.text = \"demo\"\n        }))\n\n        alertController.popoverPresentationController?.sourceView = sender\n        self.present(alertController, animated: true, completion: nil)\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/NavigationBarViewController.swift",
    "content": "//\n//  NavigationBarViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardReturnManager\n\nclass NavigationBarViewController: BaseViewController, UITextFieldDelegate {\n\n    private let returnHandler: IQKeyboardReturnManager = .init()\n    @IBOutlet var textField2: UITextField!\n    @IBOutlet var textField3: UITextField!\n    @IBOutlet var scrollView: UIScrollView!\n\n    deinit {\n        textField2 = nil\n        textField3 = nil\n    }\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        textField3.iq.placeholder = \"This is the customised placeholder title for displaying as toolbar title\"\n\n        returnHandler.addResponderSubviews(of: self.view, recursive: true)\n        returnHandler.lastTextInputViewReturnKeyType = UIReturnKeyType.done\n    }\n\n    @IBAction func textFieldClicked(_ sender: UITextField!) {\n\n    }\n\n    @IBAction func enableScrollAction(_ sender: UISwitch!) {\n        scrollView.isScrollEnabled = sender.isOn\n    }\n\n    @IBAction func shouldHideTitle(_ sender: UISwitch!) {\n        textField2.iq.hidePlaceholder = !textField2.iq.hidePlaceholder\n    }\n\n    func textFieldShouldReturn(_ textField: UITextField) -> Bool {\n        return true\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/NavigationController.swift",
    "content": "//\n//  NavigationController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass NavigationController: UINavigationController {\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        self.navigationBar.barTintColor = UIColor.white\n\n        if #available(iOS 13.0, *) {\n            let navigationBarAppearance = UINavigationBarAppearance()\n            navigationBarAppearance.configureWithTransparentBackground()\n            navigationBarAppearance.backgroundColor = UIColor.white\n\n            navigationBar.standardAppearance = navigationBarAppearance\n            navigationBar.compactAppearance = navigationBarAppearance\n            navigationBar.scrollEdgeAppearance = navigationBarAppearance\n            if #available(iOS 15.0, *) {\n                navigationBar.compactScrollEdgeAppearance = navigationBarAppearance\n            }\n        }\n\n        navigationBar.setBackgroundImage(UIImage(), for: .default)\n        navigationBar.shadowImage = UIImage()\n    }\n\n    override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {\n        if let tabBarController = tabBarController {\n            return tabBarController.preferredStatusBarUpdateAnimation\n        } else {\n            return .fade\n        }\n    }\n\n    override var preferredStatusBarStyle: UIStatusBarStyle {\n        if let tabBarController = tabBarController {\n            return tabBarController.preferredStatusBarStyle\n        } else {\n            return .lightContent\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/NonScrollTextView1979ViewController.swift",
    "content": "//\n//  NonScrollTextView1979ViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass NonScrollTextView1979ViewController: BaseViewController {\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        let scrollView = UIScrollView()\n        view.addSubview(scrollView)\n        scrollView.translatesAutoresizingMaskIntoConstraints = false\n        NSLayoutConstraint.activate([\n            scrollView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor),\n            scrollView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor),\n            scrollView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor),\n            scrollView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor)\n        ])\n\n        setupForStackView(in: scrollView)\n//        setupForView(in: scrollView)\n    }\n\n    private func setupForStackView(in scrollView: UIScrollView) {\n        let stackView = UIStackView()\n        stackView.spacing = 10\n        stackView.axis = .vertical\n        scrollView.addSubview(stackView)\n        stackView.translatesAutoresizingMaskIntoConstraints = false\n        NSLayoutConstraint.activate([\n            stackView.widthAnchor.constraint(equalTo: scrollView.widthAnchor, constant: -20),\n            stackView.leadingAnchor.constraint(equalTo: scrollView.contentLayoutGuide.leadingAnchor, constant: 10),\n            stackView.trailingAnchor.constraint(equalTo: scrollView.contentLayoutGuide.trailingAnchor),\n            stackView.topAnchor.constraint(equalTo: scrollView.contentLayoutGuide.topAnchor),\n            stackView.bottomAnchor.constraint(equalTo: scrollView.contentLayoutGuide.bottomAnchor)\n        ])\n\n        for index in 1...8 {\n            let textView = UITextView()\n            textView.text = \"\\(index)\"\n            textView.backgroundColor = .lightGray\n            textView.textColor = UIColor.black\n            textView.isEditable = true\n            // if set isScrollEnabled to true, it works fine\n            textView.isScrollEnabled = false\n            stackView.addArrangedSubview(textView)\n            textView.translatesAutoresizingMaskIntoConstraints = false\n            NSLayoutConstraint.activate([\n                textView.heightAnchor.constraint(equalToConstant: 500)\n            ])\n        }\n    }\n\n    private func setupForView(in scrollView: UIScrollView) {\n        let eachHeight: CGFloat = 600\n        let gap: CGFloat = 10\n        let stackView = UIView()\n        scrollView.addSubview(stackView)\n        stackView.translatesAutoresizingMaskIntoConstraints = false\n        NSLayoutConstraint.activate([\n            stackView.widthAnchor.constraint(equalTo: scrollView.widthAnchor, constant: -20),\n            stackView.heightAnchor.constraint(equalToConstant: (eachHeight + gap) * 8),\n            stackView.leadingAnchor.constraint(equalTo: scrollView.contentLayoutGuide.leadingAnchor, constant: 10),\n            stackView.trailingAnchor.constraint(equalTo: scrollView.contentLayoutGuide.trailingAnchor),\n            stackView.topAnchor.constraint(equalTo: scrollView.contentLayoutGuide.topAnchor),\n            stackView.bottomAnchor.constraint(equalTo: scrollView.contentLayoutGuide.bottomAnchor)\n        ])\n\n        for index in 1...8 {\n            let textView = UITextView()\n            textView.text = \"\\(index)\"\n            textView.backgroundColor = .lightGray\n            textView.textColor = UIColor.black\n            textView.isEditable = true\n            // if set isScrollEnabled to true, it works fine\n            textView.isScrollEnabled = false\n            stackView.addSubview(textView)\n            textView.translatesAutoresizingMaskIntoConstraints = false\n            NSLayoutConstraint.activate([\n                textView.topAnchor.constraint(equalTo: stackView.topAnchor,\n                                              constant: (eachHeight + gap) * CGFloat(index-1)),\n                textView.widthAnchor.constraint(equalTo: stackView.widthAnchor),\n                textView.heightAnchor.constraint(equalToConstant: eachHeight)\n            ])\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/OptionsViewController.swift",
    "content": "//\n//  OptionsViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nprotocol OptionsViewControllerDelegate: AnyObject {\n\n    func optionsViewController(_ controller: OptionsViewController, index: NSInteger)\n}\n\nclass OptionsViewController: UITableViewController {\n\n    weak var delegate: OptionsViewControllerDelegate?\n\n    var options = [String]()\n\n    var selectedIndex: Int = 0\n\n    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n        return self.options.count\n    }\n\n    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n\n        guard let cell = tableView.dequeueReusableCell(withIdentifier: \"OptionTableViewCell\",\n                                                       for: indexPath) as? OptionTableViewCell else {\n            fatalError(\"Can't dequeue cell\")\n        }\n\n        cell.labelOption.text = options[indexPath.row]\n\n        if indexPath.row == self.selectedIndex {\n\n            cell.accessoryType = .checkmark\n        } else {\n\n            cell.accessoryType = .none\n        }\n\n        return cell\n    }\n\n    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {\n        tableView.deselectRow(at: indexPath, animated: true)\n\n        selectedIndex = indexPath.row\n\n        delegate?.optionsViewController(self, index: indexPath.row)\n\n        tableView.reloadRows(at: tableView.indexPathsForVisibleRows!, with: .automatic)\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/PageViewController.swift",
    "content": "//\n//  PageViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass PageViewController: BaseViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/PopoverViewController.swift",
    "content": "//\n//  PopoverViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass PopoverViewController: BaseViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/RefreshLayoutViewController.swift",
    "content": "//\n//  RefreshLayoutViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\n\nclass RefreshLayoutViewController: BaseViewController {\n\n    @IBOutlet var textViewHeightConstraint: NSLayoutConstraint!\n\n    @IBAction func stepperChanged(_ sender: UIStepper) {\n\n        let finalCurve = UIView.AnimationOptions.beginFromCurrentState.union(.init(rawValue: 7))\n\n        let animationDuration: TimeInterval = 0.3\n\n        UIView.animate(withDuration: animationDuration, delay: 0, options: finalCurve, animations: {\n\n            self.textViewHeightConstraint.constant = CGFloat(sender.value)\n\n            self.view.setNeedsLayout()\n            self.view.layoutIfNeeded()\n        }, completion: nil)\n    }\n\n    @IBAction func reloadLayoutAction(_ sender: UIButton) {\n        IQKeyboardManager.shared.reloadLayoutIfNeeded()\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/ReloadLayout1892ViewController.swift",
    "content": "//\n//  ReloadLayout1892ViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\n\nclass ReloadLayout1892ViewController: BaseViewController {\n    @IBOutlet weak var textView: UITextView!\n}\n\nextension ViewController: UITextViewDelegate {\n    func textViewDidChange(_ textView: UITextView) {\n        IQKeyboardManager.shared.reloadLayoutIfNeeded()\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/SafeAreaViewController.swift",
    "content": "//\n//  SafeAreaViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass SafeAreaViewController: BaseViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/ScrollViewController.swift",
    "content": "//\n//  ScrollViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\n\nclass ScrollViewController: BaseViewController, UITextFieldDelegate, UITextViewDelegate {\n\n    @IBOutlet var scrollViewDemo: UIScrollView!\n    @IBOutlet var simpleTableView: UITableView!\n    @IBOutlet var scrollViewOfTableViews: UIScrollView!\n    @IBOutlet var tableViewInsideScrollView: UITableView!\n    @IBOutlet var scrollViewInsideScrollView: UIScrollView!\n\n    @IBOutlet var topTextField: UITextField!\n    @IBOutlet var bottomTextField: UITextField!\n\n    @IBOutlet var topTextView: UITextView!\n    @IBOutlet var bottomTextView: UITextView!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        scrollViewInsideScrollView.iq.ignoreScrollingAdjustment = true\n    }\n\n    deinit {\n        topTextField = nil\n        bottomTextField = nil\n        topTextView = nil\n        bottomTextView = nil\n    }\n}\n\nextension ScrollViewController: UITableViewDelegate, UITableViewDataSource {\n\n    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n        return 5\n    }\n\n    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n\n        let identifier = \"\\(indexPath.section) \\(indexPath.row)\"\n\n        var cell = tableView.dequeueReusableCell(withIdentifier: identifier)\n\n        if cell == nil {\n\n            cell = UITableViewCell(style: .default, reuseIdentifier: identifier)\n            cell?.selectionStyle = .none\n            cell?.backgroundColor = UIColor.clear\n\n            let textField = UITextField(frame: cell!.contentView.bounds.insetBy(dx: 5, dy: 5))\n            textField.autoresizingMask = [.flexibleBottomMargin, .flexibleTopMargin, .flexibleWidth]\n            textField.placeholder = identifier\n            textField.borderStyle = .roundedRect\n            cell?.contentView.addSubview(textField)\n        }\n\n        return cell!\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/SearchViewController.swift",
    "content": "//\n//  SearchViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass SearchViewController: BaseTableViewController, UISearchResultsUpdating, UISearchBarDelegate {\n\n    let dataList = [[\"name\": \"David Smith\", \"email\": \"david@example.com\"],\n                    [\"name\": \"Kevin John\", \"email\": \"kjohn@example.com\"],\n                    [\"name\": \"Jacob Brown\", \"email\": \"jacobb@example.com\"],\n                    [\"name\": \"Paul Johnson\", \"email\": \"johnsonp@example.com\"],\n                    [\"name\": \"Sam William\", \"email\": \"willsam@example.com\"],\n                    [\"name\": \"Brian Taylor\", \"email\": \"btaylor@example.com\"],\n                    [\"name\": \"Charles Smith\", \"email\": \"charless@example.com\"],\n                    [\"name\": \"Andrew White\", \"email\": \"awhite@example.com\"],\n                    [\"name\": \"Matt Thomas\", \"email\": \"mthomas@example.com\"],\n                    [\"name\": \"Michael Clark\", \"email\": \"clarkm@example.com\"]]\n\n    var filteredList = [[String: String]]()\n\n    var searchController: UISearchController!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        self.searchController = UISearchController(searchResultsController: nil)\n//        self.searchController.hidesNavigationBarDuringPresentation = false\n        self.searchController.searchResultsUpdater = self\n        self.searchController.obscuresBackgroundDuringPresentation = false\n        self.searchController.searchBar.scopeButtonTitles = [\"All\", \"Name\", \"Email\"]\n        self.searchController.searchBar.delegate = self\n        self.searchController.searchBar.sizeToFit()\n        if #available(iOS 11.0, *) {\n            navigationItem.searchController = searchController\n        } else {\n            self.tableView.tableHeaderView = self.searchController.searchBar\n        }\n    }\n\n    func searchForText(_ searchText: String?, scope: Int) {\n\n        guard let text = searchText, !text.isEmpty else {\n            self.filteredList = self.dataList\n            return\n        }\n\n        if scope == 0 {\n            self.filteredList = self.dataList.filter({ (obj: [String: String]) -> Bool in\n\n                if obj[\"name\"]?.contains(text) == true || obj[\"email\"]?.contains(text) == true {\n                    return true\n                } else {\n                    return false\n                }\n            })\n        } else if scope == 1 {\n            self.filteredList = self.dataList.filter({ (obj: [String: String]) -> Bool in\n\n                if obj[\"name\"]?.contains(text) == true || obj[\"email\"]?.contains(text) == true {\n                    return true\n                } else {\n                    return false\n                }\n            })\n        } else if scope == 2 {\n            self.filteredList = self.dataList.filter({ (obj: [String: String]) -> Bool in\n\n                if obj[\"email\"]?.contains(text) == true {\n                    return true\n                } else {\n                    return false\n                }\n            })\n        }\n    }\n\n    func updateSearchResults(for searchController: UISearchController) {\n        self.searchForText(searchController.searchBar.text, scope: searchController.searchBar.selectedScopeButtonIndex)\n        self.tableView.reloadData()\n    }\n\n    func searchBar(_ searchBar: UISearchBar, selectedScopeButtonIndexDidChange selectedScope: Int) {\n        self.updateSearchResults(for: self.searchController)\n    }\n\n    // MARK: - Table view data source\n\n    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n\n        if searchController.isActive == false {\n            return dataList.count\n        } else {\n            return filteredList.count\n        }\n    }\n\n    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n        var cell = tableView.dequeueReusableCell(withIdentifier: \"UITableViewCell\")\n\n        if cell == nil {\n            cell = UITableViewCell(style: .subtitle, reuseIdentifier: \"UITableViewCell\")\n        }\n\n        if searchController.isActive == false {\n            cell?.textLabel?.text         = dataList[indexPath.row][\"name\"]\n            cell?.detailTextLabel?.text   = dataList[indexPath.row][\"email\"]\n        } else {\n            cell?.textLabel?.text         = filteredList[indexPath.row][\"name\"]\n            cell?.detailTextLabel?.text   = filteredList[indexPath.row][\"email\"]\n        }\n\n        return cell!\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/SettingsViewController+TableView.swift",
    "content": "//\n//  SettingsViewController+TableView.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardToolbarManager\n\nextension SettingsViewController {\n\n    override func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {\n        return 80\n    }\n\n    override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {\n        return UITableView.automaticDimension\n    }\n\n    override func numberOfSections(in tableView: UITableView) -> Int {\n        return sectionTitles.count\n    }\n\n    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n\n        switch section {\n        case 0:\n            if IQKeyboardManager.shared.isEnabled == true {\n\n                let properties = keyboardManagerProperties[section]\n\n                return properties.count\n            } else {\n                return 1\n            }\n\n        case 1:\n            if IQKeyboardToolbarManager.shared.isEnabled == false {\n                return 1\n            } else if IQKeyboardToolbarManager.shared\n                .toolbarConfiguration.placeholderConfiguration.showPlaceholder == false {\n                return 4\n            } else {\n                let properties = keyboardManagerProperties[section]\n                return properties.count\n            }\n\n        case 2:\n\n            if IQKeyboardManager.shared.keyboardConfiguration.overrideAppearance == true {\n\n                let properties = keyboardManagerProperties[section]\n\n                return properties.count\n            } else {\n                return 1\n            }\n\n        case 3, 4, 5:\n            let properties = keyboardManagerProperties[section]\n\n            return properties.count\n\n        default:\n            return 0\n        }\n    }\n\n    override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {\n\n        return sectionTitles[section]\n    }\n\n    // swiftlint:disable cyclomatic_complexity\n    // swiftlint:disable function_body_length\n    override func tableView(_ tableView: UITableView,\n                            cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n\n        switch indexPath.section {\n        case 0:\n            switch indexPath.row {\n            case 0:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardManager.shared.isEnabled\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.enableAction(_:)), for: .valueChanged)\n                return cell\n            case 1:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"StepperTableViewCell\",\n                                                               for: indexPath) as? StepperTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.stepper.value = Double(IQKeyboardManager.shared.keyboardDistance)\n                let distance = IQKeyboardManager.shared.keyboardDistance\n                let text: String = NSString(format: \"%.0f\", distance) as String\n                cell.labelStepperValue.text = text\n                cell.stepper.removeTarget(nil, action: nil, for: .allEvents)\n                cell.stepper.addTarget(self, action: #selector(self.keyboardDistanceFromTextFieldAction(_:)),\n                                       for: .valueChanged)\n                return cell\n            case 2:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardManager.shared.layoutIfNeededOnUpdate\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.layoutIfNeededOnUpdateAction(_:)),\n                                            for: .valueChanged)\n                return cell\n            default:    break\n            }\n        case 1:\n            switch indexPath.row {\n            case 0:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardToolbarManager.shared.isEnabled\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.enableAutoToolbarAction(_:)),\n                                            for: .valueChanged)\n                return cell\n            case 1:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"NavigationTableViewCell\",\n                                                               for: indexPath) as? NavigationTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                return cell\n            case 2:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardToolbarManager.shared.toolbarConfiguration.useTextInputViewTintColor\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.shouldToolbarUsesTextFieldTintColorAction(_:)),\n                                            for: .valueChanged)\n                return cell\n            case 3:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                let subtitle = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = subtitle\n                let toolbarConfig = IQKeyboardToolbarManager.shared.toolbarConfiguration\n                cell.switchEnable.isOn = toolbarConfig.placeholderConfiguration.showPlaceholder\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.shouldShowToolbarPlaceholder(_:)),\n                                            for: .valueChanged)\n                return cell\n            case 4:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"NavigationTableViewCell\",\n                                                               for: indexPath) as? NavigationTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                return cell\n            case 5:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"ColorTableViewCell\",\n                                                               for: indexPath) as? ColorTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.selectedColorView.backgroundColor = IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor\n                cell.selectedColorView.layer.borderColor = UIColor.lightGray.cgColor\n                cell.selectedColorView.layer.borderWidth = 1.0\n                return cell\n            case 6:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"ImageSwitchTableViewCell\",\n                                                               for: indexPath) as? ImageSwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                let doneButtonConfiguration = IQKeyboardToolbarManager.shared\n                    .toolbarConfiguration.doneBarButtonConfiguration\n                cell.arrowImageView.image = doneButtonConfiguration?.image\n                cell.switchEnable.isOn = doneButtonConfiguration?.image != nil\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self,\n                                            action: #selector(self.toolbarDoneBarButtonItemImage(_:)),\n                                            for: .valueChanged)\n                return cell\n            case 7:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"TextFieldTableViewCell\",\n                                                               for: indexPath) as? TextFieldTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.textField.text = IQKeyboardToolbarManager.shared\n                    .toolbarConfiguration.doneBarButtonConfiguration?.title\n                cell.textField.tag = 17\n                cell.textField.delegate = self\n                return cell\n            default:    break\n            }\n        case 2:\n            switch indexPath.row {\n            case 0:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardManager.shared.keyboardConfiguration.overrideAppearance\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self,\n                                            action: #selector(self.overrideKeyboardAppearanceAction(_:)),\n                                            for: .valueChanged)\n                return cell\n            case 1:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"NavigationTableViewCell\",\n                                                               for: indexPath) as? NavigationTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                return cell\n            default:\n                break\n            }\n        case 3:\n            switch indexPath.row {\n            case 0:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardManager.shared.resignOnTouchOutside\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self,\n                                            action: #selector(self.shouldResignOnTouchOutsideAction(_:)),\n                                            for: .valueChanged)\n                return cell\n            default:    break\n            }\n        case 4:\n            switch indexPath.row {\n            case 0:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardToolbarManager.shared.playInputClicks\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.shouldPlayInputClicksAction(_:)),\n                                            for: .valueChanged)\n                return cell\n            default:    break\n            }\n        case 5:\n            switch indexPath.row {\n            case 0:\n                guard let cell = tableView.dequeueReusableCell(withIdentifier: \"SwitchTableViewCell\",\n                                                               for: indexPath) as? SwitchTableViewCell else {\n                    fatalError(\"Can't dequeue cell\")\n                }\n\n                cell.switchEnable.isEnabled = true\n                cell.labelTitle.text = keyboardManagerProperties[indexPath.section][indexPath.row]\n                cell.labelSubtitle.text = keyboardManagerPropertyDetails[indexPath.section][indexPath.row]\n                cell.switchEnable.isOn = IQKeyboardManager.shared.isDebuggingEnabled\n                cell.switchEnable.removeTarget(nil, action: nil, for: .allEvents)\n                cell.switchEnable.addTarget(self, action: #selector(self.enableDebugging(_:)), for: .valueChanged)\n                return cell\n            default:    break\n            }\n        default:    break\n        }\n\n        return UITableViewCell()\n    }\n    // swiftlint:enable cyclomatic_complexity\n    // swiftlint:enable function_body_length\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/SettingsViewController.swift",
    "content": "//\n//  SettingsViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardToolbar\nimport IQKeyboardToolbarManager\n\nclass SettingsViewController: UITableViewController {\n\n    let sectionTitles = [\"UIKeyboard handling\",\n    \"IQToolbar handling\",\n    \"UIKeyboard appearance overriding\",\n    \"Resign first responder handling\",\n    \"UISound handling\",\n    \"IQKeyboardManager Debug\"]\n\n    let keyboardManagerProperties = [\n        [\"Enable\",\n         \"Keyboard Distance From TextField\",\n         \"Layout If Needed on Update\"],\n        [\"Enable AutoToolbar\",\n         \"Toolbar Manage Behaviour\",\n         \"Should Toolbar Uses TextField TintColor\",\n         \"Should Show TextField Placeholder\",\n         \"Placeholder Font\",\n         \"Toolbar Tint Color\",\n         \"Toolbar Done BarButtonItem Image\",\n         \"Toolbar Done Button Text\"],\n        [\"Override Keyboard Appearance\",\n         \"UIKeyboard Appearance\"],\n        [\"Should Resign On Touch Outside\"],\n        [\"Should Play Input Clicks\"],\n        [\"Debugging logs in Console\"]\n    ]\n\n    let keyboardManagerPropertyDetails = [\n        [\"Enable/Disable IQKeyboardManager\",\n         \"Set keyboard distance from textField\",\n         \"Layout the whole view on change\"],\n        [\"Automatic add the IQToolbar on UIKeyboard\",\n         \"AutoToolbar previous/next button managing behaviour\",\n         \"Uses textField's tintColor property for IQToolbar\",\n         \"Add the textField's placeholder text on IQToolbar\",\n         \"UIFont for IQToolbar placeholder text\",\n         \"Override toolbar tintColor property\",\n         \"Replace toolbar done button text with provided image\",\n         \"Override toolbar done button text\"],\n        [\"Override the keyboardAppearance for all UITextField/UITextView\",\n         \"All the UITextField keyboardAppearance is set using this property\"],\n        [\"Resigns Keyboard on touching outside of UITextField/View\"],\n        [\"Plays inputClick sound on next/previous/done click\"],\n        [\"Setting enableDebugging to YES/No to turn on/off debugging mode\"]\n    ]\n\n    var selectedIndexPathForOptions: IndexPath?\n\n    @IBAction func doneAction(_ sender: UIBarButtonItem) {\n        self.dismiss(animated: true, completion: nil)\n    }\n\n    /**  UIKeyboard Handling    */\n    @objc func enableAction(_ sender: UISwitch) {\n\n        IQKeyboardManager.shared.isEnabled = sender.isOn\n\n        self.tableView.reloadSections(IndexSet(integer: 0), with: .fade)\n    }\n\n    @objc func keyboardDistanceFromTextFieldAction(_ sender: UIStepper) {\n\n        IQKeyboardManager.shared.keyboardDistance = CGFloat(sender.value)\n\n        self.tableView.reloadRows(at: [IndexPath(row: 1, section: 0)], with: .none)\n    }\n\n    @objc func layoutIfNeededOnUpdateAction(_ sender: UISwitch) {\n\n        IQKeyboardManager.shared.layoutIfNeededOnUpdate = sender.isOn\n\n        self.tableView.reloadRows(at: [IndexPath(row: 2, section: 0)], with: .none)\n    }\n\n    /**  IQToolbar handling     */\n    @objc func enableAutoToolbarAction(_ sender: UISwitch) {\n\n        IQKeyboardToolbarManager.shared.isEnabled  = sender.isOn\n\n        self.tableView.reloadSections(IndexSet(integer: 1), with: .fade)\n    }\n\n    @objc func shouldToolbarUsesTextFieldTintColorAction(_ sender: UISwitch) {\n\n        IQKeyboardToolbarManager.shared.toolbarConfiguration.useTextInputViewTintColor = sender.isOn\n    }\n\n    @objc func shouldShowToolbarPlaceholder(_ sender: UISwitch) {\n\n        IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.showPlaceholder = sender.isOn\n\n        self.tableView.reloadSections(IndexSet(integer: 1), with: .fade)\n    }\n\n    @objc func toolbarDoneBarButtonItemImage(_ sender: UISwitch) {\n\n        if sender.isOn {\n            let config = IQBarButtonItemConfiguration(image: UIImage(named: \"IQButtonBarArrowDown\")!)\n            IQKeyboardToolbarManager.shared.toolbarConfiguration.doneBarButtonConfiguration = config\n        } else {\n            IQKeyboardToolbarManager.shared.toolbarConfiguration.doneBarButtonConfiguration = nil\n        }\n\n        self.tableView.reloadSections(IndexSet(integer: 1), with: .fade)\n    }\n\n    /**  \"Keyboard appearance overriding    */\n    @objc func overrideKeyboardAppearanceAction(_ sender: UISwitch) {\n\n        IQKeyboardManager.shared.keyboardConfiguration.overrideAppearance = sender.isOn\n\n        self.tableView.reloadSections(IndexSet(integer: 2), with: .fade)\n    }\n\n    /**  Resign first responder handling    */\n    @objc func shouldResignOnTouchOutsideAction(_ sender: UISwitch) {\n\n        IQKeyboardManager.shared.resignOnTouchOutside = sender.isOn\n    }\n\n    /**  Sound handling         */\n    @objc func shouldPlayInputClicksAction(_ sender: UISwitch) {\n\n        IQKeyboardToolbarManager.shared.playInputClicks = sender.isOn\n    }\n\n    /**  Debugging         */\n    @objc func enableDebugging(_ sender: UISwitch) {\n\n        IQKeyboardManager.shared.isDebuggingEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.isDebuggingEnabled = sender.isOn\n    }\n\n    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {\n\n        guard let identifier = segue.identifier else {\n            return\n        }\n\n        if identifier.elementsEqual(\"OptionsViewController\"),\n            let controller = segue.destination as? OptionsViewController,\n           let cell = sender as? UITableViewCell {\n\n            controller.delegate = self\n\n            selectedIndexPathForOptions = self.tableView.indexPath(for: cell)\n\n            guard let selectedIndexPath = selectedIndexPathForOptions else {\n                return\n            }\n\n            if selectedIndexPath.section == 1 && selectedIndexPath.row == 1 {\n\n                controller.title = \"Toolbar Manage Behaviour\"\n                controller.options = [\"IQAutoToolbar By Subviews\", \"IQAutoToolbar By Tag\", \"IQAutoToolbar By Position\"]\n                controller.selectedIndex = IQKeyboardToolbarManager.shared.toolbarConfiguration.manageBehavior.hashValue\n\n            } else if selectedIndexPath.section == 1 && selectedIndexPath.row == 4 {\n\n                controller.title = \"Fonts\"\n                controller.options = [\"Bold System Font\", \"Italic system font\", \"Regular\"]\n                controller.selectedIndex = IQKeyboardToolbarManager.shared.toolbarConfiguration.manageBehavior.hashValue\n\n                let fonts = [UIFont.boldSystemFont(ofSize: 12),\n                             UIFont.italicSystemFont(ofSize: 12),\n                             UIFont.systemFont(ofSize: 12)]\n\n                if let placeholderFont = IQKeyboardToolbarManager.shared\n                    .toolbarConfiguration.placeholderConfiguration.font {\n\n                    if let index = fonts.firstIndex(of: placeholderFont) {\n\n                        controller.selectedIndex = index\n                    }\n                }\n\n            } else if selectedIndexPath.section == 2 && selectedIndexPath.row == 1 {\n\n                controller.title = \"Keyboard Appearance\"\n                controller.options = [\"UIKeyboardAppearance Default\",\n                                      \"UIKeyboardAppearance Dark\",\n                                      \"UIKeyboardAppearance Light\"]\n                controller.selectedIndex = IQKeyboardManager.shared.keyboardConfiguration.appearance.hashValue\n            }\n        }\n    }\n}\n\n@available(iOS 14.0, *)\nextension SettingsViewController: UIColorPickerViewControllerDelegate {\n    func colorPickerViewControllerDidFinish(_ viewController: UIColorPickerViewController) {\n        viewController.dismiss(animated: true)\n    }\n\n    func colorPickerViewControllerDidSelectColor(_ viewController: UIColorPickerViewController) {\n        viewController.dismiss(animated: true)\n        let color = viewController.selectedColor\n        if color.isEqual(UIColor.clear) {\n            IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor = nil\n        } else {\n            IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor = color\n        }\n        self.tableView.reloadData()\n    }\n\n    func colorPickerViewController(_ viewController: UIColorPickerViewController,\n                                   didSelect color: UIColor, continuously: Bool) {\n        viewController.dismiss(animated: true)\n        if color.isEqual(UIColor.clear) {\n            IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor = nil\n        } else {\n            IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor = color\n        }\n        self.tableView.reloadData()\n    }\n}\n\nextension SettingsViewController: UITextFieldDelegate {\n\n    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {\n        tableView.deselectRow(at: indexPath, animated: true)\n        if indexPath.section == 1 && indexPath.row == 5 {\n            if #available(iOS 14.0, *) {\n                let colorPicker = UIColorPickerViewController()\n                colorPicker.title = \"Toolbar Tint Color\"\n                colorPicker.supportsAlpha = false\n                colorPicker.delegate = self\n                colorPicker.modalPresentationStyle = .popover\n                colorPicker.popoverPresentationController?.sourceView = tableView.cellForRow(at: indexPath)\n                self.present(colorPicker, animated: true)\n            }\n        }\n    }\n\n    func textFieldDidEndEditing(_ textField: UITextField) {\n\n        if textField.tag == 17 {\n            if let title = textField.text, !title.isEmpty {\n                let config = IQBarButtonItemConfiguration(title: title)\n                IQKeyboardToolbarManager.shared.toolbarConfiguration.doneBarButtonConfiguration = config\n            } else {\n                IQKeyboardToolbarManager.shared.toolbarConfiguration.doneBarButtonConfiguration = nil\n            }\n        }\n    }\n}\n\nextension SettingsViewController: OptionsViewControllerDelegate {\n    nonisolated func optionsViewController(_ controller: OptionsViewController, index: NSInteger) {\n\n        DispatchQueue.main.async {\n\n            guard let selectedIndexPath = self.selectedIndexPathForOptions else {\n                return\n            }\n\n            if selectedIndexPath.section == 1 && selectedIndexPath.row == 1 {\n                let value = IQKeyboardToolbarManageBehavior(rawValue: index)!\n                IQKeyboardToolbarManager.shared.toolbarConfiguration.manageBehavior = value\n            } else if selectedIndexPath.section == 1 && selectedIndexPath.row == 4 {\n\n                let fonts = [UIFont.boldSystemFont(ofSize: 12),\n                             UIFont.italicSystemFont(ofSize: 12),\n                             UIFont.systemFont(ofSize: 12)]\n                IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.font = fonts[index]\n            } else if selectedIndexPath.section == 2 && selectedIndexPath.row == 1 {\n\n                IQKeyboardManager.shared.keyboardConfiguration.appearance = UIKeyboardAppearance(rawValue: index)!\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/SpecialCaseViewController.swift",
    "content": "//\n//  SpecialCaseViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardToolbarManager\n\nclass SpecialCaseViewController: BaseViewController, UISearchBarDelegate, UITextFieldDelegate, UITextViewDelegate {\n\n    @IBOutlet var customWorkTextField: UITextField!\n\n    @IBOutlet var textField6: UITextField!\n    @IBOutlet var textField7: UITextField!\n    @IBOutlet var textField8: UITextField!\n\n    @IBOutlet var switchInteraction1: UISwitch!\n    @IBOutlet var switchInteraction2: UISwitch!\n    @IBOutlet var switchInteraction3: UISwitch!\n    @IBOutlet var switchEnabled1: UISwitch!\n    @IBOutlet var switchEnabled2: UISwitch!\n    @IBOutlet var switchEnabled3: UISwitch!\n\n    deinit {\n        customWorkTextField = nil\n        textField6 = nil\n        textField7 = nil\n        textField8 = nil\n    }\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        textField6.isUserInteractionEnabled = switchInteraction1.isOn\n        textField7.isUserInteractionEnabled = switchInteraction2.isOn\n        textField8.isUserInteractionEnabled = switchInteraction3.isOn\n\n        textField6.isEnabled = switchEnabled1.isOn\n        textField7.isEnabled = switchEnabled2.isOn\n        textField8.isEnabled = switchEnabled3.isOn\n\n        updateUI()\n    }\n\n    @IBAction func showAlertClicked(_ barButton: UIBarButtonItem!) {\n        let message = \"It doesn't affect UIAlertController (Doesn't add IQToolbar on it's textField\"\n        let alertController = UIAlertController(title: \"IQKeyboardManager\",\n                                                message: message,\n                                                preferredStyle: .alert)\n        alertController.addAction(UIAlertAction(title: \"OK\", style: .cancel, handler: nil))\n\n        alertController.addTextField(configurationHandler: { (textField: UITextField) in\n            textField.placeholder = \"Username\"\n        })\n\n        alertController.addTextField(configurationHandler: { (textField: UITextField) in\n            textField.placeholder = \"Password\"\n            textField.isSecureTextEntry = true\n        })\n\n        self.present(alertController, animated: true, completion: nil)\n    }\n\n    func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {\n        searchBar.setShowsCancelButton(true, animated: true)\n    }\n\n    func searchBarTextDidEndEditing(_ searchBar: UISearchBar) {\n        searchBar.setShowsCancelButton(false, animated: true)\n    }\n\n    func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {\n        searchBar.resignFirstResponder()\n    }\n\n    func updateUI() {\n        textField6.placeholder = (textField6.isEnabled ? \"enabled\" : \"\" ) + \",\" +\n        (textField6.isUserInteractionEnabled ? \"userInteractionEnabled\" : \"\" )\n        textField7.placeholder = (textField7.isEnabled ? \"enabled\" : \"\" ) + \",\" +\n        (textField7.isUserInteractionEnabled ? \"userInteractionEnabled\" : \"\" )\n        textField8.placeholder = (textField8.isEnabled ? \"enabled\" : \"\" ) + \",\" +\n        (textField8.isUserInteractionEnabled ? \"userInteractionEnabled\" : \"\" )\n    }\n\n    @IBAction func switch1UserInteractionAction(_ sender: UISwitch) {\n        textField6.isUserInteractionEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.reloadInputViews()\n        updateUI()\n    }\n\n    @IBAction func switch2UserInteractionAction(_ sender: UISwitch) {\n        textField7.isUserInteractionEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.reloadInputViews()\n        updateUI()\n    }\n\n    @IBAction func switch3UserInteractionAction(_ sender: UISwitch) {\n        textField8.isUserInteractionEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.reloadInputViews()\n        updateUI()\n    }\n\n    @IBAction func switch1Action(_ sender: UISwitch) {\n        textField6.isEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.reloadInputViews()\n        updateUI()\n    }\n\n    @IBAction func switch2Action(_ sender: UISwitch) {\n        textField7.isEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.reloadInputViews()\n        updateUI()\n    }\n\n    @IBAction func switch3Action(_ sender: UISwitch) {\n        textField8.isEnabled = sender.isOn\n        IQKeyboardToolbarManager.shared.reloadInputViews()\n        updateUI()\n    }\n\n    func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {\n\n        if textField == customWorkTextField {\n            let alertController = UIAlertController(title: \"IQKeyboardManager\",\n                                                    message: \"Do your custom work here\",\n                                                    preferredStyle: .alert)\n            alertController.addAction(UIAlertAction(title: \"OK\", style: .cancel, handler: nil))\n\n            self.present(alertController, animated: true, completion: nil)\n\n            return false\n        } else {\n            return true\n        }\n    }\n\n    func textFieldDidBeginEditing(_ textField: UITextField) {\n    }\n\n    func textFieldDidEndEditing(_ textField: UITextField) {\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/StackViewController.swift",
    "content": "//\n//  StackViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass StackViewController: BaseViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TableViewContainerViewController.swift",
    "content": "//\n//  TableViewContainerViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TableViewContainerViewController: BaseViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TableViewController.swift",
    "content": "//\n//  TableViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TableViewController: BaseTableViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TableViewInContainerViewController.swift",
    "content": "//\n//  TableViewInContainerViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nfinal class HeaderFooterView: UITableViewHeaderFooterView {\n    let textField: UITextField\n\n    override init(reuseIdentifier: String?) {\n        textField = UITextField(frame: CGRect(x: 15.0, y: 10.0, width: UIScreen.main.bounds.width - 30, height: 30.0))\n        super.init(reuseIdentifier: reuseIdentifier)\n        self.contentView.addSubview(textField)\n    }\n\n    required init?(coder: NSCoder) {\n        fatalError(\"init(coder:) has not been implemented\")\n    }\n}\n\nclass TableViewInContainerViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {\n\n    @IBOutlet private var tableView: UITableView!\n\n    func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {\n        return 50\n    }\n\n    func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {\n        return 50\n    }\n\n    func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {\n        let view: HeaderFooterView = tableView.dequeueHeaderFooter(HeaderFooterView.self)\n        view.textField.placeholder = \"\\(section) Section Header\"\n\n        return view\n    }\n\n    func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {\n        let view: HeaderFooterView = tableView.dequeueHeaderFooter(HeaderFooterView.self)\n\n        view.textField.placeholder = \"\\(section) Section Footer\"\n\n        return view\n    }\n\n    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n        return 5\n    }\n\n    func numberOfSections(in tableView: UITableView) -> Int {\n        return 5\n    }\n\n    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n\n        let identifier = \"TestCell\"\n\n        var cell = tableView.dequeueReusableCell(withIdentifier: identifier)\n\n        if cell == nil {\n\n            cell = UITableViewCell(style: .default, reuseIdentifier: identifier)\n            cell?.backgroundColor = UIColor.clear\n\n            let contentView: UIView! = cell?.contentView\n\n            let textField = UITextField(frame: CGRect(x: 10, y: 0, width: contentView.frame.size.width-20, height: 33))\n            textField.autoresizingMask = [.flexibleBottomMargin, .flexibleTopMargin, .flexibleWidth]\n            textField.center = contentView.center\n            textField.backgroundColor = UIColor.clear\n            textField.borderStyle = .roundedRect\n            textField.tag = 123\n            cell?.contentView.addSubview(textField)\n        }\n\n        let textField = cell?.viewWithTag(123) as? UITextField\n        textField?.placeholder = \"Cell \\(indexPath.section), \\(indexPath.row)\"\n\n        return cell!\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TestViewController.swift",
    "content": "//\n//  TestViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TestViewController: BaseViewController {\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TextFieldHostingViewController.swift",
    "content": "//\n//  TextFieldHostingViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport SwiftUI\n\n@available(iOS 15.0, *)\nclass TextFieldHostingViewController: UIHostingController<TextFieldView> {\n\n    required init?(coder: NSCoder) {\n         super.init(coder: coder, rootView: TextFieldView())\n     }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TextFieldView.swift",
    "content": "//\n//  TextFieldView.swift\n//  DemoSwift\n//\n//  Created by Iftekhar on 11/6/23.\n//  Copyright © 2023 Iftekhar. All rights reserved.\n//\n\nimport SwiftUI\n\n@available(iOS 15.0, *)\nstruct TextFieldView: View {\n\n    @State private var text1 = \"\"\n    @State private var text2 = \"\"\n    @State private var text3 = \"\"\n    @State private var text4 = \"\"\n    @State private var text5 = \"\"\n    @State private var text6 = \"\"\n    @State private var text7 = \"\"\n    @State private var text8 = \"\"\n    @State private var text9 = \"\"\n    @State private var text10 = \"\"\n\n    var body: some View {\n        VStack(spacing: 40) {\n            TextField(\"Text Field 1\", text: $text1)\n                .background(Color.white)\n            TextField(\"Text Field 2\", text: $text2)\n                .background(Color.white)\n            TextField(\"Text Field 3\", text: $text3)\n                .background(Color.white)\n            TextField(\"Text Field 4\", text: $text4)\n                .background(Color.white)\n            TextField(\"Text Field 5\", text: $text5)\n                .background(Color.white)\n//                .toolbar {\n//                    ToolbarItemGroup(placement: .keyboard) {\n//                        Button(\"Click me 5!\") {\n//                            print(\"Clicked 5\")\n//                        }\n//                    }\n//                }\n            TextField(\"Text Field 6\", text: $text6)\n                .background(Color.white)\n            TextField(\"Text Field 7\", text: $text7)\n                .background(Color.white)\n            TextField(\"Text Field 8\", text: $text8)\n                .background(Color.white)\n            TextField(\"Text Field 9\", text: $text9)\n                .background(Color.white)\n            TextField(\"Text Field 10\", text: $text10)\n                .background(Color.white)\n        }\n        .padding()\n        .background(Color.yellow)\n        .navigationTitle(\"SwiftUI\")\n//        .toolbar {\n//            ToolbarItemGroup(placement: .keyboard) {\n//                Button(\"Click me! All\") {\n//                    print(\"Clicked all\")\n//                }\n//            }\n//        }\n    }\n}\n\n@available(iOS 15.0, *)\nstruct TextFieldView_Previews: PreviewProvider {\n    static var previews: some View {\n        TextFieldView()\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TextFieldViewController.swift",
    "content": "//\n//  TextFieldViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQDropDownTextFieldSwift\nimport IQKeyboardNotification\nimport IQTextView\n\nclass TextFieldViewController: BaseViewController {\n\n    @IBOutlet var textField3: UITextField!\n    @IBOutlet var textView1: IQTextView!\n    @IBOutlet var textView2: UITextView!\n    @IBOutlet var textView3: UITextView!\n\n    let keyboardListener = IQKeyboardNotification()\n\n    @IBOutlet var dropDownTextField: IQDropDownTextField!\n\n    @objc func previousAction(_ sender: UITextField) {\n        print(\"PreviousAction\")\n    }\n\n    @objc func nextAction(_ sender: UITextField) {\n        print(\"nextAction\")\n    }\n\n    @objc func doneAction(_ sender: UITextField) {\n        print(\"doneAction\")\n    }\n\n    deinit {\n        textView1 = nil\n        textField3 = nil\n        dropDownTextField = nil\n    }\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        textView1.delegate = self\n        textView2.iq.enableMode = .disabled\n\n#if swift(>=5.7)\n        if #available(iOS 16.0, *) {\n            textView3.isFindInteractionEnabled = true\n        }\n#endif\n\n        // textView1.attributedPlaceholder = NSAttributedString(string: \"Attributed string from code is supported too\",\n        //                                                      attributes: [.foregroundColor: UIColor.red])\n\n        textField3.iq.toolbar.previousBarButton.setTarget(self, action: #selector(self.previousAction(_:)))\n        textField3.iq.toolbar.nextBarButton.setTarget(self, action: #selector(self.nextAction(_:)))\n        textField3.iq.toolbar.doneBarButton.setTarget(self, action: #selector(self.doneAction(_:)))\n        dropDownTextField.iq.distanceFromKeyboard = 150\n\n        let clearButton = UIBarButtonItem(title: \"Clear\", style: .plain, target: self, action: #selector(clearAction))\n        textField3.iq.toolbar.additionalTrailingItems = [clearButton]\n\n        var itemLists = [String]()\n        itemLists.append(\"Zero Line Of Code\")\n        itemLists.append(\"No More UIScrollView\")\n        itemLists.append(\"No More Subclasses\")\n        itemLists.append(\"No More Manual Work\")\n        itemLists.append(\"No More #imports\")\n        itemLists.append(\"Device Orientation support\")\n        itemLists.append(\"UITextField Category for Keyboard\")\n        itemLists.append(\"Enable/Desable Keyboard Manager\")\n        itemLists.append(\"Customize InputView support\")\n        itemLists.append(\"IQTextView for placeholder support\")\n        itemLists.append(\"Automanage keyboard toolbar\")\n        itemLists.append(\"Can set keyboard and textFiled distance\")\n        itemLists.append(\"Can resign on touching outside\")\n        itemLists.append(\"Auto adjust textView's height\")\n        itemLists.append(\"Adopt tintColor from textField\")\n        itemLists.append(\"Customize keyboardAppearance\")\n        itemLists.append(\"Play sound on next/prev/done\")\n\n        dropDownTextField.itemList = itemLists\n    }\n\n    @objc private func clearAction() {\n        textField3.text = \"\"\n    }\n\n    override func viewWillAppear(_ animated: Bool) {\n        super.viewWillAppear(animated)\n\n        keyboardListener.subscribe(identifier: \"TextFieldViewController\") { _, _ in\n//            print(size)\n        }\n    }\n\n    override func viewWillDisappear(_ animated: Bool) {\n        super.viewWillDisappear(animated)\n        keyboardListener.unsubscribe(identifier: \"TextFieldViewController\")\n    }\n}\n\nextension TextFieldViewController: UITextViewDelegate {\n\n    func textViewDidBeginEditing(_ textView: UITextView) {\n        print(\"textViewDidBeginEditing\")\n    }\n}\n\nextension TextFieldViewController: UITextFieldDelegate {\n    func textFieldDidEndEditing(_ textField: UITextField) {\n        print(\"textFieldDidEndEditing\")\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TextSelectionViewController.swift",
    "content": "//\n//  TextSelectionViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TextSelectionViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {\n\n    @IBOutlet var tableView: UITableView!\n\n    private let data = [\"Hello\", \"This is a demo code\", \"Issue #56\", \"With mutiple cells\", \"And some useless text.\",\n    \"Hello\", \"This is a demo code\", \"Issue #56\", \"With mutiple cells\", \"And some useless text.\",\n    \"Hello\", \"This is a demo code\", \"Issue #56\", \"With mutiple cells\", \"And some useless text.\"]\n\n    func tableView(_ tableView: UITableView, heightForRowAt heightForRowAtIndexPath: IndexPath) -> CGFloat {\n        return tableView.rowHeight\n    }\n\n    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n        return data.count\n    }\n\n    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n\n        let identifier = \"\\(indexPath.section) \\(indexPath.row)\"\n\n        var cell = tableView.dequeueReusableCell(withIdentifier: identifier)\n\n        if cell == nil {\n\n            cell = UITableViewCell(style: .default, reuseIdentifier: identifier)\n            cell?.selectionStyle = .none\n            cell?.backgroundColor = UIColor.clear\n\n            let textView = UITextView(frame: CGRect(x: 5, y: 7, width: 135, height: 30))\n            textView.autoresizingMask = [.flexibleHeight, .flexibleWidth]\n            textView.backgroundColor = UIColor.clear\n            textView.text = data[indexPath.row]\n            textView.dataDetectorTypes = UIDataDetectorTypes.all\n            textView.isScrollEnabled = false\n            textView.isEditable = false\n            cell?.contentView.addSubview(textView)\n        }\n\n        return cell!\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TextViewController.swift",
    "content": "//\n//  TextViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TextViewController: BaseViewController {\n\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/TextViewSpecialCaseViewController.swift",
    "content": "//\n//  TextViewSpecialCaseViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\nclass TextViewSpecialCaseViewController: BaseViewController, UITextViewDelegate {\n\n    func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {\n\n        if text == \"\\n\" {\n            textView.resignFirstResponder()\n        }\n\n        return true\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/ViewController.swift",
    "content": "//\n//  ViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardManagerSwift\nimport IQKeyboardToolbarManager\n\nclass ViewController: BaseTableViewController {\n\n    @IBAction func shareClicked(_ sender: UIBarButtonItem) {\n\n        let shareString: String = \"IQKeyboardManager is really great for iOS developer to manage keyboard-textField.\"\n//        let shareImage: UIImage = UIImage(named: \"IQKeyboardManagerScreenshot\")!\n        let youtubeUrl: URL = URL(string: \"http://youtu.be/6nhLw6hju2A\")!\n\n        var activityItems = [Any]()\n        activityItems.append(shareString)\n//        activityItems.append(shareImage)\n        activityItems.append(youtubeUrl)\n\n        let controller = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)\n        controller.excludedActivityTypes = [.print, .copyToPasteboard, .assignToContact, .saveToCameraRoll]\n        present(controller, animated: true)\n    }\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        IQKeyboardToolbarManager.shared.toolbarConfiguration.manageBehavior = .byPosition\n        // Do any additional setup after loading the view, typically from a nib.\n    }\n\n    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {\n        tableView.deselectRow(at: indexPath, animated: true)\n    }\n\n    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {\n\n        guard let identifier = segue.identifier else {\n            return\n        }\n\n        if identifier == \"PopoverViewController\" {\n            let controller = segue.destination\n\n            controller.modalPresentationStyle = .popover\n\n            controller.popoverPresentationController?.barButtonItem = sender as? UIBarButtonItem\n            controller.popoverPresentationController?.sourceView = sender as? UIView\n\n            let heightWidth = max(UIScreen.main.bounds.width, UIScreen.main.bounds.height)\n            controller.preferredContentSize = CGSize(width: heightWidth, height: heightWidth)\n            controller.popoverPresentationController?.delegate = self\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample/ViewController/WebViewController.swift",
    "content": "//\n//  WebViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport WebKit\n\nclass WebViewController: BaseViewController {\n\n    let activity = UIActivityIndicatorView(style: .medium)\n\n    var webView: WKWebView!\n    @IBOutlet var webContainerView: UIView!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        let configuration = WKWebViewConfiguration()\n\n        self.webView = WKWebView(frame: webContainerView.bounds, configuration: configuration)\n        self.webView.uiDelegate = self\n        self.webView.navigationDelegate = self\n        self.webView.autoresizingMask = [.flexibleWidth, .flexibleHeight]\n        self.webContainerView.addSubview(self.webView)\n\n        let request: URLRequest = URLRequest(url: URL(string: \"http://www.google.com\")!,\n                                             cachePolicy: .useProtocolCachePolicy,\n                                             timeoutInterval: 60)\n        self.webView.load(request)\n\n        self.navigationItem.rightBarButtonItem = UIBarButtonItem(customView: activity)\n    }\n}\n\nextension WebViewController: WKUIDelegate, WKNavigationDelegate {\n\n    nonisolated func webView(_ webView: WKWebView, didCommit navigation: WKNavigation!) {\n        DispatchQueue.main.async {\n            self.activity.startAnimating()\n        }\n    }\n\n    nonisolated func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {\n        DispatchQueue.main.async {\n            self.activity.stopAnimating()\n        }\n    }\n\n    nonisolated func webView(_ webView: WKWebView, didFail navigation: WKNavigation!, withError error: Error) {\n        DispatchQueue.main.async {\n            self.activity.stopAnimating()\n        }\n    }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t03ADCF0447958F5BE7A48B6B /* Pods_IQKeyboardManagerSwiftExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AC7BF348A3EBFE4CD9EA9BD /* Pods_IQKeyboardManagerSwiftExample.framework */; };\n\t\t4CF58EAD1D36BD910081FB08 /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D9A0FC218C9DB5700585D3F /* Social.framework */; };\n\t\t56FCBF7A24C36678007B0332 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 56FCBF7824C36672007B0332 /* WebKit.framework */; };\n\t\t56FCBF7B24C36686007B0332 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0B63BA31781FAB1008D3B64 /* CoreGraphics.framework */; };\n\t\t56FCBF7C24C3668A007B0332 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0B63BA11781FAB1008D3B64 /* Foundation.framework */; };\n\t\t56FCBF7D24C3668E007B0332 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0B63B9F1781FAB1008D3B64 /* UIKit.framework */; };\n\t\tC0121F292E94000A002DBAF2 /* General.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EEF2E94000A002DBAF2 /* General.storyboard */; };\n\t\tC0121F2A2E94000A002DBAF2 /* TestCases.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121F002E94000A002DBAF2 /* TestCases.storyboard */; };\n\t\tC0121F2B2E94000A002DBAF2 /* Settings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EFB2E94000A002DBAF2 /* Settings.storyboard */; };\n\t\tC0121F2C2E94000A002DBAF2 /* Launch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EF22E94000A002DBAF2 /* Launch.storyboard */; };\n\t\tC0121F2D2E94000A002DBAF2 /* ScrollView.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EF82E94000A002DBAF2 /* ScrollView.storyboard */; };\n\t\tC0121F2E2E94000A002DBAF2 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C0121EE72E94000A002DBAF2 /* InfoPlist.strings */; };\n\t\tC0121F302E94000A002DBAF2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EF52E94000A002DBAF2 /* Main.storyboard */; };\n\t\tC0121F312E94000A002DBAF2 /* SpecialCase.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EFE2E94000A002DBAF2 /* SpecialCase.storyboard */; };\n\t\tC0121F322E94000A002DBAF2 /* FullScreenControllers.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121EEC2E94000A002DBAF2 /* FullScreenControllers.storyboard */; };\n\t\tC0121F332E94000A002DBAF2 /* NonScrollTextView1979ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F0D2E94000A002DBAF2 /* NonScrollTextView1979ViewController.swift */; };\n\t\tC0121F342E94000A002DBAF2 /* SettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F162E94000A002DBAF2 /* SettingsViewController.swift */; };\n\t\tC0121F352E94000A002DBAF2 /* TableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F1B2E94000A002DBAF2 /* TableViewController.swift */; };\n\t\tC0121F362E94000A002DBAF2 /* PageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F0F2E94000A002DBAF2 /* PageViewController.swift */; };\n\t\tC0121F372E94000A002DBAF2 /* BaseTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F032E94000A002DBAF2 /* BaseTableViewController.swift */; };\n\t\tC0121F382E94000A002DBAF2 /* TextFieldView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F1F2E94000A002DBAF2 /* TextFieldView.swift */; };\n\t\tC0121F392E94000A002DBAF2 /* NavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F0C2E94000A002DBAF2 /* NavigationController.swift */; };\n\t\tC0121F3A2E94000A002DBAF2 /* NavigationBarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F0B2E94000A002DBAF2 /* NavigationBarViewController.swift */; };\n\t\tC0121F3B2E94000A002DBAF2 /* ReloadLayout1892ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F122E94000A002DBAF2 /* ReloadLayout1892ViewController.swift */; };\n\t\tC0121F3C2E94000A002DBAF2 /* TextFieldHostingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F1E2E94000A002DBAF2 /* TextFieldHostingViewController.swift */; };\n\t\tC0121F3D2E94000A002DBAF2 /* EdgesForExtendedLayoutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F072E94000A002DBAF2 /* EdgesForExtendedLayoutViewController.swift */; };\n\t\tC0121F3E2E94000A002DBAF2 /* StackViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F192E94000A002DBAF2 /* StackViewController.swift */; };\n\t\tC0121F3F2E94000A002DBAF2 /* TextSelectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F212E94000A002DBAF2 /* TextSelectionViewController.swift */; };\n\t\tC0121F402E94000A002DBAF2 /* TableViewInContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F1C2E94000A002DBAF2 /* TableViewInContainerViewController.swift */; };\n\t\tC0121F412E94000A002DBAF2 /* ScrollViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F142E94000A002DBAF2 /* ScrollViewController.swift */; };\n\t\tC0121F422E94000A002DBAF2 /* TextViewSpecialCaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F232E94000A002DBAF2 /* TextViewSpecialCaseViewController.swift */; };\n\t\tC0121F432E94000A002DBAF2 /* AutofillPasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F022E94000A002DBAF2 /* AutofillPasswordViewController.swift */; };\n\t\tC0121F442E94000A002DBAF2 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F242E94000A002DBAF2 /* ViewController.swift */; };\n\t\tC0121F452E94000A002DBAF2 /* ManualToolbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F0A2E94000A002DBAF2 /* ManualToolbarViewController.swift */; };\n\t\tC0121F462E94000A002DBAF2 /* SwitchTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EDF2E94000A002DBAF2 /* SwitchTableViewCell.swift */; };\n\t\tC0121F472E94000A002DBAF2 /* TestViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F1D2E94000A002DBAF2 /* TestViewController.swift */; };\n\t\tC0121F482E94000A002DBAF2 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F272E94000A002DBAF2 /* AppDelegate.swift */; };\n\t\tC0121F492E94000A002DBAF2 /* TextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F222E94000A002DBAF2 /* TextViewController.swift */; };\n\t\tC0121F4A2E94000A002DBAF2 /* ImageSwitchTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EDB2E94000A002DBAF2 /* ImageSwitchTableViewCell.swift */; };\n\t\tC0121F4B2E94000A002DBAF2 /* TextFieldTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EE02E94000A002DBAF2 /* TextFieldTableViewCell.swift */; };\n\t\tC0121F4C2E94000A002DBAF2 /* SpecialCaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F182E94000A002DBAF2 /* SpecialCaseViewController.swift */; };\n\t\tC0121F4D2E94000A002DBAF2 /* NavigationTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EDC2E94000A002DBAF2 /* NavigationTableViewCell.swift */; };\n\t\tC0121F4E2E94000A002DBAF2 /* UITableView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EE22E94000A002DBAF2 /* UITableView+Extension.swift */; };\n\t\tC0121F4F2E94000A002DBAF2 /* TableViewContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F1A2E94000A002DBAF2 /* TableViewContainerViewController.swift */; };\n\t\tC0121F502E94000A002DBAF2 /* SearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F152E94000A002DBAF2 /* SearchViewController.swift */; };\n\t\tC0121F512E94000A002DBAF2 /* OptionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EDD2E94000A002DBAF2 /* OptionTableViewCell.swift */; };\n\t\tC0121F522E94000A002DBAF2 /* CollectionViewDemoController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F052E94000A002DBAF2 /* CollectionViewDemoController.swift */; };\n\t\tC0121F532E94000A002DBAF2 /* TextFieldViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F202E94000A002DBAF2 /* TextFieldViewController.swift */; };\n\t\tC0121F542E94000A002DBAF2 /* OptionsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F0E2E94000A002DBAF2 /* OptionsViewController.swift */; };\n\t\tC0121F552E94000A002DBAF2 /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F042E94000A002DBAF2 /* BaseViewController.swift */; };\n\t\tC0121F562E94000A002DBAF2 /* ExampleTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F092E94000A002DBAF2 /* ExampleTableViewController.swift */; };\n\t\tC0121F572E94000A002DBAF2 /* WebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F252E94000A002DBAF2 /* WebViewController.swift */; };\n\t\tC0121F582E94000A002DBAF2 /* PopoverViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F102E94000A002DBAF2 /* PopoverViewController.swift */; };\n\t\tC0121F592E94000A002DBAF2 /* EnableMode2000ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F082E94000A002DBAF2 /* EnableMode2000ViewController.swift */; };\n\t\tC0121F5A2E94000A002DBAF2 /* CustomViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F062E94000A002DBAF2 /* CustomViewController.swift */; };\n\t\tC0121F5B2E94000A002DBAF2 /* RefreshLayoutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F112E94000A002DBAF2 /* RefreshLayoutViewController.swift */; };\n\t\tC0121F5C2E94000A002DBAF2 /* ColorTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EDA2E94000A002DBAF2 /* ColorTableViewCell.swift */; };\n\t\tC0121F5D2E94000A002DBAF2 /* SettingsViewController+TableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F172E94000A002DBAF2 /* SettingsViewController+TableView.swift */; };\n\t\tC0121F5E2E94000A002DBAF2 /* StepperTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121EDE2E94000A002DBAF2 /* StepperTableViewCell.swift */; };\n\t\tC0121F5F2E94000A002DBAF2 /* SafeAreaViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F132E94000A002DBAF2 /* SafeAreaViewController.swift */; };\n\t\tC0121F612E94003E002DBAF2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C0121F602E94003E002DBAF2 /* Images.xcassets */; };\n\t\tC0121F692E9400C4002DBAF2 /* ActionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F622E9400C4002DBAF2 /* ActionViewController.swift */; };\n\t\tC0121F6A2E9400C4002DBAF2 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0121F662E9400C4002DBAF2 /* MainInterface.storyboard */; };\n\t\tC0121F6B2E9400C4002DBAF2 /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C0121F672E9400C4002DBAF2 /* Media.xcassets */; };\n\t\tC0121F992E9400DF002DBAF2 /* UITableView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F812E9400DF002DBAF2 /* UITableView+IndexPaths.swift */; };\n\t\tC0121F9A2E9400DF002DBAF2 /* IQKeyboardAppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F6E2E9400DF002DBAF2 /* IQKeyboardAppearanceManager.swift */; };\n\t\tC0121F9B2E9400DF002DBAF2 /* IQRootControllerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F742E9400DF002DBAF2 /* IQRootControllerConfiguration.swift */; };\n\t\tC0121F9C2E9400DF002DBAF2 /* UIView+Parent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F822E9400DF002DBAF2 /* UIView+Parent.swift */; };\n\t\tC0121F9D2E9400DF002DBAF2 /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F712E9400DF002DBAF2 /* IQKeyboardManager+Appearance_Deprecated.swift */; };\n\t\tC0121F9E2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F8B2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManager.swift */; };\n\t\tC0121F9F2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F7D2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtension.swift */; };\n\t\tC0121FA02E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F7C2E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */; };\n\t\tC0121FA12E9400DF002DBAF2 /* IQKeyboardManager+ActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F872E9400DF002DBAF2 /* IQKeyboardManager+ActiveConfiguration.swift */; };\n\t\tC0121FA22E9400DF002DBAF2 /* IQKeyboardResignHandler+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F942E9400DF002DBAF2 /* IQKeyboardResignHandler+Internal.swift */; };\n\t\tC0121FA32E9400DF002DBAF2 /* IQKeyboardAppearanceManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F6F2E9400DF002DBAF2 /* IQKeyboardAppearanceManager+Internal.swift */; };\n\t\tC0121FA42E9400DF002DBAF2 /* UICollectionView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F802E9400DF002DBAF2 /* UICollectionView+IndexPaths.swift */; };\n\t\tC0121FA52E9400DF002DBAF2 /* UIView+ParentObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F832E9400DF002DBAF2 /* UIView+ParentObjc.swift */; };\n\t\tC0121FA62E9400DF002DBAF2 /* IQKeyboardManager+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F702E9400DF002DBAF2 /* IQKeyboardManager+Appearance.swift */; };\n\t\tC0121FA72E9400DF002DBAF2 /* IQScrollViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F752E9400DF002DBAF2 /* IQScrollViewConfiguration.swift */; };\n\t\tC0121FA82E9400DF002DBAF2 /* IQKeyboardAppearanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F6D2E9400DF002DBAF2 /* IQKeyboardAppearanceConfiguration.swift */; };\n\t\tC0121FA92E9400DF002DBAF2 /* UIView+ResignObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F8F2E9400DF002DBAF2 /* UIView+ResignObjc.swift */; };\n\t\tC0121FAA2E9400DF002DBAF2 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F882E9400DF002DBAF2 /* IQKeyboardManager+Internal.swift */; };\n\t\tC0121FAB2E9400DF002DBAF2 /* IQKeyboardResignHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F932E9400DF002DBAF2 /* IQKeyboardResignHandler.swift */; };\n\t\tC0121FAC2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F8C2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */; };\n\t\tC0121FAD2E9400DF002DBAF2 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F772E9400DF002DBAF2 /* IQKeyboardManager+Debug.swift */; };\n\t\tC0121FAE2E9400DF002DBAF2 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F862E9400DF002DBAF2 /* IQKeyboardManager.swift */; };\n\t\tC0121FAF2E9400DF002DBAF2 /* IQKeyboardManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F792E9400DF002DBAF2 /* IQKeyboardManager+Deprecated.swift */; };\n\t\tC0121FB02E9400DF002DBAF2 /* UIViewController+ParentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F842E9400DF002DBAF2 /* UIViewController+ParentContainer.swift */; };\n\t\tC0121FB12E9400DF002DBAF2 /* IQActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F732E9400DF002DBAF2 /* IQActiveConfiguration.swift */; };\n\t\tC0121FB22E9400DF002DBAF2 /* UIView+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F8E2E9400DF002DBAF2 /* UIView+Resign.swift */; };\n\t\tC0121FB32E9400DF002DBAF2 /* IQKeyboardManager+Resign_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F922E9400DF002DBAF2 /* IQKeyboardManager+Resign_Deprecated.swift */; };\n\t\tC0121FB42E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F7B2E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtension.swift */; };\n\t\tC0121FB52E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F7E2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtensionObjc.swift */; };\n\t\tC0121FB62E9400DF002DBAF2 /* IQKeyboardManager+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F912E9400DF002DBAF2 /* IQKeyboardManager+Resign.swift */; };\n\t\tC0121FB72E9400DF002DBAF2 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0121F892E9400DF002DBAF2 /* IQKeyboardManager+Position.swift */; };\n\t\tC0121FB82E9400DF002DBAF2 /* IQKeyboardManagerSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = C0121F962E9400DF002DBAF2 /* IQKeyboardManagerSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tC0121FB92E9400DF002DBAF2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C0121F972E9400DF002DBAF2 /* PrivacyInfo.xcprivacy */; };\n\t\tC0121FC12E9408E5002DBAF2 /* IQTextInputViewNotification.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FBA2E9408E5002DBAF2 /* IQTextInputViewNotification.xcframework */; };\n\t\tC0121FC22E9408E5002DBAF2 /* IQKeyboardCore.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FBB2E9408E5002DBAF2 /* IQKeyboardCore.xcframework */; };\n\t\tC0121FC32E9408E5002DBAF2 /* IQKeyboardToolbarManager.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FBC2E9408E5002DBAF2 /* IQKeyboardToolbarManager.xcframework */; };\n\t\tC0121FC42E9408E5002DBAF2 /* IQKeyboardReturnManager.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FBD2E9408E5002DBAF2 /* IQKeyboardReturnManager.xcframework */; };\n\t\tC0121FC52E9408E5002DBAF2 /* IQTextView.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FBE2E9408E5002DBAF2 /* IQTextView.xcframework */; };\n\t\tC0121FC62E9408E5002DBAF2 /* IQKeyboardNotification.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FBF2E9408E5002DBAF2 /* IQKeyboardNotification.xcframework */; };\n\t\tC0121FC72E9408E5002DBAF2 /* IQKeyboardToolbar.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0121FC02E9408E5002DBAF2 /* IQKeyboardToolbar.xcframework */; };\n\t\tC03C9479273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = C03C946D273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\tC03C9477273CF3FF00AF66B5 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = C0B63B921781FAB0008D3B64 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = C03C946C273CF3FF00AF66B5;\n\t\t\tremoteInfo = DemoExtension;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\tC03C947B273CF3FF00AF66B5 /* Embed Foundation Extensions */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = \"\";\n\t\t\tdstSubfolderSpec = 13;\n\t\t\tfiles = (\n\t\t\t\tC03C9479273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension.appex in Embed Foundation Extensions */,\n\t\t\t);\n\t\t\tname = \"Embed Foundation Extensions\";\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t35E6DD2330A3AF7B8F2DF86F /* Pods-IQKeyboardManagerSwiftExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-IQKeyboardManagerSwiftExample.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-IQKeyboardManagerSwiftExample/Pods-IQKeyboardManagerSwiftExample.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t55CF83944ADEC65E0AF10B2E /* Pods_DemoObjC.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DemoObjC.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t56FCBF7824C36672007B0332 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };\n\t\t7AC7BF348A3EBFE4CD9EA9BD /* Pods_IQKeyboardManagerSwiftExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_IQKeyboardManagerSwiftExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9D0BB82F18BB1AE100667349 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\t9D0BB83018BB1AE100667349 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };\n\t\t9D0BB83118BB1AE100667349 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };\n\t\t9D0BB84118BB1AE100667349 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };\n\t\t9D9A0FC218C9DB5700585D3F /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };\n\t\tC0121EDA2E94000A002DBAF2 /* ColorTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EDB2E94000A002DBAF2 /* ImageSwitchTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageSwitchTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EDC2E94000A002DBAF2 /* NavigationTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EDD2E94000A002DBAF2 /* OptionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OptionTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EDE2E94000A002DBAF2 /* StepperTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StepperTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EDF2E94000A002DBAF2 /* SwitchTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwitchTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EE02E94000A002DBAF2 /* TextFieldTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldTableViewCell.swift; sourceTree = \"<group>\"; };\n\t\tC0121EE22E94000A002DBAF2 /* UITableView+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UITableView+Extension.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121EE42E94000A002DBAF2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tC0121EE52E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\tC0121EE62E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\tC0121EE82E94000A002DBAF2 /* IQKeyboardManger-Swift-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"IQKeyboardManger-Swift-Bridging-Header.h\"; sourceTree = \"<group>\"; };\n\t\tC0121EEA2E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/FullScreenControllers.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EEB2E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/FullScreenControllers.strings; sourceTree = \"<group>\"; };\n\t\tC0121EED2E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/General.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EEE2E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/General.strings; sourceTree = \"<group>\"; };\n\t\tC0121EF02E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Launch.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EF12E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Launch.strings; sourceTree = \"<group>\"; };\n\t\tC0121EF32E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EF42E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Main.strings; sourceTree = \"<group>\"; };\n\t\tC0121EF62E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/ScrollView.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EF72E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/ScrollView.strings; sourceTree = \"<group>\"; };\n\t\tC0121EF92E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Settings.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EFA2E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Settings.strings; sourceTree = \"<group>\"; };\n\t\tC0121EFC2E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/SpecialCase.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121EFD2E94000A002DBAF2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/SpecialCase.strings; sourceTree = \"<group>\"; };\n\t\tC0121EFF2E94000A002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/TestCases.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121F022E94000A002DBAF2 /* AutofillPasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutofillPasswordViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F032E94000A002DBAF2 /* BaseTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTableViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F042E94000A002DBAF2 /* BaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F052E94000A002DBAF2 /* CollectionViewDemoController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CollectionViewDemoController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F062E94000A002DBAF2 /* CustomViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F072E94000A002DBAF2 /* EdgesForExtendedLayoutViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EdgesForExtendedLayoutViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F082E94000A002DBAF2 /* EnableMode2000ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EnableMode2000ViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F092E94000A002DBAF2 /* ExampleTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExampleTableViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F0A2E94000A002DBAF2 /* ManualToolbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ManualToolbarViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F0B2E94000A002DBAF2 /* NavigationBarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationBarViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F0C2E94000A002DBAF2 /* NavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F0D2E94000A002DBAF2 /* NonScrollTextView1979ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NonScrollTextView1979ViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F0E2E94000A002DBAF2 /* OptionsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OptionsViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F0F2E94000A002DBAF2 /* PageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PageViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F102E94000A002DBAF2 /* PopoverViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopoverViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F112E94000A002DBAF2 /* RefreshLayoutViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RefreshLayoutViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F122E94000A002DBAF2 /* ReloadLayout1892ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReloadLayout1892ViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F132E94000A002DBAF2 /* SafeAreaViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SafeAreaViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F142E94000A002DBAF2 /* ScrollViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScrollViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F152E94000A002DBAF2 /* SearchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F162E94000A002DBAF2 /* SettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F172E94000A002DBAF2 /* SettingsViewController+TableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"SettingsViewController+TableView.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F182E94000A002DBAF2 /* SpecialCaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialCaseViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F192E94000A002DBAF2 /* StackViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F1A2E94000A002DBAF2 /* TableViewContainerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TableViewContainerViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F1B2E94000A002DBAF2 /* TableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TableViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F1C2E94000A002DBAF2 /* TableViewInContainerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TableViewInContainerViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F1D2E94000A002DBAF2 /* TestViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F1E2E94000A002DBAF2 /* TextFieldHostingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldHostingViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F1F2E94000A002DBAF2 /* TextFieldView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldView.swift; sourceTree = \"<group>\"; };\n\t\tC0121F202E94000A002DBAF2 /* TextFieldViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F212E94000A002DBAF2 /* TextSelectionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextSelectionViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F222E94000A002DBAF2 /* TextViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F232E94000A002DBAF2 /* TextViewSpecialCaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextViewSpecialCaseViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F242E94000A002DBAF2 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F252E94000A002DBAF2 /* WebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F272E94000A002DBAF2 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\tC0121F602E94003E002DBAF2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\tC0121F622E9400C4002DBAF2 /* ActionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionViewController.swift; sourceTree = \"<group>\"; };\n\t\tC0121F642E9400C4002DBAF2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tC0121F652E9400C4002DBAF2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = \"<group>\"; };\n\t\tC0121F672E9400C4002DBAF2 /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = \"<group>\"; };\n\t\tC0121F6D2E9400DF002DBAF2 /* IQKeyboardAppearanceConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardAppearanceConfiguration.swift; sourceTree = \"<group>\"; };\n\t\tC0121F6E2E9400DF002DBAF2 /* IQKeyboardAppearanceManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardAppearanceManager.swift; sourceTree = \"<group>\"; };\n\t\tC0121F6F2E9400DF002DBAF2 /* IQKeyboardAppearanceManager+Internal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardAppearanceManager+Internal.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F702E9400DF002DBAF2 /* IQKeyboardManager+Appearance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Appearance.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F712E9400DF002DBAF2 /* IQKeyboardManager+Appearance_Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Appearance_Deprecated.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F732E9400DF002DBAF2 /* IQActiveConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQActiveConfiguration.swift; sourceTree = \"<group>\"; };\n\t\tC0121F742E9400DF002DBAF2 /* IQRootControllerConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQRootControllerConfiguration.swift; sourceTree = \"<group>\"; };\n\t\tC0121F752E9400DF002DBAF2 /* IQScrollViewConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQScrollViewConfiguration.swift; sourceTree = \"<group>\"; };\n\t\tC0121F772E9400DF002DBAF2 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Debug.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F792E9400DF002DBAF2 /* IQKeyboardManager+Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Deprecated.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F7B2E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIScrollView+IQKeyboardManagerExtension.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F7C2E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIScrollView+IQKeyboardManagerExtensionObjc.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F7D2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIView+IQKeyboardManagerExtension.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F7E2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIView+IQKeyboardManagerExtensionObjc.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F802E9400DF002DBAF2 /* UICollectionView+IndexPaths.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UICollectionView+IndexPaths.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F812E9400DF002DBAF2 /* UITableView+IndexPaths.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UITableView+IndexPaths.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F822E9400DF002DBAF2 /* UIView+Parent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIView+Parent.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F832E9400DF002DBAF2 /* UIView+ParentObjc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIView+ParentObjc.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F842E9400DF002DBAF2 /* UIViewController+ParentContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIViewController+ParentContainer.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F862E9400DF002DBAF2 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardManager.swift; sourceTree = \"<group>\"; };\n\t\tC0121F872E9400DF002DBAF2 /* IQKeyboardManager+ActiveConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+ActiveConfiguration.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F882E9400DF002DBAF2 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Internal.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F892E9400DF002DBAF2 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Position.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F8B2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+ToolbarManager.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F8C2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+ToolbarManagerDeprecated.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F8E2E9400DF002DBAF2 /* UIView+Resign.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIView+Resign.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F8F2E9400DF002DBAF2 /* UIView+ResignObjc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"UIView+ResignObjc.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F912E9400DF002DBAF2 /* IQKeyboardManager+Resign.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Resign.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F922E9400DF002DBAF2 /* IQKeyboardManager+Resign_Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardManager+Resign_Deprecated.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F932E9400DF002DBAF2 /* IQKeyboardResignHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardResignHandler.swift; sourceTree = \"<group>\"; };\n\t\tC0121F942E9400DF002DBAF2 /* IQKeyboardResignHandler+Internal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"IQKeyboardResignHandler+Internal.swift\"; sourceTree = \"<group>\"; };\n\t\tC0121F962E9400DF002DBAF2 /* IQKeyboardManagerSwift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerSwift.h; sourceTree = \"<group>\"; };\n\t\tC0121F972E9400DF002DBAF2 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = \"<group>\"; };\n\t\tC0121FBA2E9408E5002DBAF2 /* IQTextInputViewNotification.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQTextInputViewNotification.xcframework; path = ../Carthage/Build/IQTextInputViewNotification.xcframework; sourceTree = \"<group>\"; };\n\t\tC0121FBB2E9408E5002DBAF2 /* IQKeyboardCore.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardCore.xcframework; path = ../Carthage/Build/IQKeyboardCore.xcframework; sourceTree = \"<group>\"; };\n\t\tC0121FBC2E9408E5002DBAF2 /* IQKeyboardToolbarManager.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardToolbarManager.xcframework; path = ../Carthage/Build/IQKeyboardToolbarManager.xcframework; sourceTree = \"<group>\"; };\n\t\tC0121FBD2E9408E5002DBAF2 /* IQKeyboardReturnManager.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardReturnManager.xcframework; path = ../Carthage/Build/IQKeyboardReturnManager.xcframework; sourceTree = \"<group>\"; };\n\t\tC0121FBE2E9408E5002DBAF2 /* IQTextView.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQTextView.xcframework; path = ../Carthage/Build/IQTextView.xcframework; sourceTree = \"<group>\"; };\n\t\tC0121FBF2E9408E5002DBAF2 /* IQKeyboardNotification.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardNotification.xcframework; path = ../Carthage/Build/IQKeyboardNotification.xcframework; sourceTree = \"<group>\"; };\n\t\tC0121FC02E9408E5002DBAF2 /* IQKeyboardToolbar.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardToolbar.xcframework; path = ../Carthage/Build/IQKeyboardToolbar.xcframework; sourceTree = \"<group>\"; };\n\t\tC01ED1FB2C6A4E33004BA157 /* IQKeyboardManagerSwift_iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IQKeyboardManagerSwift_iOS.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tC01ED2982C6A4EA1004BA157 /* IQKeyboardCore.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardCore.xcframework; path = Carthage/Build/IQKeyboardCore.xcframework; sourceTree = \"<group>\"; };\n\t\tC01ED29A2C6A4EAE004BA157 /* IQKeyboardNotification.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardNotification.xcframework; path = Carthage/Build/IQKeyboardNotification.xcframework; sourceTree = \"<group>\"; };\n\t\tC01ED29B2C6A4EAE004BA157 /* IQTextInputViewNotification.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQTextInputViewNotification.xcframework; path = Carthage/Build/IQTextInputViewNotification.xcframework; sourceTree = \"<group>\"; };\n\t\tC01ED2EE2C6A4F4A004BA157 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.2.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };\n\t\tC01ED2F02C6A4F4F004BA157 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\tC01ED2F22C6A4F54004BA157 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.2.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };\n\t\tC01ED2F42C6A4F5B004BA157 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.2.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };\n\t\tC03C946D273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension.appex */ = {isa = PBXFileReference; explicitFileType = \"wrapper.app-extension\"; includeInIndex = 0; path = IQKeyboardManagerSwiftExampleExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tC0849B652CD8B4FC004D0CEC /* IQKeyboardReturnManager.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardReturnManager.xcframework; path = Carthage/Build/IQKeyboardReturnManager.xcframework; sourceTree = \"<group>\"; };\n\t\tC0974E0D2CCF9108008164EC /* IQKeyboardToolbar.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardToolbar.xcframework; path = Carthage/Build/IQKeyboardToolbar.xcframework; sourceTree = \"<group>\"; };\n\t\tC0974E0E2CCF9108008164EC /* IQKeyboardToolbarManager.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQKeyboardToolbarManager.xcframework; path = Carthage/Build/IQKeyboardToolbarManager.xcframework; sourceTree = \"<group>\"; };\n\t\tC0974E0F2CCF9108008164EC /* IQTextView.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IQTextView.xcframework; path = Carthage/Build/IQTextView.xcframework; sourceTree = \"<group>\"; };\n\t\tC0ACB0F519CF104B0057B571 /* IQKeyboardManagerSwiftExampleSwift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = IQKeyboardManagerSwiftExampleSwift.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tC0B63B9F1781FAB1008D3B64 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };\n\t\tC0B63BA11781FAB1008D3B64 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\tC0B63BA31781FAB1008D3B64 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };\n\t\tC911334C09686FAD2A4352D3 /* Pods-IQKeyboardManagerSwiftExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-IQKeyboardManagerSwiftExample.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-IQKeyboardManagerSwiftExample/Pods-IQKeyboardManagerSwiftExample.debug.xcconfig\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tC01ED1F82C6A4E33004BA157 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121FC12E9408E5002DBAF2 /* IQTextInputViewNotification.xcframework in Frameworks */,\n\t\t\t\tC0121FC22E9408E5002DBAF2 /* IQKeyboardCore.xcframework in Frameworks */,\n\t\t\t\tC0121FC32E9408E5002DBAF2 /* IQKeyboardToolbarManager.xcframework in Frameworks */,\n\t\t\t\tC0121FC42E9408E5002DBAF2 /* IQKeyboardReturnManager.xcframework in Frameworks */,\n\t\t\t\tC0121FC52E9408E5002DBAF2 /* IQTextView.xcframework in Frameworks */,\n\t\t\t\tC0121FC62E9408E5002DBAF2 /* IQKeyboardNotification.xcframework in Frameworks */,\n\t\t\t\tC0121FC72E9408E5002DBAF2 /* IQKeyboardToolbar.xcframework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC03C946A273CF3FF00AF66B5 /* 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\t\tC0ACB0F219CF104B0057B571 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t56FCBF7C24C3668A007B0332 /* Foundation.framework in Frameworks */,\n\t\t\t\t56FCBF7D24C3668E007B0332 /* UIKit.framework in Frameworks */,\n\t\t\t\t56FCBF7B24C36686007B0332 /* CoreGraphics.framework in Frameworks */,\n\t\t\t\t4CF58EAD1D36BD910081FB08 /* Social.framework in Frameworks */,\n\t\t\t\t56FCBF7A24C36678007B0332 /* WebKit.framework in Frameworks */,\n\t\t\t\t03ADCF0447958F5BE7A48B6B /* Pods_IQKeyboardManagerSwiftExample.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\t9D0BB82E18BB1AE100667349 /* Other Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9D0BB82F18BB1AE100667349 /* Foundation.framework */,\n\t\t\t\t9D0BB83018BB1AE100667349 /* CoreData.framework */,\n\t\t\t\t9D0BB83118BB1AE100667349 /* AppKit.framework */,\n\t\t\t);\n\t\t\tname = \"Other Frameworks\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EE12E94000A002DBAF2 /* Cell */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EDA2E94000A002DBAF2 /* ColorTableViewCell.swift */,\n\t\t\t\tC0121EDB2E94000A002DBAF2 /* ImageSwitchTableViewCell.swift */,\n\t\t\t\tC0121EDC2E94000A002DBAF2 /* NavigationTableViewCell.swift */,\n\t\t\t\tC0121EDD2E94000A002DBAF2 /* OptionTableViewCell.swift */,\n\t\t\t\tC0121EDE2E94000A002DBAF2 /* StepperTableViewCell.swift */,\n\t\t\t\tC0121EDF2E94000A002DBAF2 /* SwitchTableViewCell.swift */,\n\t\t\t\tC0121EE02E94000A002DBAF2 /* TextFieldTableViewCell.swift */,\n\t\t\t);\n\t\t\tpath = Cell;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EE32E94000A002DBAF2 /* Extension */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EE22E94000A002DBAF2 /* UITableView+Extension.swift */,\n\t\t\t);\n\t\t\tpath = Extension;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EE92E94000A002DBAF2 /* Resources */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F602E94003E002DBAF2 /* Images.xcassets */,\n\t\t\t\tC0121EE42E94000A002DBAF2 /* Info.plist */,\n\t\t\t\tC0121EE72E94000A002DBAF2 /* InfoPlist.strings */,\n\t\t\t\tC0121EE82E94000A002DBAF2 /* IQKeyboardManger-Swift-Bridging-Header.h */,\n\t\t\t);\n\t\t\tpath = Resources;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F012E94000A002DBAF2 /* Storyboard */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EEC2E94000A002DBAF2 /* FullScreenControllers.storyboard */,\n\t\t\t\tC0121EEF2E94000A002DBAF2 /* General.storyboard */,\n\t\t\t\tC0121EF22E94000A002DBAF2 /* Launch.storyboard */,\n\t\t\t\tC0121EF52E94000A002DBAF2 /* Main.storyboard */,\n\t\t\t\tC0121EF82E94000A002DBAF2 /* ScrollView.storyboard */,\n\t\t\t\tC0121EFB2E94000A002DBAF2 /* Settings.storyboard */,\n\t\t\t\tC0121EFE2E94000A002DBAF2 /* SpecialCase.storyboard */,\n\t\t\t\tC0121F002E94000A002DBAF2 /* TestCases.storyboard */,\n\t\t\t);\n\t\t\tpath = Storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F262E94000A002DBAF2 /* ViewController */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F022E94000A002DBAF2 /* AutofillPasswordViewController.swift */,\n\t\t\t\tC0121F032E94000A002DBAF2 /* BaseTableViewController.swift */,\n\t\t\t\tC0121F042E94000A002DBAF2 /* BaseViewController.swift */,\n\t\t\t\tC0121F052E94000A002DBAF2 /* CollectionViewDemoController.swift */,\n\t\t\t\tC0121F062E94000A002DBAF2 /* CustomViewController.swift */,\n\t\t\t\tC0121F072E94000A002DBAF2 /* EdgesForExtendedLayoutViewController.swift */,\n\t\t\t\tC0121F082E94000A002DBAF2 /* EnableMode2000ViewController.swift */,\n\t\t\t\tC0121F092E94000A002DBAF2 /* ExampleTableViewController.swift */,\n\t\t\t\tC0121F0A2E94000A002DBAF2 /* ManualToolbarViewController.swift */,\n\t\t\t\tC0121F0B2E94000A002DBAF2 /* NavigationBarViewController.swift */,\n\t\t\t\tC0121F0C2E94000A002DBAF2 /* NavigationController.swift */,\n\t\t\t\tC0121F0D2E94000A002DBAF2 /* NonScrollTextView1979ViewController.swift */,\n\t\t\t\tC0121F0E2E94000A002DBAF2 /* OptionsViewController.swift */,\n\t\t\t\tC0121F0F2E94000A002DBAF2 /* PageViewController.swift */,\n\t\t\t\tC0121F102E94000A002DBAF2 /* PopoverViewController.swift */,\n\t\t\t\tC0121F112E94000A002DBAF2 /* RefreshLayoutViewController.swift */,\n\t\t\t\tC0121F122E94000A002DBAF2 /* ReloadLayout1892ViewController.swift */,\n\t\t\t\tC0121F132E94000A002DBAF2 /* SafeAreaViewController.swift */,\n\t\t\t\tC0121F142E94000A002DBAF2 /* ScrollViewController.swift */,\n\t\t\t\tC0121F152E94000A002DBAF2 /* SearchViewController.swift */,\n\t\t\t\tC0121F162E94000A002DBAF2 /* SettingsViewController.swift */,\n\t\t\t\tC0121F172E94000A002DBAF2 /* SettingsViewController+TableView.swift */,\n\t\t\t\tC0121F182E94000A002DBAF2 /* SpecialCaseViewController.swift */,\n\t\t\t\tC0121F192E94000A002DBAF2 /* StackViewController.swift */,\n\t\t\t\tC0121F1A2E94000A002DBAF2 /* TableViewContainerViewController.swift */,\n\t\t\t\tC0121F1B2E94000A002DBAF2 /* TableViewController.swift */,\n\t\t\t\tC0121F1C2E94000A002DBAF2 /* TableViewInContainerViewController.swift */,\n\t\t\t\tC0121F1D2E94000A002DBAF2 /* TestViewController.swift */,\n\t\t\t\tC0121F1E2E94000A002DBAF2 /* TextFieldHostingViewController.swift */,\n\t\t\t\tC0121F1F2E94000A002DBAF2 /* TextFieldView.swift */,\n\t\t\t\tC0121F202E94000A002DBAF2 /* TextFieldViewController.swift */,\n\t\t\t\tC0121F212E94000A002DBAF2 /* TextSelectionViewController.swift */,\n\t\t\t\tC0121F222E94000A002DBAF2 /* TextViewController.swift */,\n\t\t\t\tC0121F232E94000A002DBAF2 /* TextViewSpecialCaseViewController.swift */,\n\t\t\t\tC0121F242E94000A002DBAF2 /* ViewController.swift */,\n\t\t\t\tC0121F252E94000A002DBAF2 /* WebViewController.swift */,\n\t\t\t);\n\t\t\tpath = ViewController;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F282E94000A002DBAF2 /* IQKeyboardManagerSwiftExample */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EE12E94000A002DBAF2 /* Cell */,\n\t\t\t\tC0121EE32E94000A002DBAF2 /* Extension */,\n\t\t\t\tC0121EE92E94000A002DBAF2 /* Resources */,\n\t\t\t\tC0121F012E94000A002DBAF2 /* Storyboard */,\n\t\t\t\tC0121F262E94000A002DBAF2 /* ViewController */,\n\t\t\t\tC0121F272E94000A002DBAF2 /* AppDelegate.swift */,\n\t\t\t);\n\t\t\tpath = IQKeyboardManagerSwiftExample;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F682E9400C4002DBAF2 /* IQKeyboardManagerSwiftExampleExtension */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F622E9400C4002DBAF2 /* ActionViewController.swift */,\n\t\t\t\tC0121F642E9400C4002DBAF2 /* Info.plist */,\n\t\t\t\tC0121F662E9400C4002DBAF2 /* MainInterface.storyboard */,\n\t\t\t\tC0121F672E9400C4002DBAF2 /* Media.xcassets */,\n\t\t\t);\n\t\t\tpath = IQKeyboardManagerSwiftExampleExtension;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F722E9400DF002DBAF2 /* Appearance */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F6D2E9400DF002DBAF2 /* IQKeyboardAppearanceConfiguration.swift */,\n\t\t\t\tC0121F6E2E9400DF002DBAF2 /* IQKeyboardAppearanceManager.swift */,\n\t\t\t\tC0121F6F2E9400DF002DBAF2 /* IQKeyboardAppearanceManager+Internal.swift */,\n\t\t\t\tC0121F702E9400DF002DBAF2 /* IQKeyboardManager+Appearance.swift */,\n\t\t\t\tC0121F712E9400DF002DBAF2 /* IQKeyboardManager+Appearance_Deprecated.swift */,\n\t\t\t);\n\t\t\tpath = Appearance;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F762E9400DF002DBAF2 /* Configuration */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F732E9400DF002DBAF2 /* IQActiveConfiguration.swift */,\n\t\t\t\tC0121F742E9400DF002DBAF2 /* IQRootControllerConfiguration.swift */,\n\t\t\t\tC0121F752E9400DF002DBAF2 /* IQScrollViewConfiguration.swift */,\n\t\t\t);\n\t\t\tpath = Configuration;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F782E9400DF002DBAF2 /* Debug */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F772E9400DF002DBAF2 /* IQKeyboardManager+Debug.swift */,\n\t\t\t);\n\t\t\tpath = Debug;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F7A2E9400DF002DBAF2 /* Deprecated */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F792E9400DF002DBAF2 /* IQKeyboardManager+Deprecated.swift */,\n\t\t\t);\n\t\t\tpath = Deprecated;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F7F2E9400DF002DBAF2 /* IQKeyboardManagerExtension */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F7B2E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtension.swift */,\n\t\t\t\tC0121F7C2E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */,\n\t\t\t\tC0121F7D2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtension.swift */,\n\t\t\t\tC0121F7E2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtensionObjc.swift */,\n\t\t\t);\n\t\t\tpath = IQKeyboardManagerExtension;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F852E9400DF002DBAF2 /* UIKitExtensions */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F802E9400DF002DBAF2 /* UICollectionView+IndexPaths.swift */,\n\t\t\t\tC0121F812E9400DF002DBAF2 /* UITableView+IndexPaths.swift */,\n\t\t\t\tC0121F822E9400DF002DBAF2 /* UIView+Parent.swift */,\n\t\t\t\tC0121F832E9400DF002DBAF2 /* UIView+ParentObjc.swift */,\n\t\t\t\tC0121F842E9400DF002DBAF2 /* UIViewController+ParentContainer.swift */,\n\t\t\t);\n\t\t\tpath = UIKitExtensions;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F8A2E9400DF002DBAF2 /* IQKeyboardManager */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F762E9400DF002DBAF2 /* Configuration */,\n\t\t\t\tC0121F782E9400DF002DBAF2 /* Debug */,\n\t\t\t\tC0121F7A2E9400DF002DBAF2 /* Deprecated */,\n\t\t\t\tC0121F7F2E9400DF002DBAF2 /* IQKeyboardManagerExtension */,\n\t\t\t\tC0121F852E9400DF002DBAF2 /* UIKitExtensions */,\n\t\t\t\tC0121F862E9400DF002DBAF2 /* IQKeyboardManager.swift */,\n\t\t\t\tC0121F872E9400DF002DBAF2 /* IQKeyboardManager+ActiveConfiguration.swift */,\n\t\t\t\tC0121F882E9400DF002DBAF2 /* IQKeyboardManager+Internal.swift */,\n\t\t\t\tC0121F892E9400DF002DBAF2 /* IQKeyboardManager+Position.swift */,\n\t\t\t);\n\t\t\tpath = IQKeyboardManager;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F8D2E9400DF002DBAF2 /* IQKeyboardToolbarManager */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F8B2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManager.swift */,\n\t\t\t\tC0121F8C2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */,\n\t\t\t);\n\t\t\tpath = IQKeyboardToolbarManager;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F902E9400DF002DBAF2 /* UIKItExtensions */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F8E2E9400DF002DBAF2 /* UIView+Resign.swift */,\n\t\t\t\tC0121F8F2E9400DF002DBAF2 /* UIView+ResignObjc.swift */,\n\t\t\t);\n\t\t\tpath = UIKItExtensions;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F952E9400DF002DBAF2 /* Resign */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F902E9400DF002DBAF2 /* UIKItExtensions */,\n\t\t\t\tC0121F912E9400DF002DBAF2 /* IQKeyboardManager+Resign.swift */,\n\t\t\t\tC0121F922E9400DF002DBAF2 /* IQKeyboardManager+Resign_Deprecated.swift */,\n\t\t\t\tC0121F932E9400DF002DBAF2 /* IQKeyboardResignHandler.swift */,\n\t\t\t\tC0121F942E9400DF002DBAF2 /* IQKeyboardResignHandler+Internal.swift */,\n\t\t\t);\n\t\t\tpath = Resign;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F982E9400DF002DBAF2 /* IQKeyboardManagerSwift */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F722E9400DF002DBAF2 /* Appearance */,\n\t\t\t\tC0121F8A2E9400DF002DBAF2 /* IQKeyboardManager */,\n\t\t\t\tC0121F8D2E9400DF002DBAF2 /* IQKeyboardToolbarManager */,\n\t\t\t\tC0121F952E9400DF002DBAF2 /* Resign */,\n\t\t\t\tC0121F962E9400DF002DBAF2 /* IQKeyboardManagerSwift.h */,\n\t\t\t\tC0121F972E9400DF002DBAF2 /* PrivacyInfo.xcprivacy */,\n\t\t\t);\n\t\t\tname = IQKeyboardManagerSwift;\n\t\t\tpath = ../IQKeyboardManagerSwift;\n\t\t\tsourceTree = SOURCE_ROOT;\n\t\t};\n\t\tC0B63B901781FAB0008D3B64 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F282E94000A002DBAF2 /* IQKeyboardManagerSwiftExample */,\n\t\t\t\tC0121F682E9400C4002DBAF2 /* IQKeyboardManagerSwiftExampleExtension */,\n\t\t\t\tC0121F982E9400DF002DBAF2 /* IQKeyboardManagerSwift */,\n\t\t\t\tC0B63B9E1781FAB1008D3B64 /* Frameworks */,\n\t\t\t\tC0B63B9C1781FAB1008D3B64 /* Products */,\n\t\t\t\tEFA5AFEC00910B83E6A41257 /* Pods */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0B63B9C1781FAB1008D3B64 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0ACB0F519CF104B0057B571 /* IQKeyboardManagerSwiftExampleSwift.app */,\n\t\t\t\tC03C946D273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension.appex */,\n\t\t\t\tC01ED1FB2C6A4E33004BA157 /* IQKeyboardManagerSwift_iOS.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0B63B9E1781FAB1008D3B64 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121FBF2E9408E5002DBAF2 /* IQKeyboardNotification.xcframework */,\n\t\t\t\tC0849B652CD8B4FC004D0CEC /* IQKeyboardReturnManager.xcframework */,\n\t\t\t\tC0974E0D2CCF9108008164EC /* IQKeyboardToolbar.xcframework */,\n\t\t\t\tC0121FBD2E9408E5002DBAF2 /* IQKeyboardReturnManager.xcframework */,\n\t\t\t\tC0121FC02E9408E5002DBAF2 /* IQKeyboardToolbar.xcframework */,\n\t\t\t\tC0974E0E2CCF9108008164EC /* IQKeyboardToolbarManager.xcframework */,\n\t\t\t\tC0974E0F2CCF9108008164EC /* IQTextView.xcframework */,\n\t\t\t\tC0121FBB2E9408E5002DBAF2 /* IQKeyboardCore.xcframework */,\n\t\t\t\tC0121FBC2E9408E5002DBAF2 /* IQKeyboardToolbarManager.xcframework */,\n\t\t\t\tC0121FBA2E9408E5002DBAF2 /* IQTextInputViewNotification.xcframework */,\n\t\t\t\tC0121FBE2E9408E5002DBAF2 /* IQTextView.xcframework */,\n\t\t\t\tC01ED2F42C6A4F5B004BA157 /* QuartzCore.framework */,\n\t\t\t\tC01ED2F22C6A4F54004BA157 /* CoreGraphics.framework */,\n\t\t\t\tC01ED2F02C6A4F4F004BA157 /* Foundation.framework */,\n\t\t\t\tC01ED2EE2C6A4F4A004BA157 /* UIKit.framework */,\n\t\t\t\tC01ED29A2C6A4EAE004BA157 /* IQKeyboardNotification.xcframework */,\n\t\t\t\tC01ED29B2C6A4EAE004BA157 /* IQTextInputViewNotification.xcframework */,\n\t\t\t\tC01ED2982C6A4EA1004BA157 /* IQKeyboardCore.xcframework */,\n\t\t\t\t56FCBF7824C36672007B0332 /* WebKit.framework */,\n\t\t\t\t9D9A0FC218C9DB5700585D3F /* Social.framework */,\n\t\t\t\tC0B63B9F1781FAB1008D3B64 /* UIKit.framework */,\n\t\t\t\tC0B63BA11781FAB1008D3B64 /* Foundation.framework */,\n\t\t\t\tC0B63BA31781FAB1008D3B64 /* CoreGraphics.framework */,\n\t\t\t\t9D0BB84118BB1AE100667349 /* XCTest.framework */,\n\t\t\t\t9D0BB82E18BB1AE100667349 /* Other Frameworks */,\n\t\t\t\t55CF83944ADEC65E0AF10B2E /* Pods_DemoObjC.framework */,\n\t\t\t\t7AC7BF348A3EBFE4CD9EA9BD /* Pods_IQKeyboardManagerSwiftExample.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEFA5AFEC00910B83E6A41257 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC911334C09686FAD2A4352D3 /* Pods-IQKeyboardManagerSwiftExample.debug.xcconfig */,\n\t\t\t\t35E6DD2330A3AF7B8F2DF86F /* Pods-IQKeyboardManagerSwiftExample.release.xcconfig */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\tC01ED1F62C6A4E33004BA157 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121FB82E9400DF002DBAF2 /* IQKeyboardManagerSwift.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\tC01ED1FA2C6A4E33004BA157 /* IQKeyboardManagerSwift-iOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = C01ED2012C6A4E34004BA157 /* Build configuration list for PBXNativeTarget \"IQKeyboardManagerSwift-iOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tC01ED1F62C6A4E33004BA157 /* Headers */,\n\t\t\t\tC01ED1F72C6A4E33004BA157 /* Sources */,\n\t\t\t\tC01ED1F82C6A4E33004BA157 /* Frameworks */,\n\t\t\t\tC01ED1F92C6A4E33004BA157 /* 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 = \"IQKeyboardManagerSwift-iOS\";\n\t\t\tproductName = IQKeyboardManagerSwift;\n\t\t\tproductReference = C01ED1FB2C6A4E33004BA157 /* IQKeyboardManagerSwift_iOS.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tC03C946C273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = C03C947E273CF3FF00AF66B5 /* Build configuration list for PBXNativeTarget \"IQKeyboardManagerSwiftExampleExtension\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tC03C9469273CF3FF00AF66B5 /* Sources */,\n\t\t\t\tC03C946A273CF3FF00AF66B5 /* Frameworks */,\n\t\t\t\tC03C946B273CF3FF00AF66B5 /* 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 = IQKeyboardManagerSwiftExampleExtension;\n\t\t\tproductName = DemoExtension;\n\t\t\tproductReference = C03C946D273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension.appex */;\n\t\t\tproductType = \"com.apple.product-type.app-extension\";\n\t\t};\n\t\tC0ACB0F419CF104B0057B571 /* IQKeyboardManagerSwiftExample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = C0ACB11119CF10510057B571 /* Build configuration list for PBXNativeTarget \"IQKeyboardManagerSwiftExample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tD85D78F460B5CF0FF9536757 /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tC0ACB0F119CF104B0057B571 /* Sources */,\n\t\t\t\tC0ACB0F219CF104B0057B571 /* Frameworks */,\n\t\t\t\tC0ACB0F319CF104B0057B571 /* Resources */,\n\t\t\t\tC0B6F1C124F668D6009A24B2 /* SwiftLint */,\n\t\t\t\t17B2CF02857B50C3053DFA79 /* [CP] Embed Pods Frameworks */,\n\t\t\t\tC03C947B273CF3FF00AF66B5 /* Embed Foundation Extensions */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tC03C9478273CF3FF00AF66B5 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = IQKeyboardManagerSwiftExample;\n\t\t\tproductName = \"IQKeyboardManager Swift\";\n\t\t\tproductReference = C0ACB0F519CF104B0057B571 /* IQKeyboardManagerSwiftExampleSwift.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tC0B63B921781FAB0008D3B64 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tBuildIndependentTargetsInParallel = YES;\n\t\t\t\tDefaultBuildSystemTypeForWorkspace = Latest;\n\t\t\t\tLastSwiftMigration = 0700;\n\t\t\t\tLastSwiftUpdateCheck = 1250;\n\t\t\t\tLastUpgradeCheck = 1520;\n\t\t\t\tORGANIZATIONNAME = Iftekhar;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tC01ED1FA2C6A4E33004BA157 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 15.2;\n\t\t\t\t\t};\n\t\t\t\t\tC03C946C273CF3FF00AF66B5 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 12.5;\n\t\t\t\t\t};\n\t\t\t\t\tC0ACB0F419CF104B0057B571 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.0.1;\n\t\t\t\t\t\tLastSwiftMigration = 1020;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = C0B63B951781FAB0008D3B64 /* Build configuration list for PBXProject \"IQKeyboardManagerSwiftExample\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tes,\n\t\t\t\tBase,\n\t\t\t\tar,\n\t\t\t);\n\t\t\tmainGroup = C0B63B901781FAB0008D3B64;\n\t\t\tproductRefGroup = C0B63B9C1781FAB1008D3B64 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tC0ACB0F419CF104B0057B571 /* IQKeyboardManagerSwiftExample */,\n\t\t\t\tC03C946C273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension */,\n\t\t\t\tC01ED1FA2C6A4E33004BA157 /* IQKeyboardManagerSwift-iOS */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tC01ED1F92C6A4E33004BA157 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121FB92E9400DF002DBAF2 /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC03C946B273CF3FF00AF66B5 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121F6A2E9400C4002DBAF2 /* MainInterface.storyboard in Resources */,\n\t\t\t\tC0121F6B2E9400C4002DBAF2 /* Media.xcassets in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC0ACB0F319CF104B0057B571 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121F292E94000A002DBAF2 /* General.storyboard in Resources */,\n\t\t\t\tC0121F2A2E94000A002DBAF2 /* TestCases.storyboard in Resources */,\n\t\t\t\tC0121F2B2E94000A002DBAF2 /* Settings.storyboard in Resources */,\n\t\t\t\tC0121F2C2E94000A002DBAF2 /* Launch.storyboard in Resources */,\n\t\t\t\tC0121F612E94003E002DBAF2 /* Images.xcassets in Resources */,\n\t\t\t\tC0121F2D2E94000A002DBAF2 /* ScrollView.storyboard in Resources */,\n\t\t\t\tC0121F2E2E94000A002DBAF2 /* InfoPlist.strings in Resources */,\n\t\t\t\tC0121F302E94000A002DBAF2 /* Main.storyboard in Resources */,\n\t\t\t\tC0121F312E94000A002DBAF2 /* SpecialCase.storyboard in Resources */,\n\t\t\t\tC0121F322E94000A002DBAF2 /* FullScreenControllers.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t17B2CF02857B50C3053DFA79 /* [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\tinputPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-IQKeyboardManagerSwiftExample/Pods-IQKeyboardManagerSwiftExample-frameworks.sh\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQDropDownTextFieldSwift/IQDropDownTextFieldSwift.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQKeyboardCore/IQKeyboardCore.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/IQTextView/IQTextView.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/RSKPlaceholderTextView/RSKPlaceholderTextView.framework\",\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQDropDownTextFieldSwift.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardCore.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardNotification.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardReturnManager.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardToolbar.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardToolbarManager.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQTextInputViewNotification.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQTextView.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RSKPlaceholderTextView.framework\",\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-IQKeyboardManagerSwiftExample/Pods-IQKeyboardManagerSwiftExample-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tC0B6F1C124F668D6009A24B2 /* SwiftLint */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\talwaysOutOfDate = 1;\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);\n\t\t\tname = SwiftLint;\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${PODS_ROOT}/SwiftLint/swiftlint\\\"\\n\";\n\t\t};\n\t\tD85D78F460B5CF0FF9536757 /* [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\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\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-IQKeyboardManagerSwiftExample-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\tC01ED1F72C6A4E33004BA157 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121F992E9400DF002DBAF2 /* UITableView+IndexPaths.swift in Sources */,\n\t\t\t\tC0121F9A2E9400DF002DBAF2 /* IQKeyboardAppearanceManager.swift in Sources */,\n\t\t\t\tC0121F9B2E9400DF002DBAF2 /* IQRootControllerConfiguration.swift in Sources */,\n\t\t\t\tC0121F9C2E9400DF002DBAF2 /* UIView+Parent.swift in Sources */,\n\t\t\t\tC0121F9D2E9400DF002DBAF2 /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */,\n\t\t\t\tC0121F9E2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManager.swift in Sources */,\n\t\t\t\tC0121F9F2E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtension.swift in Sources */,\n\t\t\t\tC0121FA02E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */,\n\t\t\t\tC0121FA12E9400DF002DBAF2 /* IQKeyboardManager+ActiveConfiguration.swift in Sources */,\n\t\t\t\tC0121FA22E9400DF002DBAF2 /* IQKeyboardResignHandler+Internal.swift in Sources */,\n\t\t\t\tC0121FA32E9400DF002DBAF2 /* IQKeyboardAppearanceManager+Internal.swift in Sources */,\n\t\t\t\tC0121FA42E9400DF002DBAF2 /* UICollectionView+IndexPaths.swift in Sources */,\n\t\t\t\tC0121FA52E9400DF002DBAF2 /* UIView+ParentObjc.swift in Sources */,\n\t\t\t\tC0121FA62E9400DF002DBAF2 /* IQKeyboardManager+Appearance.swift in Sources */,\n\t\t\t\tC0121FA72E9400DF002DBAF2 /* IQScrollViewConfiguration.swift in Sources */,\n\t\t\t\tC0121FA82E9400DF002DBAF2 /* IQKeyboardAppearanceConfiguration.swift in Sources */,\n\t\t\t\tC0121FA92E9400DF002DBAF2 /* UIView+ResignObjc.swift in Sources */,\n\t\t\t\tC0121FAA2E9400DF002DBAF2 /* IQKeyboardManager+Internal.swift in Sources */,\n\t\t\t\tC0121FAB2E9400DF002DBAF2 /* IQKeyboardResignHandler.swift in Sources */,\n\t\t\t\tC0121FAC2E9400DF002DBAF2 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */,\n\t\t\t\tC0121FAD2E9400DF002DBAF2 /* IQKeyboardManager+Debug.swift in Sources */,\n\t\t\t\tC0121FAE2E9400DF002DBAF2 /* IQKeyboardManager.swift in Sources */,\n\t\t\t\tC0121FAF2E9400DF002DBAF2 /* IQKeyboardManager+Deprecated.swift in Sources */,\n\t\t\t\tC0121FB02E9400DF002DBAF2 /* UIViewController+ParentContainer.swift in Sources */,\n\t\t\t\tC0121FB12E9400DF002DBAF2 /* IQActiveConfiguration.swift in Sources */,\n\t\t\t\tC0121FB22E9400DF002DBAF2 /* UIView+Resign.swift in Sources */,\n\t\t\t\tC0121FB32E9400DF002DBAF2 /* IQKeyboardManager+Resign_Deprecated.swift in Sources */,\n\t\t\t\tC0121FB42E9400DF002DBAF2 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */,\n\t\t\t\tC0121FB52E9400DF002DBAF2 /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */,\n\t\t\t\tC0121FB62E9400DF002DBAF2 /* IQKeyboardManager+Resign.swift in Sources */,\n\t\t\t\tC0121FB72E9400DF002DBAF2 /* IQKeyboardManager+Position.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC03C9469273CF3FF00AF66B5 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121F692E9400C4002DBAF2 /* ActionViewController.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC0ACB0F119CF104B0057B571 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC0121F332E94000A002DBAF2 /* NonScrollTextView1979ViewController.swift in Sources */,\n\t\t\t\tC0121F342E94000A002DBAF2 /* SettingsViewController.swift in Sources */,\n\t\t\t\tC0121F352E94000A002DBAF2 /* TableViewController.swift in Sources */,\n\t\t\t\tC0121F362E94000A002DBAF2 /* PageViewController.swift in Sources */,\n\t\t\t\tC0121F372E94000A002DBAF2 /* BaseTableViewController.swift in Sources */,\n\t\t\t\tC0121F382E94000A002DBAF2 /* TextFieldView.swift in Sources */,\n\t\t\t\tC0121F392E94000A002DBAF2 /* NavigationController.swift in Sources */,\n\t\t\t\tC0121F3A2E94000A002DBAF2 /* NavigationBarViewController.swift in Sources */,\n\t\t\t\tC0121F3B2E94000A002DBAF2 /* ReloadLayout1892ViewController.swift in Sources */,\n\t\t\t\tC0121F3C2E94000A002DBAF2 /* TextFieldHostingViewController.swift in Sources */,\n\t\t\t\tC0121F3D2E94000A002DBAF2 /* EdgesForExtendedLayoutViewController.swift in Sources */,\n\t\t\t\tC0121F3E2E94000A002DBAF2 /* StackViewController.swift in Sources */,\n\t\t\t\tC0121F3F2E94000A002DBAF2 /* TextSelectionViewController.swift in Sources */,\n\t\t\t\tC0121F402E94000A002DBAF2 /* TableViewInContainerViewController.swift in Sources */,\n\t\t\t\tC0121F412E94000A002DBAF2 /* ScrollViewController.swift in Sources */,\n\t\t\t\tC0121F422E94000A002DBAF2 /* TextViewSpecialCaseViewController.swift in Sources */,\n\t\t\t\tC0121F432E94000A002DBAF2 /* AutofillPasswordViewController.swift in Sources */,\n\t\t\t\tC0121F442E94000A002DBAF2 /* ViewController.swift in Sources */,\n\t\t\t\tC0121F452E94000A002DBAF2 /* ManualToolbarViewController.swift in Sources */,\n\t\t\t\tC0121F462E94000A002DBAF2 /* SwitchTableViewCell.swift in Sources */,\n\t\t\t\tC0121F472E94000A002DBAF2 /* TestViewController.swift in Sources */,\n\t\t\t\tC0121F482E94000A002DBAF2 /* AppDelegate.swift in Sources */,\n\t\t\t\tC0121F492E94000A002DBAF2 /* TextViewController.swift in Sources */,\n\t\t\t\tC0121F4A2E94000A002DBAF2 /* ImageSwitchTableViewCell.swift in Sources */,\n\t\t\t\tC0121F4B2E94000A002DBAF2 /* TextFieldTableViewCell.swift in Sources */,\n\t\t\t\tC0121F4C2E94000A002DBAF2 /* SpecialCaseViewController.swift in Sources */,\n\t\t\t\tC0121F4D2E94000A002DBAF2 /* NavigationTableViewCell.swift in Sources */,\n\t\t\t\tC0121F4E2E94000A002DBAF2 /* UITableView+Extension.swift in Sources */,\n\t\t\t\tC0121F4F2E94000A002DBAF2 /* TableViewContainerViewController.swift in Sources */,\n\t\t\t\tC0121F502E94000A002DBAF2 /* SearchViewController.swift in Sources */,\n\t\t\t\tC0121F512E94000A002DBAF2 /* OptionTableViewCell.swift in Sources */,\n\t\t\t\tC0121F522E94000A002DBAF2 /* CollectionViewDemoController.swift in Sources */,\n\t\t\t\tC0121F532E94000A002DBAF2 /* TextFieldViewController.swift in Sources */,\n\t\t\t\tC0121F542E94000A002DBAF2 /* OptionsViewController.swift in Sources */,\n\t\t\t\tC0121F552E94000A002DBAF2 /* BaseViewController.swift in Sources */,\n\t\t\t\tC0121F562E94000A002DBAF2 /* ExampleTableViewController.swift in Sources */,\n\t\t\t\tC0121F572E94000A002DBAF2 /* WebViewController.swift in Sources */,\n\t\t\t\tC0121F582E94000A002DBAF2 /* PopoverViewController.swift in Sources */,\n\t\t\t\tC0121F592E94000A002DBAF2 /* EnableMode2000ViewController.swift in Sources */,\n\t\t\t\tC0121F5A2E94000A002DBAF2 /* CustomViewController.swift in Sources */,\n\t\t\t\tC0121F5B2E94000A002DBAF2 /* RefreshLayoutViewController.swift in Sources */,\n\t\t\t\tC0121F5C2E94000A002DBAF2 /* ColorTableViewCell.swift in Sources */,\n\t\t\t\tC0121F5D2E94000A002DBAF2 /* SettingsViewController+TableView.swift in Sources */,\n\t\t\t\tC0121F5E2E94000A002DBAF2 /* StepperTableViewCell.swift in Sources */,\n\t\t\t\tC0121F5F2E94000A002DBAF2 /* SafeAreaViewController.swift 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\tC03C9478273CF3FF00AF66B5 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = C03C946C273CF3FF00AF66B5 /* IQKeyboardManagerSwiftExampleExtension */;\n\t\t\ttargetProxy = C03C9477273CF3FF00AF66B5 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\tC0121EE72E94000A002DBAF2 /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EE52E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EE62E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EEC2E94000A002DBAF2 /* FullScreenControllers.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EEA2E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EEB2E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = FullScreenControllers.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EEF2E94000A002DBAF2 /* General.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EED2E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EEE2E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = General.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EF22E94000A002DBAF2 /* Launch.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EF02E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EF12E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = Launch.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EF52E94000A002DBAF2 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EF32E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EF42E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EF82E94000A002DBAF2 /* ScrollView.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EF62E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EF72E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = ScrollView.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EFB2E94000A002DBAF2 /* Settings.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EF92E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EFA2E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = Settings.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121EFE2E94000A002DBAF2 /* SpecialCase.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EFC2E94000A002DBAF2 /* Base */,\n\t\t\t\tC0121EFD2E94000A002DBAF2 /* ar */,\n\t\t\t);\n\t\t\tname = SpecialCase.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F002E94000A002DBAF2 /* TestCases.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121EFF2E94000A002DBAF2 /* Base */,\n\t\t\t);\n\t\t\tname = TestCases.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC0121F662E9400C4002DBAF2 /* MainInterface.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC0121F652E9400C4002DBAF2 /* Base */,\n\t\t\t);\n\t\t\tname = MainInterface.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\tC01ED1FF2C6A4E34004BA157 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\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++20\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\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_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = 7UUTF6T5P9;\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\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu17;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tINFOPLIST_KEY_NSHumanReadableCopyright = \"Copyright © 2024 Iftekhar. All rights reserved.\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.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\tLOCALIZATION_PREFERS_STRING_CATALOGS = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu17 gnu++20\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.infoenum.IQKeyboardManagerSwift;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"DEBUG $(inherited)\";\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\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\tC01ED2002C6A4E34004BA157 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\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++20\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\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_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = 7UUTF6T5P9;\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\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu17;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tINFOPLIST_KEY_NSHumanReadableCopyright = \"Copyright © 2024 Iftekhar. All rights reserved.\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.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\tLOCALIZATION_PREFERS_STRING_CATALOGS = YES;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu17 gnu++20\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.infoenum.IQKeyboardManagerSwift;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\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 = Release;\n\t\t};\n\t\tC03C947C273CF3FF00AF66B5 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\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_WEAK = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\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_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = IQKeyboardManagerSwiftExampleExtension/IQKeyboardManagerSwiftExampleExtension.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEVELOPMENT_TEAM = 7UUTF6T5P9;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tINFOPLIST_FILE = IQKeyboardManagerSwiftExampleExtension/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.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\"@executable_path/../../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = \"$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.iftekhar.IQKeyboardManagerSwiftExample.extension;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSUPPORTS_MACCATALYST = YES;\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\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tC03C947D273CF3FF00AF66B5 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\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_WEAK = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\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_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = IQKeyboardManagerSwiftExampleExtension/IQKeyboardManagerSwiftExampleExtension.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEVELOPMENT_TEAM = 7UUTF6T5P9;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tINFOPLIST_FILE = IQKeyboardManagerSwiftExampleExtension/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 13.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\"@executable_path/../../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = \"$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.iftekhar.IQKeyboardManagerSwiftExample.extension;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSUPPORTS_MACCATALYST = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tC0ACB11219CF10510057B571 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = C911334C09686FAD2A4352D3 /* Pods-IQKeyboardManagerSwiftExample.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = \"\";\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_MODULES_AUTOLINK = NO;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = \"$(inherited)\";\n\t\t\t\tCLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = IQKeyboardManagerSwiftExample/Resources/IQKeyboardManagerSwiftExample.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tDEVELOPMENT_TEAM = 7UUTF6T5P9;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = \"$(inherited)\";\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tINFOPLIST_FILE = IQKeyboardManagerSwiftExample/Resources/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 15.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\tMACOSX_DEPLOYMENT_TARGET = \"$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tOTHER_SWIFT_FLAGS = \"$(inherited)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.iftekhar.IQKeyboardManagerSwiftExample;\n\t\t\t\tPRODUCT_NAME = IQKeyboardManagerSwiftExampleSwift;\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSUPPORTED_PLATFORMS = \"iphoneos iphonesimulator\";\n\t\t\t\tSUPPORTS_MACCATALYST = NO;\n\t\t\t\tSUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"IQKeyboardManagerSwiftExample/Resources/IQKeyboardManger-Swift-Bridging-Header.h\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_STRICT_CONCURRENCY = complete;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2,6\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tC0ACB11319CF10510057B571 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 35E6DD2330A3AF7B8F2DF86F /* Pods-IQKeyboardManagerSwiftExample.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = \"\";\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_MODULES_AUTOLINK = NO;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = \"$(inherited)\";\n\t\t\t\tCLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = IQKeyboardManagerSwiftExample/Resources/IQKeyboardManagerSwiftExample.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tDEVELOPMENT_TEAM = 7UUTF6T5P9;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tINFOPLIST_FILE = IQKeyboardManagerSwiftExample/Resources/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 15.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\tMACOSX_DEPLOYMENT_TARGET = \"$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tOTHER_SWIFT_FLAGS = \"$(inherited)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.iftekhar.IQKeyboardManagerSwiftExample;\n\t\t\t\tPRODUCT_NAME = IQKeyboardManagerSwiftExampleSwift;\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSUPPORTED_PLATFORMS = \"iphoneos iphonesimulator\";\n\t\t\t\tSUPPORTS_MACCATALYST = NO;\n\t\t\t\tSUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"IQKeyboardManagerSwiftExample/Resources/IQKeyboardManger-Swift-Bridging-Header.h\";\n\t\t\t\tSWIFT_STRICT_CONCURRENCY = complete;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2,6\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tC0B63BB71781FAB1008D3B64 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = \"$(inherited)\";\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_ASSIGN_ENUM = 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_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_IMPLICIT_SIGN_CONVERSION = NO;\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_EXPLICIT_OWNERSHIP_TYPE = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = NO;\n\t\t\t\tCLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;\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_IMPLICIT_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\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\tCURRENT_PROJECT_VERSION = 1;\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_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;\n\t\t\t\tGCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;\n\t\t\t\tGCC_VERSION = com.apple.compilers.llvm.clang.1_0;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;\n\t\t\t\tGCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;\n\t\t\t\tGCC_WARN_SHADOW = YES;\n\t\t\t\tGCC_WARN_SIGN_COMPARE = NO;\n\t\t\t\tGCC_WARN_STRICT_SELECTOR_MATCH = YES;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNKNOWN_PRAGMAS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_LABEL = YES;\n\t\t\t\tGCC_WARN_UNUSED_PARAMETER = NO;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 17.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.10;\n\t\t\t\tMARKETING_VERSION = 6.5.13;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tOTHER_SWIFT_FLAGS = \"$(inherited)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tC0B63BB81781FAB1008D3B64 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = \"$(inherited)\";\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_ASSIGN_ENUM = 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_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_IMPLICIT_SIGN_CONVERSION = NO;\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_EXPLICIT_OWNERSHIP_TYPE = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = NO;\n\t\t\t\tCLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;\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_IMPLICIT_CONVERSION = NO;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\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 = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\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_PREPROCESSOR_DEFINITIONS = \"$(inherited)\";\n\t\t\t\tGCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;\n\t\t\t\tGCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;\n\t\t\t\tGCC_VERSION = com.apple.compilers.llvm.clang.1_0;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;\n\t\t\t\tGCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;\n\t\t\t\tGCC_WARN_SHADOW = YES;\n\t\t\t\tGCC_WARN_SIGN_COMPARE = NO;\n\t\t\t\tGCC_WARN_STRICT_SELECTOR_MATCH = YES;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNKNOWN_PRAGMAS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_LABEL = YES;\n\t\t\t\tGCC_WARN_UNUSED_PARAMETER = NO;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 17.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.10;\n\t\t\t\tMARKETING_VERSION = 6.5.13;\n\t\t\t\tOTHER_CFLAGS = \"-DNS_BLOCK_ASSERTIONS=1\";\n\t\t\t\tOTHER_SWIFT_FLAGS = \"$(inherited)\";\n\t\t\t\tSDKROOT = iphoneos;\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\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\tC01ED2012C6A4E34004BA157 /* Build configuration list for PBXNativeTarget \"IQKeyboardManagerSwift-iOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC01ED1FF2C6A4E34004BA157 /* Debug */,\n\t\t\t\tC01ED2002C6A4E34004BA157 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tC03C947E273CF3FF00AF66B5 /* Build configuration list for PBXNativeTarget \"IQKeyboardManagerSwiftExampleExtension\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC03C947C273CF3FF00AF66B5 /* Debug */,\n\t\t\t\tC03C947D273CF3FF00AF66B5 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tC0ACB11119CF10510057B571 /* Build configuration list for PBXNativeTarget \"IQKeyboardManagerSwiftExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC0ACB11219CF10510057B571 /* Debug */,\n\t\t\t\tC0ACB11319CF10510057B571 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tC0B63B951781FAB0008D3B64 /* Build configuration list for PBXProject \"IQKeyboardManagerSwiftExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC0B63BB71781FAB1008D3B64 /* Debug */,\n\t\t\t\tC0B63BB81781FAB1008D3B64 /* 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 = C0B63B921781FAB0008D3B64 /* Project object */;\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample.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": "Example/IQKeyboardManagerSwiftExample.xcodeproj/xcshareddata/xcschemes/IQKeyboardManagerSwift.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"2600\"\n   version = \"1.7\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\"\n      buildArchitectures = \"Automatic\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"C01ED1FA2C6A4E33004BA157\"\n               BuildableName = \"IQKeyboardManagerSwift_iOS.framework\"\n               BlueprintName = \"IQKeyboardManagerSwift-iOS\"\n               ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      shouldAutocreateTestPlan = \"YES\">\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C01ED1FA2C6A4E33004BA157\"\n            BuildableName = \"IQKeyboardManagerSwift_iOS.framework\"\n            BlueprintName = \"IQKeyboardManagerSwift-iOS\"\n            ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample.xcodeproj/xcshareddata/xcschemes/IQKeyboardManagerSwiftExample.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"2600\"\n   version = \"1.7\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\"\n      buildArchitectures = \"Automatic\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"C0ACB0F419CF104B0057B571\"\n               BuildableName = \"IQKeyboardManagerSwiftExampleSwift.app\"\n               BlueprintName = \"IQKeyboardManagerSwiftExample\"\n               ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      shouldAutocreateTestPlan = \"YES\">\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C0ACB0F419CF104B0057B571\"\n            BuildableName = \"IQKeyboardManagerSwiftExampleSwift.app\"\n            BlueprintName = \"IQKeyboardManagerSwiftExample\"\n            ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C0ACB0F419CF104B0057B571\"\n            BuildableName = \"IQKeyboardManagerSwiftExampleSwift.app\"\n            BlueprintName = \"IQKeyboardManagerSwiftExample\"\n            ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample.xcodeproj/xcshareddata/xcschemes/IQKeyboardManagerSwiftExampleExtension.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"2600\"\n   wasCreatedForAppExtension = \"YES\"\n   version = \"2.0\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\"\n      buildArchitectures = \"Automatic\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"C03C946C273CF3FF00AF66B5\"\n               BuildableName = \"IQKeyboardManagerSwiftExampleExtension.appex\"\n               BlueprintName = \"IQKeyboardManagerSwiftExampleExtension\"\n               ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"C0ACB0F419CF104B0057B571\"\n               BuildableName = \"IQKeyboardManagerSwiftExampleSwift.app\"\n               BlueprintName = \"IQKeyboardManagerSwiftExample\"\n               ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      shouldAutocreateTestPlan = \"YES\">\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"\"\n      selectedLauncherIdentifier = \"Xcode.IDEFoundation.Launcher.PosixSpawn\"\n      launchStyle = \"0\"\n      askForAppToLaunch = \"Yes\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\"\n      launchAutomaticallySubstyle = \"2\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C0ACB0F419CF104B0057B571\"\n            BuildableName = \"IQKeyboardManagerSwiftExampleSwift.app\"\n            BlueprintName = \"IQKeyboardManagerSwiftExample\"\n            ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      launchAutomaticallySubstyle = \"2\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C0ACB0F419CF104B0057B571\"\n            BuildableName = \"IQKeyboardManagerSwiftExampleSwift.app\"\n            BlueprintName = \"IQKeyboardManagerSwiftExample\"\n            ReferencedContainer = \"container:IQKeyboardManagerSwiftExample.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExample.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:IQKeyboardManagerSwiftExample.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExampleExtension/ActionViewController.swift",
    "content": "//\n//  ActionViewController.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\nimport MobileCoreServices\n\nclass ActionViewController: UIViewController {\n\n    @IBOutlet weak var imageView: UIImageView!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        // Get the item[s] we're handling from the extension context.\n        // For example, look for an image and place it into an image view.\n        // Replace this with something appropriate for the type[s] your extension supports.\n        var imageFound = false\n        let inputItems = self.extensionContext?.inputItems as? [NSExtensionItem]\n        for item in inputItems ?? [] {\n            let attachements = item.attachments ?? []\n            for provider in attachements where provider.hasItemConformingToTypeIdentifier(kUTTypeImage as String) {\n                // This is an image. We'll load it, then place it in our image view.\n                weak var weakImageView = self.imageView\n                let identifier = kUTTypeImage as String\n                provider.loadItem(forTypeIdentifier: identifier, options: nil, completionHandler: { (imageURL, _) in\n                    OperationQueue.main.addOperation {\n                        if let strongImageView = weakImageView {\n                            if let imageURL = imageURL as? URL, let data =  try? Data(contentsOf: imageURL) {\n                                strongImageView.image = UIImage(data: data)\n                            }\n                        }\n                    }\n                })\n                imageFound = true\n                break\n            }\n            if imageFound {\n                // We only handle one image, so stop looking for more.\n                break\n            }\n        }\n    }\n\n    @IBAction func done() {\n        // Return any edited content to the host app.\n        // This template doesn't do anything, so we just echo the passed in items.\n        self.extensionContext!.completeRequest(returningItems: self.extensionContext!.inputItems,\n                                               completionHandler: nil)\n    }\n\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExampleExtension/Base.lproj/MainInterface.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"13122.16\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"ObA-dk-sSI\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"13104.12\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Image-->\n        <scene sceneID=\"7MM-of-jgj\">\n            <objects>\n                <viewController title=\"Image\" id=\"ObA-dk-sSI\" customClass=\"ActionViewController\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"zMn-AG-sqS\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"528\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <navigationBar contentMode=\"scaleToFill\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"751\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NOA-Dm-cuz\">\n                                <items>\n                                    <navigationItem id=\"3HJ-uW-3hn\">\n                                        <barButtonItem key=\"leftBarButtonItem\" title=\"Done\" style=\"done\" id=\"WYi-yp-eM6\">\n                                            <connections>\n                                                <action selector=\"done\" destination=\"ObA-dk-sSI\" id=\"Qdu-qn-U6V\"/>\n                                            </connections>\n                                        </barButtonItem>\n                                    </navigationItem>\n                                </items>\n                            </navigationBar>\n                            <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleAspectFit\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9ga-4F-77Z\"/>\n                        </subviews>\n                        <color key=\"backgroundColor\" xcode11CocoaTouchSystemColor=\"systemBackgroundColor\" cocoaTouchSystemColor=\"whiteColor\"/>\n                        <constraints>\n                            <constraint firstItem=\"VVe-Uw-JpX\" firstAttribute=\"trailing\" secondItem=\"NOA-Dm-cuz\" secondAttribute=\"trailing\" id=\"A05-Pj-hrr\"/>\n                            <constraint firstItem=\"9ga-4F-77Z\" firstAttribute=\"top\" secondItem=\"NOA-Dm-cuz\" secondAttribute=\"bottom\" id=\"Fps-3D-QQW\"/>\n                            <constraint firstItem=\"NOA-Dm-cuz\" firstAttribute=\"leading\" secondItem=\"VVe-Uw-JpX\" secondAttribute=\"leading\" id=\"HxO-8t-aoh\"/>\n                            <constraint firstItem=\"VVe-Uw-JpX\" firstAttribute=\"trailing\" secondItem=\"9ga-4F-77Z\" secondAttribute=\"trailing\" id=\"Ozw-Hg-0yh\"/>\n                            <constraint firstItem=\"9ga-4F-77Z\" firstAttribute=\"leading\" secondItem=\"VVe-Uw-JpX\" secondAttribute=\"leading\" id=\"XH5-ld-ONA\"/>\n                            <constraint firstItem=\"VVe-Uw-JpX\" firstAttribute=\"bottom\" secondItem=\"9ga-4F-77Z\" secondAttribute=\"bottom\" id=\"eQg-nn-Zy4\"/>\n                            <constraint firstItem=\"NOA-Dm-cuz\" firstAttribute=\"top\" secondItem=\"VVe-Uw-JpX\" secondAttribute=\"top\" id=\"we0-1t-bgp\"/>\n                        </constraints>\n                        <viewLayoutGuide key=\"safeArea\" id=\"VVe-Uw-JpX\"/>\n                    </view>\n                    <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n                    <size key=\"freeformSize\" width=\"320\" height=\"528\"/>\n                    <connections>\n                        <outlet property=\"imageView\" destination=\"9ga-4F-77Z\" id=\"5y6-5w-9QO\"/>\n                        <outlet property=\"view\" destination=\"zMn-AG-sqS\" id=\"Qma-de-2ek\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"X47-rx-isc\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExampleExtension/IQKeyboardManagerSwiftExampleExtension.entitlements",
    "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>com.apple.security.app-sandbox</key>\n\t<true/>\n\t<key>com.apple.security.network.client</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExampleExtension/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>CFBundleDisplayName</key>\n\t<string>IQKeyboardManagerSwiftExample Extension</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>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>$(MARKETING_VERSION)</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>NSExtension</key>\n\t<dict>\n\t\t<key>NSExtensionAttributes</key>\n\t\t<dict>\n\t\t\t<key>NSExtensionActivationRule</key>\n\t\t\t<dict>\n\t\t\t\t<key>NSExtensionActivationSupportsImageWithMaxCount</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>NSExtensionActivationSupportsMovieWithMaxCount</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t</dict>\n\t\t\t<key>NSExtensionServiceAllowsFinderPreviewItem</key>\n\t\t\t<true/>\n\t\t\t<key>NSExtensionServiceAllowsTouchBarItem</key>\n\t\t\t<true/>\n\t\t\t<key>NSExtensionServiceFinderPreviewIconName</key>\n\t\t\t<string>NSActionTemplate</string>\n\t\t\t<key>NSExtensionServiceTouchBarBezelColorName</key>\n\t\t\t<string>TouchBarBezel</string>\n\t\t\t<key>NSExtensionServiceTouchBarIconName</key>\n\t\t\t<string>NSActionTemplate</string>\n\t\t</dict>\n\t\t<key>NSExtensionMainStoryboard</key>\n\t\t<string>MainInterface</string>\n\t\t<key>NSExtensionPointIdentifier</key>\n\t\t<string>com.apple.ui-services</string>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExampleExtension/Media.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Example/IQKeyboardManagerSwiftExampleExtension/Media.xcassets/TouchBarBezel.colorset/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  },\n  \"colors\" : [\n    {\n      \"idiom\" : \"mac\",\n      \"color\" : {\n        \"reference\" : \"systemPurpleColor\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "Example/Podfile",
    "content": "project \"IQKeyboardManagerSwiftExample.xcodeproj\"\n\ntarget \"IQKeyboardManagerSwiftExample\" do\n  use_frameworks!\n  platform :ios, \"15.0\"\n\n  pod \"SwiftLint\"\n  pod \"IQDropDownTextFieldSwift\"\n  pod \"IQKeyboardManagerSwift\", :path => \"../\"\n  pod \"RSKPlaceholderTextView\"\nend\n\n\n#target \"IQKeyboardManagerSwiftExampleExtension\" do\n#  platform :ios, \"13.0\"\n#\n#  pod \"SwiftLint\"\n#  pod \"IQKeyboardManagerSwift\", :path => \"../\"\n#\n#end\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift",
    "content": "//\n//  IQKeyboardAppearanceConfiguration.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objcMembers public final class IQKeyboardAppearanceConfiguration: NSObject {\n\n    /**\n    Override the keyboardAppearance for all textInputView. Default is NO.\n    */\n    public var overrideAppearance: Bool = false\n\n    /**\n    If overrideKeyboardAppearance is YES, then all the textInputView keyboardAppearance is set using this property.\n    */\n    public var appearance: UIKeyboardAppearance = .default\n}\n\n@available(*, unavailable, renamed: \"IQKeyboardAppearanceConfiguration\")\n@MainActor\n@objcMembers public final class IQKeyboardConfiguration: NSObject {}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift",
    "content": "//\n//  IQKeyboardAppearanceManager+Internal.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension IQKeyboardAppearanceManager {\n\n    func removeTextInputViewObserver() {\n        textInputViewObserver.unsubscribe(identifier: \"IQKeyboardAppearanceManager\")\n    }\n\n    func addTextInputViewObserver() {\n        textInputViewObserver.subscribe(identifier: \"IQKeyboardAppearanceManager\",\n                                        changeHandler: { [weak self] event, textInputView in\n            guard let self = self else { return }\n            switch event {\n            case .beginEditing:\n                guard self.keyboardConfiguration.overrideAppearance,\n                      textInputView.keyboardAppearance != self.keyboardConfiguration.appearance else { return }\n\n                textInputView.keyboardAppearance = self.keyboardConfiguration.appearance\n                textInputView.reloadInputViews()\n            case .endEditing:\n                break\n            }\n        })\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift",
    "content": "//\n//  IQKeyboardAppearanceManager.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQTextInputViewNotification\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objcMembers internal final class IQKeyboardAppearanceManager: NSObject {\n\n    let textInputViewObserver: IQTextInputViewNotification = .init()\n\n    /**\n    Configuration related to keyboard appearance\n    */\n    var keyboardConfiguration: IQKeyboardAppearanceConfiguration = .init()\n\n    public override init() {\n        super.init()\n\n        // Registering one time only\n        addTextInputViewObserver()\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift",
    "content": "//\n//  IQKeyboardManager+Appearance.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @MainActor\n    private struct AssociatedKeys {\n        static var appearanceManager: Int = 0\n    }\n\n    internal var appearanceManager: IQKeyboardAppearanceManager {\n        if let object = objc_getAssociatedObject(self, &AssociatedKeys.appearanceManager)\n            as? IQKeyboardAppearanceManager {\n            return object\n        }\n\n        let object: IQKeyboardAppearanceManager = .init()\n        objc_setAssociatedObject(self, &AssociatedKeys.appearanceManager,\n                                 object, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n\n        return object\n    }\n\n    /**\n     Configuration related to keyboard appearance\n     */\n    var keyboardConfiguration: IQKeyboardAppearanceConfiguration {\n        get { appearanceManager.keyboardConfiguration }\n        set { appearanceManager.keyboardConfiguration = newValue }\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift",
    "content": "//\n//  IQKeyboardManager+Appearance_Deprecated.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n// swiftlint:disable unused_setter_value\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, renamed: \"keyboardConfiguration.overrideAppearance\")\n    var overrideKeyboardAppearance: Bool {\n        get { false }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"keyboardConfiguration.appearance\")\n    var keyboardAppearance: UIKeyboardAppearance {\n        get { .default }\n        set { }\n    }\n}\n// swiftlint:enable unused_setter_value\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift",
    "content": "//\n//  IQActiveConfiguration.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\nimport IQKeyboardNotification\nimport IQTextInputViewNotification\nimport Combine\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal final class IQActiveConfiguration: NSObject {\n\n    private let keyboardObserver: IQKeyboardNotification = .init()\n    private let textInputViewObserver: IQTextInputViewNotification = .init()\n\n    private var changeObservers: [AnyHashable: ConfigurationCompletion] = [:]\n    var cancellable: Set<AnyCancellable> = []\n\n    enum Event: Int {\n        case hide\n        case show\n        case change\n\n        var name: String {\n            switch self {\n            case .hide:\n                return \"hide\"\n            case .show:\n                return \"show\"\n            case .change:\n                return \"change\"\n            }\n        }\n    }\n\n    private var lastEvent: Event = .hide\n\n    var rootConfiguration: IQRootControllerConfiguration?\n\n    var isReady: Bool {\n        if textInputViewInfo != nil,\n           let rootConfiguration = rootConfiguration {\n            return rootConfiguration.isReady\n        }\n        return false\n    }\n\n    override init() {\n        super.init()\n        addKeyboardObserver()\n        addTextInputViewObserver()\n    }\n\n    private func sendEvent() {\n\n        guard let rootConfiguration = rootConfiguration,\n              rootConfiguration.isReady else { return }\n\n        if keyboardInfo.isVisible {\n            if lastEvent == .hide {\n                self.notify(event: .show, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo)\n            } else {\n                self.notify(event: .change, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo)\n            }\n\n        } else if lastEvent != .hide {\n            if rootConfiguration.beginOrientation == rootConfiguration.currentOrientation {\n\n                // If interactive pop gesture is active then it manipulate viewController.view's frame\n                // To overcome with this, we have to do this workaround.\n                if rootConfiguration.isInteractiveGestureActive,\n                   let rootController: UIViewController = rootConfiguration.rootController {\n\n                    self.cancellable.forEach { $0.cancel() }\n                    self.cancellable.removeAll()\n\n                    // Saving current keyboard info and textInputView\n                    let keyboardInfo = keyboardObserver.keyboardInfo\n                    let textInputViewInfo = textInputViewObserver.textInputViewInfo\n\n                    // Start observing frame changes.\n                    // If pop successful, then we'll not get callbacks here again\n                    // If user cancels the pop, then we'll get frame as .zero at some time\n                    // Also the interactiveGesture becomes inactive (genuinely it's state is .possible)\n                    // At this moment.\n                    rootController.view.publisher(for: \\.frame)\n                        .removeDuplicates()\n                        .sink(receiveValue: { [weak self] frame in\n                            guard let self = self else { return }\n                            guard frame.origin == .zero,\n                                  !rootConfiguration.isInteractiveGestureActive else { return }\n\n                            self.cancellable.forEach { $0.cancel() }\n                            self.cancellable.removeAll()\n\n                            // Restore keyboard info and textInputViewInfo\n                            self.notify(event: .change, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo)\n                        }).store(in: &cancellable)\n\n                } else {\n                    self.notify(event: .hide, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo)\n                    self.rootConfiguration = nil\n                }\n\n            } else if rootConfiguration.hasChanged {\n                animate(alongsideTransition: {\n                    rootConfiguration.restore()\n                }, completion: nil)\n            }\n        }\n    }\n\n    private func updateRootController(textInputView: IQTextInputView?) {\n\n        guard let textInputView: UIView = textInputView,\n              let controller: UIViewController = textInputView.iq.parentContainerViewController() else {\n            if let rootConfiguration = rootConfiguration,\n               rootConfiguration.hasChanged {\n                animate(alongsideTransition: {\n                    rootConfiguration.restore()\n                }, completion: nil)\n            }\n            rootConfiguration = nil\n            return\n        }\n\n        let newConfiguration = IQRootControllerConfiguration(rootController: controller)\n\n        guard newConfiguration.rootController?.view.window != rootConfiguration?.rootController?.view.window ||\n                newConfiguration.beginOrientation != rootConfiguration?.beginOrientation else { return }\n\n        if rootConfiguration?.rootController != newConfiguration.rootController {\n\n            // If there was an old configuration but things are changed\n            if let rootConfiguration = rootConfiguration,\n               rootConfiguration.hasChanged {\n                animate(alongsideTransition: {\n                    rootConfiguration.restore()\n                }, completion: nil)\n            }\n        }\n\n        rootConfiguration = newConfiguration\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nextension IQActiveConfiguration {\n\n    var keyboardInfo: IQKeyboardInfo {\n        return keyboardObserver.keyboardInfo\n    }\n\n    private func addKeyboardObserver() {\n        keyboardObserver.subscribe(identifier: \"IQActiveConfiguration\", changeHandler: { [weak self] _, endFrame in\n\n            guard let self = self else { return }\n\n            guard self.keyboardObserver.oldKeyboardInfo.endFrame.height != endFrame.height else { return }\n\n            if let info = self.textInputViewInfo, self.keyboardInfo.isVisible {\n                if let rootConfiguration = self.rootConfiguration {\n                    let beginIsPortrait: Bool = rootConfiguration.beginOrientation.isPortrait\n                    let currentIsPortrait: Bool = rootConfiguration.currentOrientation.isPortrait\n                    if beginIsPortrait != currentIsPortrait {\n                        self.updateRootController(textInputView: info.textInputView)\n                    }\n                } else {\n                    self.updateRootController(textInputView: info.textInputView)\n                }\n            }\n\n            self.sendEvent()\n\n            // If interactive pop gesture is active then we don't want to remove this textField\n            if endFrame.height == 0,\n               !(self.rootConfiguration?.isInteractiveGestureActive ?? false) {\n                self.updateRootController(textInputView: nil)\n            }\n        })\n    }\n\n    public func animate(alongsideTransition transition: @escaping () -> Void, completion: (() -> Void)? = nil) {\n        keyboardObserver.animate(alongsideTransition: transition, completion: completion)\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nextension IQActiveConfiguration {\n\n    var textInputView: (any IQTextInputView)? {\n        guard let textInputView: UIView = textInputViewObserver.textInputView,\n              textInputView.iq.isAlertViewTextField() == false else {\n            return nil\n        }\n\n        return textInputViewObserver.textInputView\n    }\n\n    var textInputViewInfo: IQTextInputViewInfo? {\n        guard let textInputView: UIView = textInputView,\n              textInputView.iq.isAlertViewTextField() == false else {\n            return nil\n        }\n\n        return textInputViewObserver.textInputViewInfo\n    }\n\n    private func addTextInputViewObserver() {\n        textInputViewObserver.subscribe(identifier: \"IQActiveConfiguration\",\n                                        changeHandler: { [weak self] event, textInputView in\n\n            guard let self = self else { return }\n\n            guard (textInputView as UIView).iq.isAlertViewTextField() == false else {\n                return\n            }\n\n            if event == .beginEditing {\n                self.updateRootController(textInputView: textInputView)\n                self.sendEvent()\n            }\n        })\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nextension IQActiveConfiguration {\n\n    typealias ConfigurationCompletion = (_ event: Event,\n                                         _ keyboardInfo: IQKeyboardInfo,\n                                         _ textInputViewInfo: IQTextInputViewInfo?) -> Void\n\n    func subscribe(identifier: AnyHashable, changeHandler: @escaping ConfigurationCompletion) {\n        changeObservers[identifier] = changeHandler\n    }\n\n    func unsubscribe(identifier: AnyHashable) {\n        changeObservers[identifier] = nil\n    }\n\n    private func notify(event: Event, keyboardInfo: IQKeyboardInfo, textInputViewInfo: IQTextInputViewInfo?) {\n        lastEvent = event\n\n        for block in changeObservers.values {\n            block(event, keyboardInfo, textInputViewInfo)\n        }\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift",
    "content": "//\n//  IQRootControllerConfiguration.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal struct IQRootControllerConfiguration {\n\n    weak var rootController: UIViewController?\n    let beginOrigin: CGPoint\n    let beginSafeAreaInsets: UIEdgeInsets\n    let beginOrientation: UIInterfaceOrientation\n\n    init(rootController: UIViewController) {\n        self.rootController = rootController\n        beginOrigin = rootController.view.frame.origin\n        beginSafeAreaInsets = rootController.view.safeAreaInsets\n\n        let interfaceOrientation: UIInterfaceOrientation\n        if let scene = rootController.view.window?.windowScene {\n            interfaceOrientation = scene.interfaceOrientation\n        } else {\n            interfaceOrientation = .unknown\n        }\n\n        beginOrientation = interfaceOrientation\n    }\n\n    var currentOrientation: UIInterfaceOrientation {\n        let interfaceOrientation: UIInterfaceOrientation\n        if let scene = rootController?.view.window?.windowScene {\n            interfaceOrientation = scene.interfaceOrientation\n        } else {\n            interfaceOrientation = .unknown\n        }\n        return interfaceOrientation\n    }\n\n    var isReady: Bool {\n        return rootController?.view.window != nil\n    }\n\n    var hasChanged: Bool {\n        let origin: CGPoint = rootController?.view.frame.origin ?? .zero\n        return !origin.equalTo(beginOrigin)\n    }\n\n    var isInteractiveGestureActive: Bool {\n        guard let rootController: UIViewController = rootController,\n              let navigationController: UINavigationController = rootController.navigationController,\n              let interactiveGestureRecognizer = navigationController.interactivePopGestureRecognizer else {\n            return false\n        }\n        switch interactiveGestureRecognizer.state {\n        case .began, .changed:\n            return true\n        case .possible, .ended, .cancelled, .failed, .recognized:\n            // swiftlint:disable:next no_fallthrough_only\n            fallthrough\n        default:\n            return false\n        }\n    }\n    @discardableResult\n    func restore() -> Bool {\n        guard let rootController: UIViewController = rootController,\n              !rootController.view.frame.origin.equalTo(beginOrigin) else { return false }\n        // Setting it's new frame\n        var rect: CGRect = rootController.view.frame\n        rect.origin = beginOrigin\n        rootController.view.frame = rect\n        return true\n     }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift",
    "content": "//\n//  IQScrollViewConfiguration.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal struct IQScrollViewConfiguration {\n    let scrollView: UIScrollView\n    let startingContentOffset: CGPoint\n    let startingScrollIndicatorInsets: UIEdgeInsets\n    let startingContentInset: UIEdgeInsets\n\n    private let canRestoreContentOffset: Bool\n\n    init(scrollView: UIScrollView, canRestoreContentOffset: Bool) {\n        self.scrollView = scrollView\n        self.canRestoreContentOffset = canRestoreContentOffset\n\n        startingContentOffset = scrollView.contentOffset\n        startingContentInset = scrollView.contentInset\n        startingScrollIndicatorInsets = scrollView.verticalScrollIndicatorInsets\n    }\n\n    var hasChanged: Bool {\n        if scrollView.contentInset != self.startingContentInset {\n            return true\n        }\n\n        if canRestoreContentOffset,\n           scrollView.iq.restoreContentOffset,\n           !scrollView.contentOffset.equalTo(startingContentOffset) {\n            return true\n        }\n        return false\n    }\n\n    @discardableResult\n    func restore(for textInputView: (some IQTextInputView)?) -> Bool {\n        var success: Bool = false\n\n        if scrollView.contentInset != self.startingContentInset {\n            scrollView.contentInset = self.startingContentInset\n            scrollView.layoutIfNeeded() // (Bug ID: #1996)\n            success = true\n        }\n\n        if scrollView.verticalScrollIndicatorInsets != self.startingScrollIndicatorInsets {\n            scrollView.verticalScrollIndicatorInsets = self.startingScrollIndicatorInsets\n        }\n\n        if canRestoreContentOffset,\n           scrollView.iq.restoreContentOffset,\n           !scrollView.contentOffset.equalTo(startingContentOffset) {\n\n            //  (Bug ID: #1365, #1508, #1541)\n            let stackView: UIStackView?\n            if let textInputView: UIView = textInputView {\n                stackView = textInputView.iq.superviewOf(type: UIStackView.self,\n                                                         belowView: scrollView)\n            } else {\n                stackView = nil\n            }\n            // (Bug ID: #1901, #1996)\n            let animatedContentOffset: Bool = stackView != nil ||\n            scrollView is UICollectionView ||\n            scrollView is UITableView\n\n            if animatedContentOffset {\n                scrollView.setContentOffset(startingContentOffset, animated: UIView.areAnimationsEnabled)\n            } else {\n                scrollView.contentOffset = startingContentOffset\n            }\n            success = true\n        }\n\n        return success\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift",
    "content": "//\n//  IQKeyboardManager+Debug.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n// MARK: Debugging & Developer options\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @MainActor\n    private struct AssociatedKeys {\n        static var isDebuggingEnabled: Int = 0\n        static var logIndentation: Int = 0\n    }\n\n    var isDebuggingEnabled: Bool {\n        get {\n            return objc_getAssociatedObject(self, &AssociatedKeys.isDebuggingEnabled) as? Bool ?? false\n        }\n        set(newValue) {\n            objc_setAssociatedObject(self, &AssociatedKeys.isDebuggingEnabled,\n                                     newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n        }\n    }\n\n    private var logIndentation: Int {\n        get {\n            return objc_getAssociatedObject(self, &AssociatedKeys.logIndentation) as? Int ?? 0\n        }\n        set(newValue) {\n            objc_setAssociatedObject(self, &AssociatedKeys.logIndentation,\n                                     newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n        }\n    }\n\n    internal func showLog(_ logString: String, indentation: Int = 0) {\n\n        guard isDebuggingEnabled else {\n            return\n        }\n\n        if indentation < 0 {\n            logIndentation = max(0, logIndentation + indentation)\n        }\n\n        var preLog: String = \"IQKeyboardManager\"\n        for _ in 0 ... logIndentation {\n            preLog += \"|\\t\"\n        }\n\n        print(preLog + logString)\n\n        if indentation > 0 {\n            logIndentation += indentation\n        }\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift",
    "content": "//\n//  IQKeyboardManager+Deprecated.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n// swiftlint:disable unused_setter_value\n// swiftlint:disable line_length\n// swiftlint:disable type_name\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, renamed: \"keyboardDistance\")\n    var keyboardDistanceFromTextField: CGFloat {\n        get { fatalError() }\n        set { }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, message: \"This feature has been removed due to few compatibility problems\")\n    func registerTextFieldViewClass(_ aClass: UIView.Type,\n                                    didBeginEditingNotificationName: String,\n                                    didEndEditingNotificationName: String) {\n    }\n\n    @available(*, unavailable, message: \"This feature has been removed due to few compatibility problems\")\n    func unregisterTextFieldViewClass(_ aClass: UIView.Type,\n                                      didBeginEditingNotificationName: String,\n                                      didEndEditingNotificationName: String) {\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    typealias SizeBlock = (_ size: CGSize) -> Void\n\n    @available(*, unavailable, message: \"Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification\")\n    func registerKeyboardSizeChange(identifier: AnyHashable, sizeHandler: @escaping SizeBlock) {}\n\n    @available(*, unavailable, message: \"Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification\")\n    func unregisterKeyboardSizeChange(identifier: AnyHashable) {}\n\n    @available(*, unavailable, message: \"Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification\")\n    var keyboardShowing: Bool { false }\n\n    @available(*, unavailable, message: \"Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification\")\n    var keyboardFrame: CGRect { .zero }\n}\n\n@available(*, unavailable, renamed: \"IQKeyboardReturnManager\", message: \"Please use `IQKeyboardReturnManager` independently from https://github.com/hackiftekhar/IQKeyboardReturnManager\")\n@MainActor\n@objcMembers public final class IQKeyboardReturnKeyHandler: NSObject {}\n\n@available(*, unavailable, renamed: \"IQKeyboardNotification\", message: \"Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification\")\n@MainActor\n@objcMembers public final class IQKeyboardListener: NSObject {}\n\n@available(*, unavailable, renamed: \"IQTextInputViewNotification\", message: \"Please use `IQTextInputViewNotification` independently from https://github.com/hackiftekhar/IQTextInputViewNotification\")\n@MainActor\n@objcMembers public final class IQTextFieldViewListener: NSObject {}\n\n@available(*, unavailable, renamed: \"IQDeepResponderContainerView\", message: \"Please use `IQDeepResponderContainerView` class which is now part of `IQKeyboardToolbarManager` from https://github.com/hackiftekhar/IQKeyboardToolbarManager.\")\n@MainActor\n@objcMembers open class IQPreviousNextView: UIView {}\n\n@available(*, unavailable, message: \"Please use `IQKeyboardToolbar` independently https://github.com/hackiftekhar/IQKeyboardToolbar or through `IQKeyboardToolbarManager` from https://github.com/hackiftekhar/IQKeyboardToolbarManager\")\n@MainActor\n@objcMembers public final class IQToolbarPlaceholderConfigurationDeprecated: NSObject {\n    public var showPlaceholder: Bool = true\n    public var font: UIFont?\n    public var color: UIColor?\n    public var buttonColor: UIColor?\n    public override var accessibilityLabel: String? { didSet { } }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@available(*, unavailable, message: \"Please use `IQKeyboardToolbar` independently https://github.com/hackiftekhar/IQKeyboardToolbar or through `IQKeyboardToolbarManager` from https://github.com/hackiftekhar/IQKeyboardToolbarManager\")\n@MainActor\n@objcMembers public final class IQBarButtonItemConfigurationDeprecated: NSObject {\n\n    public init(systemItem: UIBarButtonItem.SystemItem, action: Selector? = nil) {\n        self.systemItem = systemItem\n        self.image = nil\n        self.title = nil\n        self.action = action\n        super.init()\n    }\n\n    public init(image: UIImage, action: Selector? = nil) {\n        self.systemItem = nil\n        self.image = image\n        self.title = nil\n        self.action = action\n        super.init()\n    }\n\n    public init(title: String, action: Selector? = nil) {\n        self.systemItem = nil\n        self.image = nil\n        self.title = title\n        self.action = action\n        super.init()\n    }\n\n    public let systemItem: UIBarButtonItem.SystemItem?\n    public let image: UIImage?\n    public let title: String?\n    public var action: Selector?\n    public override var accessibilityLabel: String? { didSet { } }\n}\n\n@available(*, unavailable, message: \"Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager\")\n@objc public enum IQAutoToolbarManageBehaviorDeprecated: Int {\n    case bySubviews\n    case byTag\n    case byPosition\n}\n\n@available(*, unavailable, message: \"Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager\")\n@objc public enum IQPreviousNextDisplayModeDeprecated: Int {\n    case `default`\n    case alwaysHide\n    case alwaysShow\n}\n\n@available(*, unavailable, message: \"Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager\")\n@MainActor\n@objcMembers public final class IQToolbarConfiguration: NSObject {\n\n    public var useTextInputViewTintColor: Bool = false\n    public var tintColor: UIColor?\n    public var barTintColor: UIColor?\n    public var previousNextDisplayMode: IQPreviousNextDisplayModeDeprecated = .default\n    public var manageBehavior: IQAutoToolbarManageBehaviorDeprecated = .bySubviews\n    public var previousBarButtonConfiguration: IQBarButtonItemConfigurationDeprecated?\n    public var nextBarButtonConfiguration: IQBarButtonItemConfigurationDeprecated?\n    public var doneBarButtonConfiguration: IQBarButtonItemConfigurationDeprecated?\n    public let placeholderConfiguration: IQToolbarPlaceholderConfigurationDeprecated = .init()\n}\n\n// swiftlint:enable line_length\n// swiftlint:enable unused_setter_value\n// swiftlint:enable type_name\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift",
    "content": "//\n//  IQKeyboardManager+ActiveConfiguration.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\nimport Combine\n\n// MARK: UIKeyboard Notifications\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension IQKeyboardManager {\n\n    func addActiveConfigurationObserver() {\n        activeConfiguration.subscribe(identifier: \"IQKeyboardManager\", changeHandler: { [weak self] event, _, _ in\n            guard let self = self else { return }\n\n            switch event {\n            case .show:\n                self.handleKeyboardTextInputViewVisible()\n            case .change:\n                self.handleKeyboardTextInputViewChanged()\n            case .hide:\n                self.handleKeyboardTextInputViewHide()\n            }\n        })\n    }\n\n    private func handleKeyboardTextInputViewVisible() {\n\n        setupTextInputView()\n\n        if privateIsEnabled() {\n            adjustPosition()\n        } else {\n            restorePosition()\n        }\n    }\n\n    private func handleKeyboardTextInputViewChanged() {\n\n        setupTextInputView()\n\n        if privateIsEnabled() {\n            adjustPosition()\n        } else {\n            restorePosition()\n        }\n    }\n\n    private func handleKeyboardTextInputViewHide() {\n\n        self.restorePosition()\n        self.banishTextInputViewSetup()\n\n        self.lastScrollViewConfiguration = nil\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension IQKeyboardManager {\n\n    func setupTextInputView() {\n\n        guard let textInputView = activeConfiguration.textInputView else {\n            return\n        }\n\n        if let startingConfiguration = startingTextViewConfiguration,\n           startingConfiguration.hasChanged {\n\n            if startingConfiguration.scrollView.contentInset != startingConfiguration.startingContentInset {\n                showLog(\"\"\"\n                Restoring textView.contentInset to: \\(startingConfiguration.startingContentInset)\n                \"\"\")\n            }\n\n            activeConfiguration.animate(alongsideTransition: {\n                startingConfiguration.restore(for: textInputView)\n            })\n        }\n        startingTextViewConfiguration = nil\n    }\n\n    func banishTextInputViewSetup() {\n\n        guard let textInputView = activeConfiguration.textInputView else {\n            return\n        }\n\n        if let startingConfiguration = startingTextViewConfiguration,\n           startingConfiguration.hasChanged {\n\n            if startingConfiguration.scrollView.contentInset != startingConfiguration.startingContentInset {\n                showLog(\"\"\"\n                Restoring textView.contentInset to: \\(startingConfiguration.startingContentInset)\n                \"\"\")\n            }\n\n            activeConfiguration.animate(alongsideTransition: {\n                startingConfiguration.restore(for: textInputView)\n            })\n        }\n        startingTextViewConfiguration = nil\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift",
    "content": "//\n//  IQKeyboardManager+Internal.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension IQKeyboardManager {\n\n    func privateIsEnabled() -> Bool {\n\n        guard let textInputView: any IQTextInputView = activeConfiguration.textInputView else {\n            return isEnabled\n        }\n\n        switch textInputView.internalEnableMode {\n        case .default:\n            guard var controller = (textInputView as UIView).iq.viewContainingController() else {\n                return isEnabled\n            }\n\n            if textInputView is UISearchTextField {\n                if let navController: UINavigationController = controller as? UINavigationController,\n                   let topController: UIViewController = navController.topViewController {\n                    controller = topController\n                }\n\n                // Not adjusting for searchTextField inside searchController.\n                if controller.navigationItem.searchController?.searchBar.searchTextField == textInputView {\n                    return false\n                }\n            }\n\n            // If viewController is in enabledDistanceHandlingClasses, then assuming it's enabled.\n            let isWithEnabledClass: Bool = enabledDistanceHandlingClasses.contains(where: { controller.isKind(of: $0) })\n            var isEnabled: Bool = isEnabled || isWithEnabledClass\n\n            if isEnabled {\n                // If viewController is in disabledDistanceHandlingClasses,\n                // then assuming it's disabled.\n                if disabledDistanceHandlingClasses.contains(where: { controller.isKind(of: $0) }) {\n                    isEnabled = false\n                } else {\n                    // Special Controllers\n                    let classNameString: String = \"\\(type(of: controller.self))\"\n\n                    // _UIAlertControllerTextFieldViewController\n                    if classNameString.contains(\"UIAlertController\"),\n                       classNameString.hasSuffix(\"TextFieldViewController\") {\n                        isEnabled = false\n                    }\n                }\n            }\n\n            return isEnabled\n        case .enabled:\n            return true\n        case .disabled:\n            return false\n        @unknown default:\n            return false\n        }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nfileprivate extension IQTextInputView {\n    var internalEnableMode: IQEnableMode {\n        return iq.enableMode\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift",
    "content": "//\n//  IQKeyboardManager+Position.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n// swiftlint:disable file_length\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    private typealias IQLayoutGuide = (top: CGFloat, bottom: CGFloat)\n\n    @MainActor\n    private struct AssociatedKeys {\n        static var movedDistance: Int = 0\n        static var movedDistanceChanged: Int = 0\n        static var lastScrollViewConfiguration: Int = 0\n        static var startingTextViewConfiguration: Int = 0\n        static var activeConfiguration: Int = 0\n    }\n\n    /**\n     moved distance to the top used to maintain distance between keyboard and textInputView.\n     Most of the time this will be a positive value.\n     */\n    private(set) var movedDistance: CGFloat {\n        get {\n            return objc_getAssociatedObject(self, &AssociatedKeys.movedDistance) as? CGFloat ?? 0.0\n        }\n        set(newValue) {\n            objc_setAssociatedObject(self, &AssociatedKeys.movedDistance, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            movedDistanceChanged?(movedDistance)\n        }\n    }\n\n    /**\n    Will be called then movedDistance will be changed\n     */\n    var movedDistanceChanged: ((CGFloat) -> Void)? {\n        get {\n            return objc_getAssociatedObject(self, &AssociatedKeys.movedDistanceChanged) as? ((CGFloat) -> Void)\n        }\n        set(newValue) {\n            objc_setAssociatedObject(self, &AssociatedKeys.movedDistanceChanged,\n                                     newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            movedDistanceChanged?(movedDistance)\n        }\n    }\n\n    /** Variable to save lastScrollView that was scrolled. */\n    @nonobjc\n    internal var lastScrollViewConfiguration: IQScrollViewConfiguration? {\n        get {\n            return objc_getAssociatedObject(self,\n                                            &AssociatedKeys.lastScrollViewConfiguration) as? IQScrollViewConfiguration\n        }\n        set(newValue) {\n            objc_setAssociatedObject(self, &AssociatedKeys.lastScrollViewConfiguration,\n                                     newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n        }\n    }\n\n    /** used to adjust contentInset of UITextView. */\n    @nonobjc\n    internal var startingTextViewConfiguration: IQScrollViewConfiguration? {\n        get {\n            return objc_getAssociatedObject(self,\n                                            &AssociatedKeys.startingTextViewConfiguration) as? IQScrollViewConfiguration\n        }\n        set(newValue) {\n            objc_setAssociatedObject(self, &AssociatedKeys.startingTextViewConfiguration,\n                                     newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n        }\n    }\n\n    internal func applicationDidBecomeActive(_ notification: Notification) {\n\n        guard privateIsEnabled(),\n              activeConfiguration.keyboardInfo.isVisible,\n              activeConfiguration.isReady else {\n            return\n        }\n        adjustPosition()\n    }\n\n    /* Adjusting RootViewController's frame according to interface orientation. */\n    // swiftlint:disable function_body_length\n    internal func adjustPosition() {\n\n        guard UIApplication.shared.applicationState == .active,\n              let textInputView: any IQTextInputView = activeConfiguration.textInputView,\n              let superview: UIView = textInputView.superview,\n              let rootConfiguration = activeConfiguration.rootConfiguration,\n              let rootController: UIViewController = rootConfiguration.rootController,\n              let window: UIWindow = rootController.view.window else {\n            return\n        }\n\n        showLog(\">>>>> \\(#function) started >>>>>\", indentation: 1)\n\n        defer {\n            showLog(\"<<<<< \\(#function) ended <<<<<\", indentation: -1)\n        }\n\n        let textInputViewRectInWindow: CGRect = superview.convert(textInputView.frame, to: window)\n        let textInputViewRectInRootSuperview: CGRect = superview.convert(textInputView.frame,\n                                                                         to: rootController.view.superview)\n\n        //  Getting RootViewOrigin.\n        let rootViewOrigin: CGPoint = rootController.view.frame.origin\n\n        let keyboardDistance: CGFloat = getSpecialTextInputViewDistance(textInputView: textInputView)\n\n        let kbSize: CGSize = Self.getKeyboardSize(keyboardDistance: keyboardDistance,\n                                                  keyboardFrame: activeConfiguration.keyboardInfo.endFrame,\n                                                  safeAreaInsets: rootConfiguration.beginSafeAreaInsets,\n                                                  windowFrame: window.frame)\n        let originalKbSize: CGSize = activeConfiguration.keyboardInfo.endFrame.size\n\n        let isScrollableTextInputView: Bool\n\n        if let textInputView: UIScrollView = textInputView as? UITextView {\n            isScrollableTextInputView = textInputView.isScrollEnabled\n        } else {\n            isScrollableTextInputView = false\n        }\n\n        let layoutGuide: IQLayoutGuide = Self.getLayoutGuides(rootController: rootController, window: window,\n                                                              isScrollableTextInputView: isScrollableTextInputView)\n\n        var superScrollView: UIScrollView?\n        var superView: UIScrollView? = (textInputView as UIView).iq.superviewOf(type: UIScrollView.self)\n\n        // Getting UIScrollView whose scrolling is enabled.    //  (Bug ID: #285)\n        while let view: UIScrollView = superView {\n\n            if view.isScrollEnabled, !view.iq.ignoreScrollingAdjustment {\n                superScrollView = view\n                break\n            } else {\n                //  Getting it's superScrollView.   //  (Enhancement ID: #21, #24)\n                superView = view.iq.superviewOf(type: UIScrollView.self)\n            }\n        }\n\n        //  Move positive = textInputView is hidden.\n        //  Move negative = textInputView is showing.\n        //  Calculating move position.\n        var moveUp: CGFloat = Self.getMoveUpDistance(keyboardSize: kbSize,\n                                                     layoutGuide: layoutGuide,\n                                                     textInputViewRectInRootSuperview: textInputViewRectInRootSuperview,\n                                                     textInputViewRectInWindow: textInputViewRectInWindow,\n                                                     windowFrame: window.frame)\n\n        showLog(\"Need to move: \\(moveUp), will be moving \\(moveUp < 0 ? \"down\" : \"up\")\")\n\n\n        setupActiveScrollViewConfiguration(superScrollView: superScrollView, textInputView: textInputView)\n\n        //  Special case for ScrollView.\n        //  If we found lastScrollView then setting it's contentOffset to show textInputView.\n        if let lastScrollViewConfiguration: IQScrollViewConfiguration  = lastScrollViewConfiguration {\n            adjustScrollViewContentOffsets(moveUp: &moveUp, textInputView: textInputView,\n                                           lastScrollViewConfiguration: lastScrollViewConfiguration,\n                                           rootSuperview: rootController.view.superview, layoutGuide: layoutGuide,\n                                           textInputViewRectInRootSuperview: textInputViewRectInRootSuperview,\n                                           isScrollableTextInputView: isScrollableTextInputView, window: window,\n                                           kbSize: kbSize, keyboardDistance: keyboardDistance,\n                                           rootBeginSafeAreaInsets: rootConfiguration.beginSafeAreaInsets)\n        }\n\n        // Special case for UITextView\n        // (Readjusting textInputView.contentInset when textInputView hight is too big to fit on screen)\n        // _lastScrollView If not having inside any scrollView, now contentInset manages the full screen textInputView.\n        // If is a UITextView type\n        if isScrollableTextInputView, let textInputView = textInputView as? UITextView {\n\n            adjustTextInputViewContentInset(window: window, originalKbSize: originalKbSize,\n                                            rootSuperview: rootController.view.superview,\n                                            layoutGuide: layoutGuide,\n                                            textInputView: textInputView)\n        }\n\n        adjustRootController(moveUp: moveUp, rootViewOrigin: rootViewOrigin, originalKbSize: originalKbSize,\n                             rootController: rootController, rootBeginOrigin: rootConfiguration.beginOrigin)\n    }\n    // swiftlint:enable function_body_length\n\n    internal func restorePosition() {\n\n        //  Setting rootViewController frame to it's original position. //  (Bug ID: #18)\n        guard let configuration: IQRootControllerConfiguration = activeConfiguration.rootConfiguration else {\n            return\n        }\n        showLog(\">>>>> \\(#function) started >>>>>\", indentation: 1)\n\n        defer {\n            showLog(\"<<<<< \\(#function) ended <<<<<\", indentation: -1)\n        }\n\n        activeConfiguration.animate(alongsideTransition: {\n            if configuration.hasChanged {\n                let classNameString: String = \"\\(type(of: configuration.rootController.self))\"\n                self.showLog(\"Restoring \\(classNameString) origin to: \\(configuration.beginOrigin)\")\n            }\n            configuration.restore()\n\n            // Animating content if needed (Bug ID: #204)\n            if self.layoutIfNeededOnUpdate {\n                // Animating content (Bug ID: #160)\n                configuration.rootController?.view.setNeedsLayout()\n                configuration.rootController?.view.layoutIfNeeded()\n            }\n        })\n        // Restoring the contentOffset of the lastScrollView\n        if let lastConfiguration: IQScrollViewConfiguration = lastScrollViewConfiguration {\n            let textInputView: (any IQTextInputView)? = activeConfiguration.textInputView\n\n            restoreScrollViewConfigurationIfChanged(configuration: lastConfiguration, textInputView: textInputView)\n\n            activeConfiguration.animate(alongsideTransition: {\n                // This is temporary solution. Have to implement the save and restore scrollView state\n                self.restoreScrollViewContentOffset(superScrollView: lastConfiguration.scrollView,\n                                                    textInputView: textInputView)\n            })\n        }\n\n        self.movedDistance = 0\n    }\n}\n\n// swiftlint:disable function_parameter_count\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nprivate extension IQKeyboardManager {\n\n    func getSpecialTextInputViewDistance(textInputView: some IQTextInputView) -> CGFloat {\n        // Maintain keyboardDistance\n        let specialKeyboardDistance: CGFloat\n\n        if let searchBar: UISearchBar = textInputView.iq.textFieldSearchBar() {\n            specialKeyboardDistance = searchBar.iq.distanceFromKeyboard\n        } else {\n            specialKeyboardDistance = textInputView.iq.distanceFromKeyboard\n        }\n\n        if specialKeyboardDistance == UIView.defaultKeyboardDistance {\n            return keyboardDistance\n        } else {\n            return specialKeyboardDistance\n        }\n    }\n\n    static func getKeyboardSize(keyboardDistance: CGFloat, keyboardFrame: CGRect,\n                                safeAreaInsets: UIEdgeInsets, windowFrame: CGRect) -> CGSize {\n        let kbSize: CGSize\n        var kbFrame: CGRect = keyboardFrame\n\n        kbFrame.origin.y -= keyboardDistance\n        kbFrame.size.height += keyboardDistance\n\n        kbFrame.origin.y -= safeAreaInsets.bottom\n        kbFrame.size.height += safeAreaInsets.bottom\n\n        // (Bug ID: #469) (Bug ID: #381) (Bug ID: #1506)\n        // Calculating actual keyboard covered size respect to window,\n        // keyboard frame may be different when hardware keyboard is attached\n        let intersectRect: CGRect = kbFrame.intersection(windowFrame)\n\n        if intersectRect.isNull {\n            kbSize = CGSize(width: kbFrame.size.width, height: 0)\n        } else {\n            kbSize = intersectRect.size\n        }\n        return kbSize\n    }\n\n    static private func getLayoutGuides(rootController: UIViewController, window: UIWindow,\n                                        isScrollableTextInputView: Bool) -> IQLayoutGuide {\n        let navigationBarAreaHeight: CGFloat\n        if let navigationController: UINavigationController = rootController.navigationController {\n            navigationBarAreaHeight = navigationController.navigationBar.frame.maxY\n        } else {\n            let statusBarHeight: CGFloat = window.windowScene?.statusBarManager?.statusBarFrame.height ?? 0\n            navigationBarAreaHeight = statusBarHeight\n        }\n\n        let directionalLayoutMargin: NSDirectionalEdgeInsets = rootController.view.directionalLayoutMargins\n        let topLayoutGuide: CGFloat = CGFloat.maximum(navigationBarAreaHeight, directionalLayoutMargin.top)\n\n        // Validation of textInputView for case where there is a tab bar\n        // at the bottom or running on iPhone X and textInputView is at the bottom.\n        let bottomLayoutGuide: CGFloat = isScrollableTextInputView ? 0 : directionalLayoutMargin.bottom\n        return (topLayoutGuide, bottomLayoutGuide)\n    }\n\n    static private func getMoveUpDistance(keyboardSize: CGSize,\n                                          layoutGuide: IQLayoutGuide,\n                                          textInputViewRectInRootSuperview: CGRect,\n                                          textInputViewRectInWindow: CGRect,\n                                          windowFrame: CGRect) -> CGFloat {\n\n        //  Move positive = textInputView is hidden.\n        //  Move negative = textInputView is showing.\n        //  Calculating move position.\n        let visibleHeight: CGFloat = windowFrame.height-keyboardSize.height\n\n        let topMovement: CGFloat = textInputViewRectInRootSuperview.minY-layoutGuide.top\n        let bottomMovement: CGFloat = textInputViewRectInWindow.maxY - visibleHeight + layoutGuide.bottom\n        var moveUp: CGFloat = CGFloat.minimum(topMovement, bottomMovement)\n        moveUp = CGFloat(Int(moveUp))\n        return moveUp\n    }\n\n    func setupActiveScrollViewConfiguration(superScrollView: UIScrollView?, textInputView: some IQTextInputView) {\n        // If there was a lastScrollView.    //  (Bug ID: #34)\n        guard let lastConfiguration: IQScrollViewConfiguration = lastScrollViewConfiguration else {\n            if let superScrollView: UIScrollView = superScrollView {\n                // If there was no lastScrollView and we found a current scrollView. then setting it as lastScrollView.\n                let configuration = IQScrollViewConfiguration(scrollView: superScrollView,\n                                                              canRestoreContentOffset: true)\n                self.lastScrollViewConfiguration = configuration\n                showLog(\"\"\"\n                        Saving ScrollView New contentInset: \\(configuration.startingContentInset)\n                        and contentOffset: \\(configuration.startingContentOffset)\n                        \"\"\")\n            }\n            return\n        }\n\n        // If we can't find current superScrollView, then setting lastScrollView to it's original form.\n        if superScrollView == nil {\n            restoreScrollViewConfigurationIfChanged(configuration: lastConfiguration,\n                                                    textInputView: textInputView)\n            self.lastScrollViewConfiguration = nil\n        } else if superScrollView != lastConfiguration.scrollView {\n            // If both scrollView's are different,\n            // then reset lastScrollView to it's original frame and setting current scrollView as last scrollView.\n            restoreScrollViewConfigurationIfChanged(configuration: lastConfiguration,\n                                                    textInputView: textInputView)\n\n            if let superScrollView = superScrollView {\n                let configuration = IQScrollViewConfiguration(scrollView: superScrollView,\n                                                              canRestoreContentOffset: true)\n                self.lastScrollViewConfiguration = configuration\n                showLog(\"\"\"\n                            Saving ScrollView New contentInset: \\(configuration.startingContentInset)\n                            and contentOffset: \\(configuration.startingContentOffset)\n                            \"\"\")\n            } else {\n                self.lastScrollViewConfiguration = nil\n            }\n        }\n        // Else the case where superScrollView == lastScrollView means we are on same scrollView\n        // after switching to different textInputView. So doing nothing, going ahead\n    }\n\n    func restoreScrollViewConfigurationIfChanged(configuration: IQScrollViewConfiguration,\n                                                 textInputView: (some IQTextInputView)?) {\n        guard configuration.hasChanged else { return }\n        if configuration.scrollView.contentInset != configuration.startingContentInset {\n            showLog(\"Restoring contentInset to: \\(configuration.startingContentInset)\")\n        }\n\n        if configuration.scrollView.iq.restoreContentOffset,\n           !configuration.scrollView.contentOffset.equalTo(configuration.startingContentOffset) {\n            showLog(\"Restoring contentOffset to: \\(configuration.startingContentOffset)\")\n        }\n\n        activeConfiguration.animate(alongsideTransition: {\n            configuration.restore(for: textInputView)\n        })\n    }\n\n    // swiftlint:disable function_body_length\n    private func adjustScrollViewContentOffsets(moveUp: inout CGFloat, textInputView: some IQTextInputView,\n                                                lastScrollViewConfiguration: IQScrollViewConfiguration,\n                                                rootSuperview: UIView?,\n                                                layoutGuide: IQLayoutGuide,\n                                                textInputViewRectInRootSuperview: CGRect,\n                                                isScrollableTextInputView: Bool, window: UIWindow,\n                                                kbSize: CGSize, keyboardDistance: CGFloat,\n                                                rootBeginSafeAreaInsets: UIEdgeInsets) {\n        // Saving\n        var lastView: UIView = textInputView\n        var superScrollView: UIScrollView? = lastScrollViewConfiguration.scrollView\n\n        while let scrollView: UIScrollView = superScrollView {\n\n            var isContinue: Bool = false\n\n            if moveUp > 0 {\n                isContinue = moveUp > (-scrollView.contentOffset.y - scrollView.contentInset.top)\n\n            } else if let tableView: UITableView = scrollView.iq.superviewOf(type: UITableView.self) {\n                // Special treatment for UITableView due to their cell reusing logic\n\n                isContinue = scrollView.contentOffset.y > 0\n\n                Self.handleTableViewCase(moveUp: &moveUp, isContinue: isContinue, textInputView: textInputView,\n                                         tableView: tableView, rootSuperview: rootSuperview, layoutGuide: layoutGuide)\n            } else if let collectionView = scrollView.iq.superviewOf(type: UICollectionView.self) {\n                // Special treatment for UICollectionView due to their cell reusing logic\n\n                isContinue = scrollView.contentOffset.y > 0\n\n                Self.handleCollectionViewCase(moveUp: &moveUp, isContinue: isContinue,\n                                              textInputView: textInputView, collectionView: collectionView,\n                                              rootSuperview: rootSuperview, layoutGuide: layoutGuide)\n            } else {\n                isContinue = textInputViewRectInRootSuperview.minY < layoutGuide.top\n\n                if isContinue {\n                    moveUp = CGFloat.minimum(0, textInputViewRectInRootSuperview.minY - layoutGuide.top)\n                }\n            }\n\n            // Looping in upper hierarchy until we don't found any scrollView\n            // in it's upper hierarchy till UIWindow object.\n            if isContinue {\n\n                var tempScrollView: UIScrollView? = scrollView.iq.superviewOf(type: UIScrollView.self)\n                var nextScrollView: UIScrollView?\n                while let view: UIScrollView = tempScrollView {\n\n                    if view.isScrollEnabled, !view.iq.ignoreScrollingAdjustment {\n                        nextScrollView = view\n                        break\n                    } else {\n                        tempScrollView = view.iq.superviewOf(type: UIScrollView.self)\n                    }\n                }\n\n                // Getting lastViewRect.\n                if let lastViewRect: CGRect = lastView.superview?.convert(lastView.frame, to: scrollView) {\n\n                    // Calculating the expected Y offset from move and scrollView's contentOffset.\n                    let minimumMovement: CGFloat = CGFloat.minimum(scrollView.contentOffset.y, -moveUp)\n                    var suggestedOffsetY: CGFloat = scrollView.contentOffset.y - minimumMovement\n\n                    // Rearranging the expected Y offset according to the view.\n                    suggestedOffsetY = CGFloat.minimum(suggestedOffsetY, lastViewRect.minY)\n\n                    updateSuggestedOffsetYAndMoveUp(suggestedOffsetY: &suggestedOffsetY, moveUp: &moveUp,\n                                                    isScrollableTextInputView: isScrollableTextInputView,\n                                                    nextScrollView: nextScrollView, textInputView: textInputView,\n                                                    window: window, layoutGuide: layoutGuide,\n                                                    scrollViewContentOffset: scrollView.contentOffset)\n\n                    let newContentOffset: CGPoint = CGPoint(x: scrollView.contentOffset.x, y: suggestedOffsetY)\n\n                    if !scrollView.contentOffset.equalTo(newContentOffset) {\n\n                        updateScrollViewContentOffset(scrollView: scrollView, newContentOffset: newContentOffset,\n                                                      moveUp: moveUp, textInputView: textInputView)\n                    }\n                }\n\n                // Getting next lastView & superScrollView.\n                lastView = scrollView\n                superScrollView = nextScrollView\n            } else {\n                moveUp = 0\n                break\n            }\n        }\n\n        adjustScrollViewContentInset(lastScrollViewConfiguration: lastScrollViewConfiguration, window: window,\n                                     kbSize: kbSize, keyboardDistance: keyboardDistance,\n                                     rootBeginSafeAreaInsets: rootBeginSafeAreaInsets)\n    }\n    // swiftlint:enable function_body_length\n\n    private static func handleTableViewCase(moveUp: inout CGFloat, isContinue: Bool,\n                                            textInputView: some IQTextInputView, tableView: UITableView,\n                                            rootSuperview: UIView?, layoutGuide: IQLayoutGuide) {\n        guard isContinue,\n              let tableCell: UITableViewCell = textInputView.iq.superviewOf(type: UITableViewCell.self),\n              let indexPath: IndexPath = tableView.indexPath(for: tableCell),\n              let previousIndexPath: IndexPath = tableView.previousIndexPath(of: indexPath) else { return }\n\n        let previousCellRect: CGRect = tableView.rectForRow(at: previousIndexPath)\n        guard !previousCellRect.isEmpty else { return }\n\n        let previousCellRectInRootSuperview: CGRect = tableView.convert(previousCellRect,\n                                                                        to: rootSuperview)\n\n        moveUp = CGFloat.minimum(0, previousCellRectInRootSuperview.maxY - layoutGuide.top)\n    }\n\n    private static func handleCollectionViewCase(moveUp: inout CGFloat, isContinue: Bool,\n                                                 textInputView: some IQTextInputView, collectionView: UICollectionView,\n                                                 rootSuperview: UIView?,\n                                                 layoutGuide: IQLayoutGuide) {\n        guard isContinue,\n              let collectionCell = textInputView.iq.superviewOf(type: UICollectionViewCell.self),\n              let indexPath: IndexPath = collectionView.indexPath(for: collectionCell),\n              let previousIndexPath: IndexPath = collectionView.previousIndexPath(of: indexPath),\n              let attributes = collectionView.layoutAttributesForItem(at: previousIndexPath) else { return }\n\n        let previousCellRect: CGRect = attributes.frame\n        guard !previousCellRect.isEmpty else { return }\n        let previousCellRectInRootSuperview: CGRect = collectionView.convert(previousCellRect,\n                                                                             to: rootSuperview)\n\n        moveUp = CGFloat.minimum(0, previousCellRectInRootSuperview.maxY - layoutGuide.top)\n    }\n\n    private func updateSuggestedOffsetYAndMoveUp(suggestedOffsetY: inout CGFloat, moveUp: inout CGFloat,\n                                                 isScrollableTextInputView: Bool, nextScrollView: UIScrollView?,\n                                                 textInputView: some IQTextInputView, window: UIWindow,\n                                                 layoutGuide: IQLayoutGuide,\n                                                 scrollViewContentOffset: CGPoint) {\n        // If is a UITextView type\n        // nextScrollView == nil\n        // If processing scrollView is last scrollView in upper hierarchy\n        // (there is no other scrollView in upper hierarchy.)\n        //\n        // suggestedOffsetY >= 0\n        // suggestedOffsetY must be >= 0 in order to keep distance from navigationBar (Bug ID: #92)\n        guard isScrollableTextInputView,\n              nextScrollView == nil,\n              suggestedOffsetY >= 0,\n              let superview: UIView = textInputView.superview else {\n            // Subtracting the Y offset from the move variable,\n            // because we are going to change scrollView's contentOffset.y to suggestedOffsetY.\n            moveUp -= (suggestedOffsetY-scrollViewContentOffset.y)\n            return\n        }\n\n        let currentTextInputViewRect: CGRect = superview.convert(textInputView.frame,\n                                                                 to: window)\n\n        // Calculating expected fix distance which needs to be managed from navigation bar\n        let expectedFixDistance: CGFloat = currentTextInputViewRect.minY - layoutGuide.top\n\n        // Now if expectedOffsetY (scrollView.contentOffset.y + expectedFixDistance)\n        // is lower than current suggestedOffsetY, which means we're in a position where\n        // navigationBar up and hide, then reducing suggestedOffsetY with expectedOffsetY\n        // (scrollView.contentOffset.y + expectedFixDistance)\n        let expectedOffsetY: CGFloat = scrollViewContentOffset.y + expectedFixDistance\n        suggestedOffsetY = CGFloat.minimum(suggestedOffsetY, expectedOffsetY)\n\n        // Setting move to 0 because now we don't want to move any view anymore\n        // (All will be managed by our contentInset logic.\n        moveUp = 0\n    }\n\n    func updateScrollViewContentOffset(scrollView: UIScrollView, newContentOffset: CGPoint,\n                                       moveUp: CGFloat, textInputView: some IQTextInputView) {\n        showLog(\"\"\"\n                                    old contentOffset: \\(scrollView.contentOffset)\n                                    new contentOffset: \\(newContentOffset)\n                                    \"\"\")\n        showLog(\"Remaining Move: \\(moveUp)\")\n\n        // Getting problem while using `setContentOffset:animated:`, So I used animation API.\n        activeConfiguration.animate(alongsideTransition: {\n\n            //  (Bug ID: #1365, #1508, #1541)\n            let stackView: UIStackView? = textInputView.iq.superviewOf(type: UIStackView.self,\n                                                                       belowView: scrollView)\n            // (Bug ID: #1901, #1996)\n            let animatedContentOffset: Bool = stackView != nil ||\n            scrollView is UICollectionView ||\n            scrollView is UITableView\n\n            if animatedContentOffset {\n                scrollView.setContentOffset(newContentOffset, animated: UIView.areAnimationsEnabled)\n            } else {\n                scrollView.contentOffset = newContentOffset\n            }\n        }, completion: {\n\n            if scrollView is UITableView || scrollView is UICollectionView {\n                // Skip reloading input views during interactive navigation gesture to prevent toolbar flash (Issue #2102)\n                if self.activeConfiguration.rootConfiguration?.isInteractiveGestureActive == false {\n                    // This will update the next/previous states\n                    textInputView.reloadInputViews()\n                }\n            }\n        })\n    }\n\n    func adjustScrollViewContentInset(lastScrollViewConfiguration: IQScrollViewConfiguration,\n                                      window: UIWindow, kbSize: CGSize, keyboardDistance: CGFloat,\n                                      rootBeginSafeAreaInsets: UIEdgeInsets) {\n\n        let lastScrollView = lastScrollViewConfiguration.scrollView\n\n        guard let lastScrollViewRect: CGRect = lastScrollView.superview?.convert(lastScrollView.frame, to: window),\n              !lastScrollView.iq.ignoreContentInsetAdjustment else { return }\n\n        // Updating contentInset\n        var bottomInset: CGFloat = (kbSize.height)-(window.frame.height-lastScrollViewRect.maxY)\n        let keyboardAndSafeArea: CGFloat = keyboardDistance + rootBeginSafeAreaInsets.bottom\n        var bottomScrollIndicatorInset: CGFloat = bottomInset - keyboardAndSafeArea\n\n        // Update the insets so that the scrollView doesn't shift incorrectly\n        // when the offset is near the bottom of the scroll view.\n        bottomInset = CGFloat.maximum(lastScrollViewConfiguration.startingContentInset.bottom, bottomInset)\n        let startingScrollInset: UIEdgeInsets = lastScrollViewConfiguration.startingScrollIndicatorInsets\n        bottomScrollIndicatorInset = CGFloat.maximum(startingScrollInset.bottom,\n                                                     bottomScrollIndicatorInset)\n\n        bottomInset -= lastScrollView.safeAreaInsets.bottom\n        bottomScrollIndicatorInset -= lastScrollView.safeAreaInsets.bottom\n\n        var movedInsets: UIEdgeInsets = lastScrollView.contentInset\n        movedInsets.bottom = bottomInset\n\n        guard lastScrollView.contentInset != movedInsets else { return }\n        showLog(\"\"\"\n                old ContentInset: \\(lastScrollView.contentInset) new ContentInset: \\(movedInsets)\n                \"\"\")\n\n        activeConfiguration.animate(alongsideTransition: {\n            lastScrollView.contentInset = movedInsets\n            lastScrollView.layoutIfNeeded() // (Bug ID: #1996)\n\n            var newScrollIndicatorInset: UIEdgeInsets = lastScrollView.verticalScrollIndicatorInsets\n\n            newScrollIndicatorInset.bottom = bottomScrollIndicatorInset\n            lastScrollView.scrollIndicatorInsets = newScrollIndicatorInset\n        })\n    }\n\n    private func adjustTextInputViewContentInset(window: UIWindow, originalKbSize: CGSize,\n                                                 rootSuperview: UIView?,\n                                                 layoutGuide: IQLayoutGuide,\n                                                 textInputView: UIScrollView) {\n        let keyboardYPosition: CGFloat = window.frame.height - originalKbSize.height\n        var rootSuperViewFrameInWindow: CGRect = window.frame\n        if let rootSuperview: UIView = rootSuperview {\n            rootSuperViewFrameInWindow = rootSuperview.convert(rootSuperview.bounds, to: window)\n        }\n\n        let keyboardOverlapping: CGFloat = rootSuperViewFrameInWindow.maxY - keyboardYPosition\n\n        let availableHeight: CGFloat = rootSuperViewFrameInWindow.height-layoutGuide.top-keyboardOverlapping\n        let textInputViewHeight: CGFloat = CGFloat.minimum(textInputView.frame.height, availableHeight)\n\n        guard textInputView.frame.size.height-textInputView.contentInset.bottom>textInputViewHeight else { return }\n        // If frame is not change by library in past, then saving user textInputView properties  (Bug ID: #92)\n        if startingTextViewConfiguration == nil {\n            startingTextViewConfiguration = IQScrollViewConfiguration(scrollView: textInputView,\n                                                                      canRestoreContentOffset: false)\n        }\n\n        var newContentInset: UIEdgeInsets = textInputView.contentInset\n        newContentInset.bottom = textInputView.frame.size.height-textInputViewHeight\n        newContentInset.bottom -= textInputView.safeAreaInsets.bottom\n\n        guard textInputView.contentInset != newContentInset else { return }\n        showLog(\"\"\"\n                                \\(textInputView) Old textInputView.contentInset: \\(textInputView.contentInset)\n                                 New textInputView.contentInset: \\(newContentInset)\n                                \"\"\")\n\n        activeConfiguration.animate(alongsideTransition: {\n\n            textInputView.contentInset = newContentInset\n            textInputView.layoutIfNeeded() // (Bug ID: #1996)\n            textInputView.scrollIndicatorInsets = newContentInset\n        })\n    }\n\n    func adjustRootController(moveUp: CGFloat, rootViewOrigin: CGPoint, originalKbSize: CGSize,\n                              rootController: UIViewController, rootBeginOrigin: CGPoint) {\n        // +Positive or zero.\n        var rootViewOrigin: CGPoint = rootViewOrigin\n        if moveUp >= 0 {\n\n            rootViewOrigin.y = CGFloat.maximum(rootViewOrigin.y - moveUp, CGFloat.minimum(0, -originalKbSize.height))\n\n            if !rootController.view.frame.origin.equalTo(rootViewOrigin) {\n                showLog(\"Moving Upward\")\n\n                activeConfiguration.animate(alongsideTransition: {\n\n                    var rect: CGRect = rootController.view.frame\n                    rect.origin = rootViewOrigin\n                    rootController.view.frame = rect\n\n                    // Animating content if needed (Bug ID: #204)\n                    if self.layoutIfNeededOnUpdate {\n                        // Animating content (Bug ID: #160)\n                        rootController.view.setNeedsLayout()\n                        rootController.view.layoutIfNeeded()\n                    }\n\n                    let classNameString: String = \"\\(type(of: rootController.self))\"\n                    self.showLog(\"Set \\(classNameString) origin to: \\(rootViewOrigin)\")\n                })\n            }\n\n            movedDistance = rootBeginOrigin.y-rootViewOrigin.y\n        } else {  //  -Negative\n            let disturbDistance: CGFloat = rootViewOrigin.y-rootBeginOrigin.y\n\n            //  disturbDistance Negative = frame disturbed.\n            //  disturbDistance positive = frame not disturbed.\n            if disturbDistance <= 0 {\n\n                rootViewOrigin.y -= CGFloat.maximum(moveUp, disturbDistance)\n\n                if !rootController.view.frame.origin.equalTo(rootViewOrigin) {\n                    showLog(\"Moving Downward\")\n                    //  Setting adjusted rootViewRect\n\n                    activeConfiguration.animate(alongsideTransition: {\n\n                        var rect: CGRect = rootController.view.frame\n                        rect.origin = rootViewOrigin\n                        rootController.view.frame = rect\n\n                        // Animating content if needed (Bug ID: #204)\n                        if self.layoutIfNeededOnUpdate {\n                            // Animating content (Bug ID: #160)\n                            rootController.view.setNeedsLayout()\n                            rootController.view.layoutIfNeeded()\n                        }\n\n                        let classNameString: String = \"\\(type(of: rootController.self))\"\n                        self.showLog(\"Set \\(classNameString) origin to: \\(rootViewOrigin)\")\n                    })\n                }\n\n                movedDistance = rootBeginOrigin.y-rootViewOrigin.y\n            }\n        }\n    }\n\n    func restoreScrollViewContentOffset(superScrollView: UIScrollView, textInputView: (some IQTextInputView)?) {\n        var superScrollView: UIScrollView? = superScrollView\n        while let scrollView: UIScrollView = superScrollView {\n\n            let width: CGFloat = CGFloat.maximum(scrollView.contentSize.width, scrollView.frame.width)\n            let height: CGFloat = CGFloat.maximum(scrollView.contentSize.height, scrollView.frame.height)\n            let contentSize: CGSize = CGSize(width: width, height: height)\n\n            let minimumY: CGFloat = contentSize.height - scrollView.frame.height\n\n            if minimumY < scrollView.contentOffset.y {\n\n                let newContentOffset: CGPoint = CGPoint(x: scrollView.contentOffset.x, y: minimumY)\n                if !scrollView.contentOffset.equalTo(newContentOffset) {\n\n                    //  (Bug ID: #1365, #1508, #1541)\n                    let stackView: UIStackView?\n                    if let textInputView: UIView = textInputView {\n                        stackView = textInputView.iq.superviewOf(type: UIStackView.self,\n                                                                 belowView: scrollView)\n                    } else {\n                        stackView = nil\n                    }\n\n                    // (Bug ID: #1901, #1996)\n                    let animatedContentOffset: Bool = stackView != nil ||\n                    scrollView is UICollectionView ||\n                    scrollView is UITableView\n\n                    if animatedContentOffset {\n                        scrollView.setContentOffset(newContentOffset, animated: UIView.areAnimationsEnabled)\n                    } else {\n                        scrollView.contentOffset = newContentOffset\n                    }\n\n                    showLog(\"Restoring contentOffset to: \\(newContentOffset)\")\n                }\n            }\n\n            superScrollView = scrollView.iq.superviewOf(type: UIScrollView.self)\n        }\n    }\n}\n// swiftlint:enable function_parameter_count\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift",
    "content": "//\n//  IQKeyboardManager.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n/**\n IQKeyboardManager is a code-less drop-in universal library that automatically prevents issues\n of the keyboard sliding up and covering UITextField/UITextView.\n \n ## Usage\n Simply enable the manager in your AppDelegate:\n ```swift\n IQKeyboardManager.shared.isEnabled = true\n ```\n \n ## Thread Safety\n All public APIs must be called from the main thread. The class is marked with @MainActor\n to enforce this at compile time.\n \n ## Example\n ```swift\n import IQKeyboardManagerSwift\n \n @main\n class AppDelegate: UIResponder, UIApplicationDelegate {\n     func application(_ application: UIApplication,\n                      didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {\n         IQKeyboardManager.shared.isEnabled = true\n         return true\n     }\n }\n ```\n */\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objcMembers public final class IQKeyboardManager: NSObject {\n\n    /**\n    Returns the default singleton instance.\n    */\n    @MainActor\n    public static let shared: IQKeyboardManager = .init()\n\n    internal var activeConfiguration: IQActiveConfiguration = .init()\n\n    // MARK: UIKeyboard handling\n\n    /**\n    Enable/disable managing distance between keyboard and textInputView.\n     Default is YES(Enabled when class loads in `+(void)load` method).\n    */\n    public var isEnabled: Bool = false {\n        didSet {\n            guard isEnabled != oldValue else { return }\n            // If not enable, enable it.\n            if isEnabled {\n                // If keyboard is currently showing.\n                if activeConfiguration.keyboardInfo.isVisible {\n                    adjustPosition()\n                } else {\n                    restorePosition()\n                }\n                showLog(\"Enabled\")\n            } else {   // If not disable, disable it.\n                restorePosition()\n                showLog(\"Disabled\")\n            }\n        }\n    }\n\n    /**\n     Sets the default distance between the keyboard and the active text input view.\n\n     This distance is applied to all text inputs unless overridden by setting\n     `view.iq.distanceFromKeyboard` for specific views.\n\n     - Precondition: Value must be non-negative. Negative values will be logged as warnings.\n     - Default: `10.0` points\n     - Note: This is a global setting. Use `view.iq.distanceFromKeyboard` for per-view customization.\n\n     ## Example\n     ```swift\n     // Set global distance\n     IQKeyboardManager.shared.keyboardDistance = 20.0\n\n     // Override for specific text field\n     myTextField.iq.distanceFromKeyboard = 30.0\n     ```\n\n     - SeeAlso: `UIView.iq.distanceFromKeyboard` for per-view customization\n     */\n    public var keyboardDistance: CGFloat = 10.0 {\n        didSet {\n            if keyboardDistance < 0 {\n                showLog(\"⚠️ keyboardDistance shouldn't be negative.\")\n            }\n        }\n    }\n\n    /*******************************************/\n\n    // MARK: UIAnimation handling\n\n    /**\n    If YES, then calls 'setNeedsLayout' and 'layoutIfNeeded' on any frame update of to viewController's view.\n    */\n    public var layoutIfNeededOnUpdate: Bool = false\n\n    // MARK: Class Level disabling methods\n\n    /**\n     Classes that should have keyboard distance handling disabled.\n\n     When a view controller is of one of these types, keyboard distance handling\n     is disabled regardless of the `isEnabled` property.\n\n     - Precondition: All classes must be subclasses of `UIViewController`\n     - Default: `[UITableViewController.self, UIInputViewController.self, UIAlertController.self]`\n     - Note: This takes precedence over `enabledDistanceHandlingClasses`. If a class appears\n       in both arrays, it will be disabled.\n\n     ## Example\n     ```swift\n     // Disable for custom view controller\n     IQKeyboardManager.shared.disabledDistanceHandlingClasses.append(MyCustomViewController.self)\n\n     // Disable for multiple controllers\n     IQKeyboardManager.shared.disabledDistanceHandlingClasses += [\n         LoginViewController.self,\n         SignupViewController.self\n     ]\n     ```\n\n     - SeeAlso: `enabledDistanceHandlingClasses` for force-enabling specific classes\n     */\n    public var disabledDistanceHandlingClasses: [UIViewController.Type] = [\n        UITableViewController.self,\n        UIInputViewController.self,\n        UIAlertController.self\n    ]\n\n    /**\n     Enable distance handling within the scope of enabled distance handling viewControllers classes.\n     Within this scope, 'enabled' property is ignored. Class should be kind of UIViewController.\n     If same Class is added in disabledDistanceHandlingClasses list,\n     then enabledDistanceHandlingClasses will be ignored.\n     */\n    public var enabledDistanceHandlingClasses: [UIViewController.Type] = []\n\n    /**************************************************************************************/\n\n    // MARK: Initialization/De-initialization\n\n    /*  Singleton Object Initialization. */\n    private override init() {\n\n        super.init()\n\n        self.addActiveConfigurationObserver()\n\n        NotificationCenter.default.addObserver(self, selector: #selector(applicationDidBecomeActive(_:)),\n                                               name: UIApplication.didBecomeActiveNotification, object: nil)\n    }\n\n\n    deinit {\n        //  Disable the keyboard manager.\n        isEnabled = false\n        NotificationCenter.default.removeObserver(self)\n    }\n\n    // MARK: Public Methods\n\n    /**\n     Manually triggers a position adjustment for the active text input view.\n\n     Call this method when you've made external changes to the view hierarchy that\n     might affect keyboard positioning (e.g., programmatically changing view frames,\n     adding/removing views, changing constraints).\n\n     This method is safe to call even when no text input is active or the keyboard\n     is hidden - it will simply return early.\n\n     ## When to Call\n     - After programmatically modifying view frames\n     - After adding or removing views from the hierarchy\n     - After changing Auto Layout constraints that affect the active text field's position\n     - When orientation changes occur outside the normal notification flow\n\n     ## Example\n     ```swift\n     // After programmatic layout changes\n     myView.frame = newFrame\n     IQKeyboardManager.shared.reloadLayoutIfNeeded()\n\n     // After constraint updates\n     NSLayoutConstraint.activate(newConstraints)\n     view.layoutIfNeeded()\n     IQKeyboardManager.shared.reloadLayoutIfNeeded()\n     ```\n\n     - Note: This method only has an effect when:\n       - `isEnabled` is `true`\n       - A text input view is currently active\n       - The keyboard is visible\n       - The root configuration is ready\n     - SeeAlso: `isEnabled` for enabling/disabling the manager\n     */\n   public func reloadLayoutIfNeeded() {\n\n        guard privateIsEnabled(),\n              activeConfiguration.keyboardInfo.isVisible,\n              activeConfiguration.isReady else {\n                return\n        }\n        adjustPosition()\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift",
    "content": "//\n//  UIScrollView+IQKeyboardManagerExtension.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nprivate struct AssociatedKeys {\n    static var ignoreScrollingAdjustment: Int = 0\n    static var ignoreContentInsetAdjustment: Int = 0\n    static var restoreContentOffset: Int = 0\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\npublic extension IQKeyboardExtension where Base: UIScrollView {\n\n    /**\n     If YES, then scrollview will ignore scrolling (simply not scroll it) for adjusting textInputView position.\n     Default is NO.\n     */\n    var ignoreScrollingAdjustment: Bool {\n        get {\n            if let base = base {\n                return objc_getAssociatedObject(base, &AssociatedKeys.ignoreScrollingAdjustment) as? Bool ?? false\n            }\n            return false\n        }\n        set(newValue) {\n            if let base = base {\n                objc_setAssociatedObject(base, &AssociatedKeys.ignoreScrollingAdjustment,\n                                         newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            }\n        }\n    }\n\n    /**\n     If YES, then scrollview will ignore content inset adjustment (simply not updating it) when keyboard is shown.\n     Default is NO.\n     */\n    var ignoreContentInsetAdjustment: Bool {\n        get {\n            if let base = base {\n                return objc_getAssociatedObject(base, &AssociatedKeys.ignoreContentInsetAdjustment) as? Bool ?? false\n            }\n            return false\n        }\n        set(newValue) {\n            if let base = base {\n                objc_setAssociatedObject(base, &AssociatedKeys.ignoreContentInsetAdjustment,\n                                         newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            }\n        }\n    }\n\n    /**\n     If we should restore scrollView contentOffset to it's initial position\n     */\n    var restoreContentOffset: Bool {\n        get {\n            if let base = base {\n                return objc_getAssociatedObject(base, &AssociatedKeys.restoreContentOffset) as? Bool ?? false\n            }\n            return false\n        }\n        set(newValue) {\n            if let base = base {\n                objc_setAssociatedObject(base, &AssociatedKeys.restoreContentOffset,\n                                         newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            }\n        }\n    }\n}\n\n// swiftlint:disable unused_setter_value\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension UIScrollView {\n    @available(*, unavailable, renamed: \"iq.ignoreScrollingAdjustment\")\n    var shouldIgnoreScrollingAdjustment: Bool {\n        get { false }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"iq.ignoreContentInsetAdjustment\")\n    var shouldIgnoreContentInsetAdjustment: Bool {\n        get { false }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"iq.restoreContentOffset\")\n    var shouldRestoreScrollViewContentOffset: Bool {\n        get { false }\n        set { }\n    }\n}\n// swiftlint:enable unused_setter_value\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift",
    "content": "//\n//  UIScrollView+IQKeyboardManagerExtensionObjc.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n// MARK: For ObjectiveC Compatibility\n\n// swiftlint:disable identifier_name\n@objc public extension UIScrollView {\n\n    var iq_ignoreScrollingAdjustment: Bool {\n        get { iq.ignoreScrollingAdjustment }\n        set { iq.ignoreScrollingAdjustment = newValue }\n    }\n\n    var iq_ignoreContentInsetAdjustment: Bool {\n        get { iq.ignoreContentInsetAdjustment }\n        set { iq.ignoreContentInsetAdjustment = newValue }\n    }\n\n    var iq_restoreContentOffset: Bool {\n        get { iq.restoreContentOffset }\n        set { iq.restoreContentOffset = newValue }\n    }\n}\n// swiftlint:enable identifier_name\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift",
    "content": "//\n//  UIView+IQKeyboardManagerExtension.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nprivate struct AssociatedKeys {\n    static var distanceFromKeyboard: Int = 0\n    static var enableMode: Int = 0\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension UIView {\n    nonisolated static let defaultKeyboardDistance: CGFloat = .greatestFiniteMagnitude\n}\n\n@available(iOSApplicationExtension, unavailable)\n@available(*, unavailable, renamed: \"UIView.defaultKeyboardDistance\")\nnonisolated public let kIQUseDefaultKeyboardDistance: CGFloat = .greatestFiniteMagnitude\n\n/**\n Extension providing keyboard management functionality to UIView instances.\n\n This extension allows per-view configuration of keyboard behavior, including\n custom distance and enable/disable modes.\n\n ## Usage\n ```swift\n // Set custom distance for a text field\n textField.iq.distanceFromKeyboard = 30.0\n\n // Disable keyboard management for a specific text field\n textField.iq.enableMode = .disabled\n ```\n */\n@available(iOSApplicationExtension, unavailable)\n@MainActor\npublic extension IQKeyboardExtension where Base: IQTextInputView {\n\n    /**\n     Custom distance from keyboard for this specific text input view.\n\n     If set to `UIView.defaultKeyboardDistance`, the global `keyboardDistance`\n     value from `IQKeyboardManager.shared.keyboardDistance` will be used.\n     Otherwise, this value takes precedence.\n\n     - Default: `UIView.defaultKeyboardDistance` (uses global setting)\n     - Note: Value cannot be negative. Negative values may cause unexpected behavior.\n\n     ## Example\n     ```swift\n     // Use global setting\n     textField.iq.distanceFromKeyboard = UIView.defaultKeyboardDistance\n\n     // Use custom distance\n     textField.iq.distanceFromKeyboard = 50.0\n     ```\n     */\n    var distanceFromKeyboard: CGFloat {\n        get {\n            if let base = base {\n                if let value = objc_getAssociatedObject(base, &AssociatedKeys.distanceFromKeyboard) as? CGFloat {\n                    return value\n                }\n            }\n            return UIView.defaultKeyboardDistance\n        }\n        set(newValue) {\n            if let base = base {\n                objc_setAssociatedObject(base, &AssociatedKeys.distanceFromKeyboard,\n                                         newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            }\n\n            if newValue < 0 {\n                IQKeyboardManager.shared.showLog(\"Warning: distanceFromKeyboard shouldn't be negative.\")\n            }\n        }\n    }\n\n    /**\n     Enable mode for this specific text input view.\n\n     Controls whether keyboard management is enabled, disabled, or uses the default\n     global setting for this view.\n\n     - `.default`: Use global `IQKeyboardManager.shared.isEnabled` setting\n     - `.enabled`: Force enable keyboard management for this view\n     - `.disabled`: Force disable keyboard management for this view\n\n     ## Example\n     ```swift\n     // Use global setting\n     textField.iq.enableMode = .default\n\n     // Always enable for this field\n     textField.iq.enableMode = .enabled\n\n     // Always disable for this field\n     textField.iq.enableMode = .disabled\n     ```\n\n     - SeeAlso: `IQKeyboardManager.isEnabled` for global control\n     */\n    var enableMode: IQEnableMode {\n        get {\n            if let base = base {\n                return objc_getAssociatedObject(base, &AssociatedKeys.enableMode) as? IQEnableMode ?? .default\n            }\n            return .default\n        }\n        set(newValue) {\n            if let base = base {\n                objc_setAssociatedObject(base, &AssociatedKeys.enableMode, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            }\n        }\n    }\n}\n\n// swiftlint:disable unused_setter_value\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension UIView {\n    @available(*, unavailable, renamed: \"iq.distanceFromKeyboard\")\n    var keyboardDistanceFromTextField: CGFloat {\n        get { 0 }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"iq.enableMode\")\n    var enableMode: IQEnableMode {\n        get { .default }\n        set { }\n    }\n}\n// swiftlint:enable unused_setter_value\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift",
    "content": "//\n//  UIView+IQKeyboardManagerExtensionObjc.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n// MARK: For ObjectiveC Compatibility\n\n// swiftlint:disable identifier_name\n@objc public extension UITextField {\n\n    var iq_distanceFromKeyboard: CGFloat {\n        get { iq.distanceFromKeyboard }\n        set { iq.distanceFromKeyboard = newValue }\n    }\n\n    var iq_enableMode: IQEnableMode {\n        get { iq.enableMode }\n        set { iq.enableMode = newValue }\n    }\n}\n\n@objc public extension UITextView {\n\n    var iq_distanceFromKeyboard: CGFloat {\n        get { iq.distanceFromKeyboard }\n        set { iq.distanceFromKeyboard = newValue }\n    }\n\n    var iq_enableMode: IQEnableMode {\n        get { iq.enableMode }\n        set { iq.enableMode = newValue }\n    }\n}\n// swiftlint:enable identifier_name\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift",
    "content": "//\n//  UICollectionView+IndexPaths.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension UICollectionView {\n\n    func previousIndexPath(of indexPath: IndexPath) -> IndexPath? {\n        var previousRow: Int = indexPath.row - 1\n        var previousSection: Int = indexPath.section\n\n        // Fixing indexPath\n        if previousRow < 0 {\n            previousSection -= 1\n            if previousSection >= 0 {\n                previousRow = self.numberOfItems(inSection: previousSection) - 1\n            }\n        }\n\n        guard previousRow >= 0, previousSection >= 0 else { return nil }\n        return IndexPath(item: previousRow, section: previousSection)\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift",
    "content": "//\n//  UITableView+IndexPaths.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension UITableView {\n\n    func previousIndexPath(of indexPath: IndexPath) -> IndexPath? {\n        var previousRow: Int = indexPath.row - 1\n        var previousSection: Int = indexPath.section\n\n        // Fixing indexPath\n        if previousRow < 0 {\n            previousSection -= 1\n            if previousSection >= 0 {\n                let rowCount = self.numberOfRows(inSection: previousSection)\n                previousRow = rowCount > 0 ? rowCount - 1 : -1\n            }\n        }\n\n        guard previousRow >= 0, previousSection >= 0 else { return nil }\n        return IndexPath(row: previousRow, section: previousSection)\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift",
    "content": "//\n//  UIView+Parent.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n/**\nUIView hierarchy category.\n*/\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\npublic extension IQKeyboardExtension where Base: UIView {\n\n    /**\n     Returns the UIViewController object that is actually the parent of this object.\n     Most of the time it's the viewController object which actually contains it,\n     but result may be different if it's viewController is added as childViewController of another viewController.\n     */\n    func parentContainerViewController() -> UIViewController? {\n\n        var matchController: UIViewController? = viewContainingController()\n        var parentContainerViewController: UIViewController?\n\n        if var navController: UINavigationController = matchController?.navigationController {\n\n            while let parentNav: UINavigationController = navController.navigationController {\n                navController = parentNav\n            }\n\n            var parentController: UIViewController = navController\n\n            while let parent: UIViewController = parentController.parent,\n                  !(parent is UINavigationController) &&\n                   !(parent is UITabBarController) &&\n                   !(parent is UISplitViewController) {\n\n                        parentController = parent\n            }\n\n            if navController == parentController {\n                parentContainerViewController = navController.topViewController\n            } else {\n                parentContainerViewController = parentController\n            }\n        } else if let tabController: UITabBarController = matchController?.tabBarController {\n            let selectedController = tabController.selectedViewController\n            if let navController: UINavigationController = selectedController as? UINavigationController {\n                parentContainerViewController = navController.topViewController\n            } else {\n                parentContainerViewController = tabController.selectedViewController\n            }\n        } else {\n            while let parent: UIViewController = matchController?.parent,\n                  !(parent is UINavigationController) &&\n                   !(parent is UITabBarController) &&\n                   !(parent is UISplitViewController) {\n\n                        matchController = parent\n            }\n\n            parentContainerViewController = matchController\n        }\n\n        if let controller: UIViewController = parentContainerViewController?.iq_parentContainerViewController() {\n            return controller\n        } else {\n            return parentContainerViewController\n        }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension UIView {\n\n    @available(*, unavailable, renamed: \"iq.parentContainerViewController()\")\n    func parentContainerViewController() -> UIViewController? { nil }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift",
    "content": "//\n//  UIView+ParentObjc.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@objc public extension UIView {\n\n    func iq_parentContainerViewController() -> UIViewController? {\n        iq.parentContainerViewController()\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift",
    "content": "//\n//  UIViewController+ParentContainer.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc extension UIViewController {\n\n    /**\n     This method is provided to override by viewController's\n     if the library lifts a viewController which you doesn't want to lift.\n     This may happen if you have implemented side menu feature\n     in your app and the library try to lift the side menu controller.\n     Overriding this method in side menu class to return correct controller should fix the problem.\n    */\n    open func iq_parentContainerViewController() -> UIViewController? {\n        return self\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc extension UIViewController {\n    @available(*, unavailable, renamed: \"iq_parentContainerViewController()\")\n    open func parentIQContainerViewController() -> UIViewController? {\n        return self\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardManagerSwift.h",
    "content": "//\n//  IQKeyboardManagerSwift.h\n// https://github.com/hackiftekhar/IQKeyboardManager\n// Copyright (c) 2013-16 Iftekhar Qurashi.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import <UIKit/UIKit.h>\n\n//! Project version number for IQKeyboardManagerSwift.\nFOUNDATION_EXPORT double IQKeyboardManagerSwiftVersionNumber;\n\n//! Project version string for IQKeyboardManagerSwift.\nFOUNDATION_EXPORT const unsigned char IQKeyboardManagerSwiftVersionString[];\n\n// In this header, you should import all the public headers of your framework using statements like #import <IQKeyboardManagerSwift/PublicHeader.h>\n\n\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift",
    "content": "//\n//  IQKeyboardManager+ToolbarManager.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardToolbarManager\n\n@available(iOSApplicationExtension, unavailable)\n// swiftlint:disable line_length\n@available(*, deprecated,\n            message: \"Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager\")\n// swiftlint:enable line_length\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @MainActor\n    private struct AssociatedKeys {\n        static var toolbarManager: Int = 0\n    }\n\n    internal var toolbarManager: IQKeyboardToolbarManager {\n        IQKeyboardToolbarManager.shared\n    }\n\n    var enableToolbarDebugging: Bool {\n        get { toolbarManager.isDebuggingEnabled }\n        set { toolbarManager.isDebuggingEnabled = newValue }\n    }\n\n    /**\n     Automatic add the toolbar functionality. Default is YES.\n     */\n    var enableAutoToolbar: Bool {\n        get { toolbarManager.isEnabled }\n        set { toolbarManager.isEnabled = newValue }\n    }\n\n    /**\n     Configurations related to the toolbar display over the keyboard.\n     */\n    var toolbarConfiguration: IQKeyboardToolbarConfiguration {\n        toolbarManager.toolbarConfiguration\n    }\n\n    // MARK: UISound handling\n\n    /**\n     If YES, then it plays inputClick sound on next/previous/done click.\n     */\n    var playInputClicks: Bool {\n        get { toolbarManager.playInputClicks }\n        set { toolbarManager.playInputClicks = newValue }\n    }\n\n    /**\n     Disable automatic toolbar creation within the scope of disabled toolbar viewControllers classes.\n     Within this scope, 'enableAutoToolbar' property is ignored. Class should be kind of UIViewController.\n     */\n    var disabledToolbarClasses: [UIViewController.Type] {\n        get { toolbarManager.disabledToolbarClasses }\n        set { toolbarManager.disabledToolbarClasses = newValue }\n    }\n\n    /**\n     Enable automatic toolbar creation within the scope of enabled toolbar viewControllers classes.\n     Within this scope, 'enableAutoToolbar' property is ignored. Class should be kind of UIViewController.\n     If same Class is added in disabledToolbarClasses list, then enabledToolbarClasses will be ignore.\n     */\n    var enabledToolbarClasses: [UIViewController.Type] {\n        get { toolbarManager.enabledToolbarClasses }\n        set { toolbarManager.enabledToolbarClasses = newValue }\n    }\n\n    /**\n     Allowed subclasses of UIView to add all inner textField,\n     this will allow to navigate between textField contains in different superview.\n     Class should be kind of UIView.\n     */\n    var deepResponderAllowedContainerClasses: [UIView.Type] {\n        get { toolbarManager.deepResponderAllowedContainerClasses }\n        set { toolbarManager.deepResponderAllowedContainerClasses = newValue }\n    }\n\n    /**    reloadInputViews to reload toolbar buttons enable/disable state on the fly Enhancement ID #434. */\n    func reloadInputViews() {\n        toolbarManager.reloadInputViews()\n    }\n\n    /**\n     Returns YES if can navigate to previous responder textInputView, otherwise NO.\n     */\n    var canGoPrevious: Bool {\n        toolbarManager.canGoPrevious\n    }\n\n    /**\n     Returns YES if can navigate to next responder textInputViews, otherwise NO.\n     */\n    var canGoNext: Bool {\n        toolbarManager.canGoNext\n    }\n\n    /**\n     Navigate to previous responder textInputViews\n    */\n    @discardableResult\n    func goPrevious() -> Bool {\n        toolbarManager.goPrevious()\n    }\n\n    /**\n     Navigate to next responder textInputView.\n    */\n    @discardableResult\n    func goNext() -> Bool {\n        toolbarManager.goNext()\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift",
    "content": "//\n//  IQKeyboardManager+ToolbarManagerDeprecated.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardToolbarManager\n\n// swiftlint:disable unused_setter_value\n// swiftlint:disable identifier_name\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, renamed: \"playInputClicks\")\n    var shouldPlayInputClicks: Bool {\n        get { false }\n        set { }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.manageBehavior\")\n    var toolbarManageBehaviour: IQKeyboardToolbarManageBehavior {\n        get { .bySubviews }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.useTextInputViewTintColor\")\n    var shouldToolbarUsesTextFieldTintColor: Bool {\n        get { false }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.tintColor\")\n    var toolbarTintColor: UIColor? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.barTintColor\")\n    var toolbarBarTintColor: UIColor? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.previousNextDisplayMode\")\n    var previousNextDisplayMode: IQPreviousNextDisplayMode {\n        get { .default }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"deepResponderAllowedContainerClasses\")\n    var toolbarPreviousNextAllowedClasses: [UIView.Type] {\n        get { [] }\n        set { }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n    @available(*, unavailable, renamed: \"toolbarConfiguration.previousBarButtonConfiguration.image\",\n                message: \"To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration\")\n    var toolbarPreviousBarButtonItemImage: UIImage? {\n        get { nil }\n        set { }\n    }\n    @available(*, unavailable, renamed: \"toolbarConfiguration.previousBarButtonConfiguration.title\",\n                message: \"To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration\")\n    var toolbarPreviousBarButtonItemText: String? {\n        get { nil }\n        set { }\n    }\n    @available(*, unavailable, renamed: \"toolbarConfiguration.previousBarButtonConfiguration.accessibilityLabel\",\n                message: \"To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration\")\n    var toolbarPreviousBarButtonItemAccessibilityLabel: String? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.nextBarButtonConfiguration.image\",\n                message: \"To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration\")\n    var toolbarNextBarButtonItemImage: UIImage? {\n        get { nil }\n        set { }\n    }\n    @available(*, unavailable, renamed: \"toolbarConfiguration.nextBarButtonConfiguration.title\",\n                message: \"To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration\")\n    var toolbarNextBarButtonItemText: String? {\n        get { nil }\n        set { }\n    }\n    @available(*, unavailable, renamed: \"toolbarConfiguration.nextBarButtonConfiguration.accessibilityLabel\",\n                message: \"To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration\")\n    var toolbarNextBarButtonItemAccessibilityLabel: String? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.doneBarButtonConfiguration.image\",\n                message: \"To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration\")\n    var toolbarDoneBarButtonItemImage: UIImage? {\n        get { nil }\n        set { }\n    }\n    @available(*, unavailable, renamed: \"toolbarConfiguration.doneBarButtonConfiguration.title\",\n                message: \"To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration\")\n    var toolbarDoneBarButtonItemText: String? {\n        get { nil }\n        set { }\n    }\n    @available(*, unavailable, renamed: \"toolbarConfiguration.doneBarButtonConfiguration.accessibilityLabel\",\n                message: \"To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration\")\n    var toolbarDoneBarButtonItemAccessibilityLabel: String? {\n        get { nil }\n        set { }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.placeholderConfiguration.accessibilityLabel\")\n    var toolbarTitleBarButtonItemAccessibilityLabel: String? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.placeholderConfiguration.showPlaceholder\")\n    var shouldShowToolbarPlaceholder: Bool {\n        get { false }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.placeholderConfiguration.font\")\n    var placeholderFont: UIFont? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.placeholderConfiguration.color\")\n    var placeholderColor: UIColor? {\n        get { nil }\n        set { }\n    }\n\n    @available(*, unavailable, renamed: \"toolbarConfiguration.placeholderConfiguration.buttonColor\")\n    var placeholderButtonColor: UIColor? {\n        get { nil }\n        set { }\n    }\n}\n// swiftlint:enable unused_setter_value\n// swiftlint:enable identifier_name\n"
  },
  {
    "path": "IQKeyboardManagerSwift/PrivacyInfo.xcprivacy",
    "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>NSPrivacyAccessedAPITypes</key>\n\t<array/>\n\t<key>NSPrivacyTrackingDomains</key>\n\t<array/>\n\t<key>NSPrivacyCollectedDataTypes</key>\n\t<array/>\n\t<key>NSPrivacyTracking</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift",
    "content": "//\n//  IQKeyboardManager+Resign.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @MainActor\n    private struct AssociatedKeys {\n        static var resignHandler: Int = 0\n    }\n\n    internal var resignHandler: IQKeyboardResignHandler {\n        if let object = objc_getAssociatedObject(self, &AssociatedKeys.resignHandler)\n            as? IQKeyboardResignHandler {\n            return object\n        }\n\n        let object: IQKeyboardResignHandler = .init()\n        objc_setAssociatedObject(self, &AssociatedKeys.resignHandler,\n                                 object, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n\n        return object\n    }\n\n    /**\n     Resigns Keyboard on touching outside TextInputView. Default is NO.\n     */\n    var resignOnTouchOutside: Bool {\n        get { resignHandler.resignOnTouchOutside }\n        set { resignHandler.resignOnTouchOutside = newValue }\n    }\n\n    /** TapGesture to resign keyboard on view's touch.\n     It's a readonly property and exposed only for adding/removing dependencies\n     if your added gesture does have collision with this one\n     */\n    var resignGesture: UITapGestureRecognizer {\n        get { resignHandler.resignGesture }\n        set { resignHandler.resignGesture = newValue }\n    }\n\n    /**\n     Disabled classes to ignore resignOnTouchOutside' property, Class should be kind of UIViewController.\n     */\n    var disabledTouchResignedClasses: [UIViewController.Type] {\n        get { resignHandler.disabledTouchResignedClasses }\n        set { resignHandler.disabledTouchResignedClasses = newValue }\n    }\n\n    /**\n     Enabled classes to forcefully enable 'resignOnTouchOutside' property.\n     Class should be kind of UIViewController\n     . If same Class is added in disabledTouchResignedClasses list, then enabledTouchResignedClasses will be ignored.\n     */\n    var enabledTouchResignedClasses: [UIViewController.Type] {\n        get { resignHandler.enabledTouchResignedClasses }\n        set { resignHandler.enabledTouchResignedClasses = newValue }\n    }\n\n    /**\n     if resignOnTouchOutside is enabled then you can customize the behavior\n     to not recognize gesture touches on some specific view subclasses.\n     Class should be kind of UIView. Default is [UIControl, UINavigationBar]\n     */\n    var touchResignedGestureIgnoreClasses: [UIView.Type] {\n        get { resignHandler.touchResignedGestureIgnoreClasses }\n        set { resignHandler.touchResignedGestureIgnoreClasses = newValue }\n    }\n\n    /**\n     Resigns currently first responder field.\n     */\n    @discardableResult\n    func resignFirstResponder() -> Bool {\n        resignHandler.resignFirstResponder()\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift",
    "content": "//\n//  IQKeyboardManager+Resign_Deprecated.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\n\n// swiftlint:disable unused_setter_value\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension IQKeyboardManager {\n\n    @available(*, unavailable, renamed: \"resignOnTouchOutside\")\n    var shouldResignOnTouchOutside: Bool {\n        get { false }\n        set { }\n    }\n}\n// swiftlint:enable unused_setter_value\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift",
    "content": "//\n//  IQKeyboardResignHandler+Internal.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\ninternal extension IQKeyboardResignHandler {\n\n    func removeTextInputViewObserver() {\n        textInputViewObserver.unsubscribe(identifier: \"IQKeyboardResignHandler\")\n    }\n\n    func addTextInputViewObserver() {\n        textInputViewObserver.subscribe(identifier: \"IQKeyboardResignHandler\",\n                                        changeHandler: { [weak self] event, textInputView in\n            guard let self = self else { return }\n            switch event {\n            case .beginEditing:\n                self.resignGesture.isEnabled = self.privateResignOnTouchOutside()\n                textInputView.window?.addGestureRecognizer(self.resignGesture)\n            case .endEditing:\n                textInputView.window?.removeGestureRecognizer(self.resignGesture)\n            }\n        })\n    }\n\n    func privateResignOnTouchOutside() -> Bool {\n\n        guard let textInputView: any IQTextInputView = textInputViewObserver.textInputView else {\n            return resignOnTouchOutside\n        }\n\n        switch textInputView.internalResignOnTouchOutsideMode {\n        case .default:\n            guard var controller = (textInputView as UIView).iq.viewContainingController() else {\n                return resignOnTouchOutside\n            }\n\n            // If it is searchBar textField embedded in Navigation Bar\n            if textInputView is UISearchTextField {\n                if let navController: UINavigationController = controller as? UINavigationController,\n                   let topController: UIViewController = navController.topViewController,\n                   controller.navigationItem.searchController?.searchBar.searchTextField == textInputView {\n                    controller = topController\n                }\n            }\n\n            // If viewController is in enabledTouchResignedClasses, then assuming resignOnTouchOutside is enabled.\n            let isWithEnabledClass: Bool = enabledTouchResignedClasses.contains(where: { controller.isKind(of: $0) })\n            var isEnabled: Bool = resignOnTouchOutside || isWithEnabledClass\n\n            if isEnabled {\n\n                // If viewController is in disabledTouchResignedClasses,\n                // then assuming resignOnTouchOutside is disable.\n                if disabledTouchResignedClasses.contains(where: { controller.isKind(of: $0) }) {\n                    isEnabled = false\n                } else {\n                    let classNameString: String = \"\\(type(of: controller.self))\"\n\n                    // _UIAlertControllerTextFieldViewController\n                    if classNameString.contains(\"UIAlertController\"),\n                       classNameString.hasSuffix(\"TextFieldViewController\") {\n                        isEnabled = false\n                    }\n                }\n            }\n            return isEnabled\n        case .enabled:\n            return true\n        case .disabled:\n            return false\n        }\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nfileprivate extension IQTextInputView {\n    var internalResignOnTouchOutsideMode: IQEnableMode {\n        iq.resignOnTouchOutsideMode\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift",
    "content": "//\n//  IQKeyboardResignHandler.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQTextInputViewNotification\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objcMembers internal final class IQKeyboardResignHandler: NSObject {\n\n    let textInputViewObserver: IQTextInputViewNotification = .init()\n\n    /**\n     Resigns Keyboard on touching outside of TextInputView. Default is NO.\n    */\n    public var resignOnTouchOutside: Bool = false {\n\n        didSet {\n            resignGesture.isEnabled = privateResignOnTouchOutside()\n\n            IQKeyboardManager.shared.showLog(\"resignOnTouchOutside: \\(resignOnTouchOutside ? \"Yes\" : \"No\")\")\n        }\n    }\n\n    /** TapGesture to resign keyboard on view's touch.\n     It's a readonly property and exposed only for adding/removing dependencies\n     if your added gesture does have collision with this one\n     */\n    public var resignGesture: UITapGestureRecognizer = .init()\n\n    /**\n     Disabled classes to ignore resignOnTouchOutside' property, Class should be kind of UIViewController.\n     */\n    public var disabledTouchResignedClasses: [UIViewController.Type] = [\n        UIAlertController.self,\n        UIInputViewController.self\n    ]\n\n    /**\n     Enabled classes to forcefully enable 'resignOnTouchOutside' property.\n     Class should be kind of UIViewController\n     . If same Class is added in disabledTouchResignedClasses list, then enabledTouchResignedClasses will be ignored.\n     */\n    public var enabledTouchResignedClasses: [UIViewController.Type] = []\n\n    /**\n     if resignOnTouchOutside is enabled then you can customize the behavior\n     to not recognize gesture touches on some specific view subclasses.\n     Class should be kind of UIView. Default is [UIControl, UINavigationBar]\n     */\n    public var touchResignedGestureIgnoreClasses: [UIView.Type] = [\n        UIControl.self,\n        UINavigationBar.self\n    ]\n\n    /**\n    Resigns currently first responder field.\n    */\n    @discardableResult\n    public func resignFirstResponder() -> Bool {\n\n        guard let textInputView: any IQTextInputView = textInputViewObserver.textInputView else {\n            return false\n        }\n\n        // Resigning first responder\n        guard textInputView.resignFirstResponder() else {\n            IQKeyboardManager.shared.showLog(\"Warning: Refuses to resign first responder: \\(textInputView)\")\n            //  If it refuses then becoming it as first responder again.    (Bug ID: #96)\n            // If it refuses to resign then becoming it first responder again for getting notifications callback.\n            textInputView.becomeFirstResponder()\n            return false\n        }\n        return true\n    }\n\n    public override init() {\n        super.init()\n\n        resignGesture.addTarget(self, action: #selector(self.tapRecognized(_:)))\n        resignGesture.cancelsTouchesInView = false\n        resignGesture.delegate = self\n        resignGesture.isEnabled = false\n\n        addTextInputViewObserver()\n    }\n}\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc extension IQKeyboardResignHandler: UIGestureRecognizerDelegate {\n\n    /** Resigning on tap gesture.   (Enhancement ID: #14)*/\n    private func tapRecognized(_ gesture: UITapGestureRecognizer) {\n\n        if gesture.state == .ended {\n\n            // Resigning currently responder textInputView.\n            resignFirstResponder()\n        }\n    }\n\n    /** Note: returning YES is guaranteed to allow simultaneous recognition.\n     returning NO is not guaranteed to prevent simultaneous recognition,\n     as the other gesture's delegate may return YES.\n     */\n    public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer,\n                                  shouldRecognizeSimultaneouslyWith\n                                  otherGestureRecognizer: UIGestureRecognizer) -> Bool {\n        return false\n    }\n\n    /**\n     To not detect touch events in a subclass of UIControl,\n     these may have added their own selector for specific work\n     */\n    public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer,\n                                  shouldReceive touch: UITouch) -> Bool {\n        // (Bug ID: #145)\n        // Should not recognize gesture if the clicked view is either UIControl or UINavigationBar(<Back button etc...)\n\n        for ignoreClass in touchResignedGestureIgnoreClasses where touch.view?.isKind(of: ignoreClass) ?? false {\n            return false\n        }\n\n        // (Issue #2109) Ignore Apple Pencil touches to prevent conflicts with floating keyboard on iPad\n        if #available(iOS 9.1, *) {\n            if touch.type == .pencil {\n                return false\n            }\n        }\n\n        return true\n    }\n}\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift",
    "content": "//\n//  UIView+Resign.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n@available(iOSApplicationExtension, unavailable)\n@MainActor\nprivate struct AssociatedKeys {\n    static var resignOnTouchOutsideMode: Int = 0\n}\n\n/**\n TextInputView category for managing touch resign\n*/\n@available(iOSApplicationExtension, unavailable)\n@MainActor\npublic extension IQKeyboardExtension where Base: IQTextInputView {\n\n    /**\n     Override resigns Keyboard on touching outside of TextInputView behavior for this particular textInputView.\n     */\n    var resignOnTouchOutsideMode: IQEnableMode {\n        get {\n            guard let base = base else {\n                return .default\n            }\n            return objc_getAssociatedObject(base, &AssociatedKeys.resignOnTouchOutsideMode) as? IQEnableMode ?? .default\n        }\n        set(newValue) {\n            if let base = base {\n                objc_setAssociatedObject(base, &AssociatedKeys.resignOnTouchOutsideMode,\n                                         newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)\n            }\n        }\n    }\n}\n\n// swiftlint:disable unused_setter_value\n@available(iOSApplicationExtension, unavailable)\n@MainActor\n@objc public extension UIView {\n    @available(*, unavailable, renamed: \"iq.resignOnTouchOutsideMode\")\n    var shouldResignOnTouchOutsideMode: IQEnableMode {\n        get { .default }\n        set { }\n    }\n}\n// swiftlint:enable unused_setter_value\n"
  },
  {
    "path": "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift",
    "content": "//\n//  UIView+ResignObjc.swift\n//  https://github.com/hackiftekhar/IQKeyboardManager\n//  Copyright (c) 2013-24 Iftekhar Qurashi.\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n\nimport UIKit\nimport IQKeyboardCore\n\n// MARK: For ObjectiveC Compatibility\n\n// swiftlint:disable identifier_name\n@objc public extension UITextField {\n\n    var iq_resignOnTouchOutsideMode: IQEnableMode {\n        get { iq.resignOnTouchOutsideMode }\n        set { iq.resignOnTouchOutsideMode = newValue }\n    }\n}\n\n@objc public extension UITextView {\n\n    var iq_resignOnTouchOutsideMode: IQEnableMode {\n        get { iq.resignOnTouchOutsideMode }\n        set { iq.resignOnTouchOutsideMode = newValue }\n    }\n}\n// swiftlint:enable identifier_name\n"
  },
  {
    "path": "IQKeyboardManagerSwift.podspec.json",
    "content": "{\n    \"name\": \"IQKeyboardManagerSwift\",\n    \"version\": \"8.0.2\",\n    \"source\": {\n        \"git\": \"https://github.com/hackiftekhar/IQKeyboardManager.git\",\n        \"tag\": \"8.0.2\"\n    },\n    \"summary\": \"Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.\",\n    \"homepage\": \"https://github.com/hackiftekhar/IQKeyboardManager\",\n    \"screenshots\": \"https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/Social.png\",\n    \"license\": \"MIT\",\n    \"authors\": {\n        \"Iftekhar Qurashi\": \"hack.iftekhar@gmail.com\"\n    },\n    \"platforms\": {\n        \"ios\": \"13.0\"\n    },\n    \"swift_versions\": [\n        \"5.7\",\n        \"5.8\",\n        \"5.9\"\n    ],\n    \"subspecs\": [\n        {\n            \"name\": \"Appearance\",\n            \"source_files\": [\n                \"IQKeyboardManagerSwift/Appearance/**/*.{swift}\"\n            ],\n            \"dependencies\": {\n                \"IQTextInputViewNotification\": []\n            }\n        },\n        {\n            \"name\": \"Core\",\n            \"source_files\": [\n                \"IQKeyboardManagerSwift/IQKeyboardManager/**/*.{swift}\"\n            ],\n            \"dependencies\": {\n                \"IQKeyboardNotification\": [],\n                \"IQTextInputViewNotification\": []\n            }\n        },\n        {\n            \"name\": \"IQKeyboardReturnManager\",\n            \"dependencies\": {\n                \"IQKeyboardReturnManager\": []\n            }\n        },\n        {\n            \"name\": \"IQKeyboardToolbarManager\",\n            \"source_files\": [\n                \"IQKeyboardManagerSwift/IQKeyboardToolbarManager/**/*.{swift}\"\n            ],\n            \"dependencies\": {\n                \"IQKeyboardToolbarManager\": []\n            }\n        },\n        {\n            \"name\": \"IQTextView\",\n            \"dependencies\": {\n                \"IQTextView\": []\n            }\n        },\n        {\n            \"name\": \"Resign\",\n            \"source_files\": [\n                \"IQKeyboardManagerSwift/Resign/**/*.{swift}\"\n            ],\n            \"dependencies\": {\n                \"IQTextInputViewNotification\": []\n            }\n        }\n    ],\n    \"default_subspecs\": [\n        \"Appearance\",\n        \"Core\",\n        \"IQKeyboardReturnManager\",\n        \"IQKeyboardToolbarManager\",\n        \"IQTextView\",\n        \"Resign\"\n    ],\n    \"resource_bundles\": {\"IQKeyboardManagerSwift\": \"IQKeyboardManagerSwift/PrivacyInfo.xcprivacy\"},\n    \"frameworks\": [\n        \"UIKit\"\n    ],\n    \"xcconfig\": {\n        \"ENABLE_USER_SCRIPT_SANDBOXING\": \"NO\"\n    },\n    \"requires_arc\": true\n}\n"
  },
  {
    "path": "LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2013-2023 Iftekhar Qurashi\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": "Package.swift",
    "content": "// swift-tools-version:5.6\n\nimport PackageDescription\n\nlet package = Package(\n    name: \"IQKeyboardManagerSwift\",\n    platforms: [\n        .iOS(.v13)\n    ],\n    products: [\n        .library(\n            name: \"IQKeyboardManagerSwift\",\n            targets: [\"IQKeyboardManagerSwift\"]\n        )\n    ],\n    dependencies: [\n        .package(url: \"https://github.com/hackiftekhar/IQKeyboardNotification.git\", from: \"1.0.6\"),\n        .package(url: \"https://github.com/hackiftekhar/IQTextInputViewNotification.git\", from: \"1.0.9\"),\n        .package(url: \"https://github.com/hackiftekhar/IQKeyboardToolbarManager.git\", from: \"1.1.4\"),\n        .package(url: \"https://github.com/hackiftekhar/IQKeyboardReturnManager.git\", from: \"1.0.6\"),\n        .package(url: \"https://github.com/hackiftekhar/IQTextView.git\", from: \"1.0.5\")\n    ],\n    targets: [\n        .target(name: \"IQKeyboardManagerSwift\",\n                dependencies: [\n                    \"IQKeyboardNotification\",\n                    \"IQTextInputViewNotification\",\n                    \"IQKeyboardToolbarManager\",\n                    \"IQKeyboardReturnManager\",\n                    \"IQTextView\"\n                ],\n                path: \"IQKeyboardManagerSwift\",\n                resources: [\n                    .copy(\"PrivacyInfo.xcprivacy\")\n                ],\n                linkerSettings: [\n                    .linkedFramework(\"UIKit\")\n                ]\n               )\n    ]\n)\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n  <img src=\"https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/Social.png\" alt=\"Icon\"/>\n</p>\n\n[![LICENSE.md](https://img.shields.io/github/license/hackiftekhar/IQKeyboardManager.svg)](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/LICENSE.md)\n[![Build Status](https://travis-ci.org/hackiftekhar/IQKeyboardManager.svg)](https://travis-ci.org/hackiftekhar/IQKeyboardManager)\n![Platform iOS](https://img.shields.io/badge/Platform-iOS-blue.svg?style=fla)\n[![CocoaPods](https://img.shields.io/cocoapods/v/IQKeyboardManagerSwift.svg)](http://cocoadocs.org/docsets/IQKeyboardManagerSwift)\n[![Github tag](https://img.shields.io/github/tag/hackiftekhar/iqkeyboardmanager.svg)](https://github.com/hackiftekhar/IQKeyboardManager/tags)\n\n## IQKeyboardManager Objective-C version source code is moved to https://github.com/hackiftekhar/IQKeyboardManagerObjC\n\n\n## Introduction\nWhile developing iOS apps, we often run into issues where the iPhone keyboard slides up and covers the `UITextField/UITextView`. `IQKeyboardManager` allows you to prevent this issue of keyboard sliding up and covering `UITextField/UITextView` without needing you to write any code or make any additional setup. To use `IQKeyboardManager` you simply need to add source files to your project.\n\n\n## Key Features\n\n1. **One Line of Code** - Just enable and it works\n2. **Works Automatically** - No manual setup required\n3. **No More UIScrollView** - Automatically handles scroll views\n4. **No More Subclasses** - Works with standard UIKit components\n5. **No More Manual Work** - Handles all edge cases automatically\n6. **Modular Architecture** - Include only what you need via subspecs\n\n### What's Included\n\n- ✅ Automatic keyboard avoidance for UITextField/UITextView\n- ✅ Support for UIScrollView, UITableView, UICollectionView\n- ✅ All interface orientations\n- ✅ Configurable keyboard distance\n- ✅ Class-level enable/disable control\n\n### Optional Features (via Subspecs)\n\n- 📦 Toolbar with Previous/Next/Done buttons\n- 📦 Return key handling customization\n- 📦 Tap-to-resign keyboard\n- 📦 Keyboard appearance configuration\n- 📦 UITextView with placeholder supportv\n\n## Subspecs\n\nNow IQKeyboardManagerSwift uses a modular architecture with subspecs.\nBy default, all subspecs are included, but you can include only what you need:\n\n### Available Subspecs\n\n- **Core** (always included): Basic keyboard distance management\n- **Appearance**: Keyboard appearance configuration\n- **IQKeyboardReturnManager**: Return key handling\n- **IQKeyboardToolbarManager**: Toolbar functionality (Previous/Next/Done buttons)\n- **IQTextView**: UITextView with placeholder support\n- **Resign**: Tap-to-resign keyboard functionality\n\n### Including Specific Subspecs\n\n```ruby\n# Include toolbar example\npod 'IQKeyboardManagerSwift/IQKeyboardToolbarManager'\n```\n\n## Screenshot\n[![Screenshot 1](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot1.png)](http://youtu.be/6nhLw6hju2A)\n[![Screenshot 2](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot2.png)](http://youtu.be/6nhLw6hju2A)\n[![Screenshot 3](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot3.png)](http://youtu.be/6nhLw6hju2A)\n[![Screenshot 4](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot4.png)](http://youtu.be/6nhLw6hju2A)\n[![Screenshot 5](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot5.png)](http://youtu.be/6nhLw6hju2A)\n\n## GIF animation\n[![IQKeyboardManager](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/v3.3.0/Screenshot/IQKeyboardManager.gif)](http://youtu.be/6nhLw6hju2A)\n\n## Video\n\n<a href=\"http://youtu.be/WAYc2Qj-OQg\" target=\"_blank\"><img src=\"http://img.youtube.com/vi/WAYc2Qj-OQg/0.jpg\"\nalt=\"IQKeyboardManager Demo Video\" width=\"480\" height=\"360\" border=\"10\" /></a>\n\n## Tutorial video by @rebeloper ([#1135](https://github.com/hackiftekhar/IQKeyboardManager/issues/1135))\n\n@rebeloper demonstrated two videos on how to implement **IQKeyboardManager** at it's core:\n\n<a href=\"https://www.youtube.com/playlist?list=PL_csAAO9PQ8aTL87XnueOXi3RpWE2m_8v\" target=\"_blank\"><img src=\"https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/ThirdPartyYoutubeTutorial.jpg\"\nalt=\"Youtube Tutorial Playlist\"/></a>\n\nhttps://www.youtube.com/playlist?list=PL_csAAO9PQ8aTL87XnueOXi3RpWE2m_8v\n\n## Warning\n\n- **If you're planning to build SDK/library/framework and want to handle UITextField/UITextView with IQKeyboardManager then you're totally going the wrong way.** I would never suggest to add **IQKeyboardManager** as **dependency/adding/shipping** with any third-party library. Instead of adding **IQKeyboardManager** you should implement your own solution to achieve same kind of results. **IQKeyboardManager** is totally designed for projects to help developers for their convenience, it's not designed for **adding/dependency/shipping** with any **third-party library**, because **doing this could block adoption by other developers for their projects as well (who are not using IQKeyboardManager and have implemented their custom solution to handle UITextField/UITextView in the project).**\n- If **IQKeyboardManager** conflicts with other **third-party library**, then it's **developer responsibility** to **enable/disable IQKeyboardManager** when **presenting/dismissing** third-party library UI. Third-party libraries are not responsible to handle IQKeyboardManager.\n\n## Requirements\n\n|                        | Minimum iOS Target | Minimum Xcode Version |\n|------------------------|--------------------|-----------------------|\n| IQKeyboardManagerSwift | iOS 13.0           | Xcode 13              |\n| Demo Project           |                    | Xcode 15              |\n\n#### Swift versions support\n\n| Swift             | Xcode | IQKeyboardManagerSwift |\n|-------------------|-------|------------------------|\n| 5.9, 5.8, 5.7     | 16    | >= 7.0.0       |\n| 5.9, 5.8, 5.7, 5.6| 15    | >= 7.0.0       |\n| 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 4.2| 11  | >= 6.5.7       |\n| 5.1, 5.0, 4.2, 4.0, 3.2, 3.0| 11  | >= 6.5.0       |\n| 5.0,4.2, 4.0, 3.2, 3.0| 10.2  | >= 6.2.1           |\n| 4.2, 4.0, 3.2, 3.0| 10.0  | >= 6.0.4               |\n| 4.0, 3.2, 3.0     | 9.0   | 5.0.0                  |\n\n\nInstallation\n==========================\n\n#### CocoaPods\n\nTo install it, simply add the following line to your Podfile: ([#236](https://github.com/hackiftekhar/IQKeyboardManager/issues/236))\n\n```ruby\npod 'IQKeyboardManagerSwift'\n```\n\n*Or you can choose the version you need based on Swift support table from [Requirements](README.md#requirements)*\n\n```ruby\npod 'IQKeyboardManagerSwift', '8.0.0'\n```\n\n#### Carthage\n\nTo integrate `IQKeyboardManger` or `IQKeyboardManagerSwift` into your Xcode project using Carthage, add the following line to your `Cartfile`:\n\n```ogdl\ngithub \"hackiftekhar/IQKeyboardManager\"\n```\n\nRun `carthage update --use-xcframeworks` to build the frameworks and drag `IQKeyboardManagerSwift.xcframework` into your Xcode project based on your need. Make sure to add only one framework, not both.\n\n#### Swift Package Manager (SPM)\n\nTo install `IQKeyboardManagerSwift` package via Xcode\n\n * Go to File -> Swift Packages -> Add Package Dependency...\n * Then search for https://github.com/hackiftekhar/IQKeyboardManager.git\n * And choose the version you want\n\n#### Source Code\n\n***IQKeyboardManagerSwift:*** Source code installation is not supported (since 7.2.0) because now the library depends on some other independent libraries. Due to this you may face compilation issues.\n\n#### Basic Usage\n\n### Minimal Setup (Core Only)\n\nIn `AppDelegate.swift`, import and enable IQKeyboardManager:\n\n```swift\nimport IQKeyboardManagerSwift\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n    func application(_ application: UIApplication, \n                     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {\n\n        // Enable keyboard management\n        IQKeyboardManager.shared.isEnabled = true\n\n        return true\n    }\n}\n```\n\nThat's it! The keyboard will now automatically adjust to avoid covering text fields.\n\n### With Toolbar (Requires IQKeyboardToolbarManager Subspec)\n\n```swift\nimport IQKeyboardManagerSwift\n\nfunc application(_ application: UIApplication, \n                 didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {\n\n    // Enable keyboard management\n    IQKeyboardManager.shared.isEnabled = true\n    \n    // Enable toolbar (@Deprecated: Please use IQKeyboardToolbarManager pod independently)\n    IQKeyboardManager.shared.enableAutoToolbar = true\n\n    return true\n}\n```\n\n### With All Features\n\n```swift\nimport IQKeyboardManagerSwift\n\nfunc application(_ application: UIApplication, \n                 didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {\n\n    // Core functionality\n    IQKeyboardManager.shared.isEnabled = true\n    IQKeyboardManager.shared.keyboardDistance = 20.0\n    \n    // Toolbar (if using IQKeyboardToolbarManager subspec)\n    IQKeyboardManager.shared.enableAutoToolbar = true\n    \n    // Tap to resign (if using Resign subspec)\n    IQKeyboardManager.shared.resignOnTouchOutside = true\n    \n    // Appearance (if using Appearance subspec)\n    IQKeyboardManager.shared.keyboardConfiguration.overrideKeyboardAppearance = true\n    IQKeyboardManager.shared.keyboardConfiguration.keyboardAppearance = .dark\n\n    return true\n}\n```\n\n\nMigration Guide\n==========================\n- [IQKeyboardManager 2.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%201.0%20TO%202.0.md)\n- [IQKeyboardManager 3.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%202.0%20TO%203.0.md)\n- [IQKeyboardManager 4.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%203.0%20TO%204.0.md)\n- [IQKeyboardManager 5.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%204.0%20TO%205.0.md)\n- [IQKeyboardManager 6.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%205.0%20TO%206.0.md)\n- [IQKeyboardManager 7.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%206.0%20TO%207.0.md)\n- [IQKeyboardManager 8.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%207.0%20TO%208.0.md)\n\nOther Links\n==========================\n\n- [Known Issues](https://github.com/hackiftekhar/IQKeyboardManager/wiki/Known-Issues)\n- [Manual Management Tweaks](https://github.com/hackiftekhar/IQKeyboardManager/wiki/Manual-Management)\n- [Properties and functions usage](https://github.com/hackiftekhar/IQKeyboardManager/wiki/Properties-&-Functions)\n\n## Dependency Diagram\n[![IQKeyboardManager Dependency Diagram](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/IQKeyboardManagerDependency.jpg)](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/IQKeyboardManagerDependency.jpg)\n\nLICENSE\n---\nDistributed under the MIT License.\n\nContributions\n---\nAny contribution is more than welcome! You can contribute through pull requests and issues on GitHub.\n\nAuthor\n---\nIf you wish to contact me, email at: hack.iftekhar@gmail.com\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security\n\n## Reporting Potential Security Issues\n\nIf you have encountered a potential security vulnerability in this project,\nplease report it to us at <hack.iftekhar@gmail.com>. We will work with you to\nverify the vulnerability and patch it.\n\nWhen reporting issues, please provide the following information:\n\n- Component(s) affected\n- A description indicating how to reproduce the issue\n- A summary of the security vulnerability and impact\n\nWe request that you contact us via the email address above and give the\nproject contributors a chance to resolve the vulnerability and issue a new\nrelease prior to any public exposure; this helps protect the project's\nusers, and provides them with a chance to upgrade and/or update in order to\nprotect their applications.\n\n## Policy\n\nIf we verify a reported security vulnerability, our policy is:\n\n- We will patch the current release branch, as well as the immediate prior minor\n  release branch.\n\n- After patching the release branches, we will immediately issue new security\n  fix releases for each patched release branch.\n\n- A security advisory will be released on the project website detailing the\n  vulnerability, as well as recommendations for end-users to protect themselves.\n"
  }
]