{"id":16835216,"url":"https://github.com/hackiftekhar/iqkeyboardreturnmanager","last_synced_at":"2025-08-02T12:07:04.686Z","repository":{"id":249632375,"uuid":"832073622","full_name":"hackiftekhar/IQKeyboardReturnManager","owner":"hackiftekhar","description":"Keyboard Return Key Observation to navigate next responder","archived":false,"fork":false,"pushed_at":"2024-10-29T14:09:39.000Z","size":234,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-30T12:30:58.511Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hackiftekhar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-22T09:50:47.000Z","updated_at":"2024-10-29T14:09:43.000Z","dependencies_parsed_at":"2024-10-29T15:40:14.005Z","dependency_job_id":null,"html_url":"https://github.com/hackiftekhar/IQKeyboardReturnManager","commit_stats":null,"previous_names":["hackiftekhar/iqkeyboardreturnmanager"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/hackiftekhar/IQKeyboardReturnManager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQKeyboardReturnManager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQKeyboardReturnManager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQKeyboardReturnManager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQKeyboardReturnManager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackiftekhar","download_url":"https://codeload.github.com/hackiftekhar/IQKeyboardReturnManager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQKeyboardReturnManager/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267873329,"owners_count":24158584,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T12:09:19.891Z","updated_at":"2025-08-02T12:07:04.620Z","avatar_url":"https://github.com/hackiftekhar.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IQKeyboardReturnManager\n\n[![CI Status](https://img.shields.io/travis/hackiftekhar/IQKeyboardReturnManager.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQKeyboardReturnManager)\n[![Version](https://img.shields.io/cocoapods/v/IQKeyboardReturnManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardReturnManager)\n[![License](https://img.shields.io/cocoapods/l/IQKeyboardReturnManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardReturnManager)\n[![Platform](https://img.shields.io/cocoapods/p/IQKeyboardReturnManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardReturnManager)\n\n![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardReturnManager/master/Screenshot/IQKeyboardReturnManagerScreenshot.png)\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Requirements\n\n## Installation\n\nIQKeyboardReturnManager is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'IQKeyboardReturnManager'\n```\n\n## Usage\n\nTo handle keyboard return key automatically:-\n\n```swift\nimport IQKeyboardReturnManager\n\nclass ViewController: UIViewController {\n\n    let returnManager: IQKeyboardReturnManager = .init()\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n\n        // This will add all textInputView of the controller and start observing for textFieldShouldReturn events\n        returnManager.addResponderSubviews(of: self.view, recursive: true)\n\n        // If you would like to dismiss the UITextView on tapping on return then add this\n        returnManager.dismissTextViewOnReturn = true\n\n        // If you would like to change last textInputView return key type to done or something else, then add this\n        returnManager.lastTextInputViewReturnKeyType = .done\n\n        // If you would like to customize the navigation between textField by your own order then add them manually\n        returnManager.add(textInputView: textField1)\n        returnManager.add(textInputView: textField2)\n        returnManager.add(textInputView: textField3)\n        returnManager.add(textInputView: textField4)\n    }\n}\n\n// IQKeyboardReturnManager will forward all delegate callbacks to you, so you can customize the decisions \nextension ViewController: UITextFieldDelegate {\n    @objc public func textFieldShouldBeginEditing(_ textField: UITextField) -\u003e Bool {...}\n}\n```\n\n## Author\n\nIftekhar Qurashi hack.iftekhar@gmail.com\n\n## License\n\nIQKeyboardReturnManager is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackiftekhar%2Fiqkeyboardreturnmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackiftekhar%2Fiqkeyboardreturnmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackiftekhar%2Fiqkeyboardreturnmanager/lists"}