{"id":16835274,"url":"https://github.com/hackiftekhar/iqdropdowntextfield","last_synced_at":"2025-05-15T13:04:15.356Z","repository":{"id":11738091,"uuid":"14264820","full_name":"hackiftekhar/IQDropDownTextField","owner":"hackiftekhar","description":"TextField with DropDown support using UIPickerView","archived":false,"fork":false,"pushed_at":"2025-02-19T13:29:19.000Z","size":696,"stargazers_count":312,"open_issues_count":0,"forks_count":83,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-06T04:36:20.701Z","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":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-11-09T20:51:24.000Z","updated_at":"2025-03-28T07:24:57.000Z","dependencies_parsed_at":"2023-02-12T02:46:26.286Z","dependency_job_id":"dacd8d1e-33a3-4555-a231-eaa9d23ffc97","html_url":"https://github.com/hackiftekhar/IQDropDownTextField","commit_stats":{"total_commits":92,"total_committers":21,"mean_commits":4.380952380952381,"dds":"0.42391304347826086","last_synced_commit":"d01af57e720b8edd5c4ea26a268f5987160ab9e8"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQDropDownTextField","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQDropDownTextField/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQDropDownTextField/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackiftekhar%2FIQDropDownTextField/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackiftekhar","download_url":"https://codeload.github.com/hackiftekhar/IQDropDownTextField/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247685627,"owners_count":20979085,"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","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:33.941Z","updated_at":"2025-04-07T16:11:32.352Z","avatar_url":"https://github.com/hackiftekhar.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"IQDropDownTextField\n===================\n\nTextField with DropDown support using UIPickerView\n\n[![Simple](https://raw.githubusercontent.com/hackiftekhar/IQDropDownTextField/master/Images/simple.png)]\n[![Large Text](https://raw.githubusercontent.com/hackiftekhar/IQDropDownTextField/master/Images/large_text.png)]\n[![Multi List](https://raw.githubusercontent.com/hackiftekhar/IQDropDownTextField/master/Images/multi_list.png)]\n[![Date](https://raw.githubusercontent.com/hackiftekhar/IQDropDownTextField/master/Images/date.png)]\n[![Time](https://raw.githubusercontent.com/hackiftekhar/IQDropDownTextField/master/Images/time.png)]\n[![Date Time](https://raw.githubusercontent.com/hackiftekhar/IQDropDownTextField/master/Images/date_time)]\n\n## Installing\n\nInstall using [cocoapods](http://cocoapods.org). Add in your `Podfile`:\n\n```\npod 'IQDropDownTextField'\n```\n\nOr below for Swift version\n```\npod 'IQDropDownTextFieldSwift'\n```\n\n## How to Use\n\nIn IB (_story boards or xibs_) you can add `UITextField`'s and set the class as `IQDropDownTextField`\n\n### Objective-C\n\nNothing more easy than it!\n\n```objective-c\n\n@implementation ViewController\n\n- (void)viewDidLoad\n{\n    [super viewDidLoad];\n    \n    textFieldTextPicker.isOptionalDropDown = NO;\n    [textFieldTextPicker setItemList:[NSArray arrayWithObjects:@\"London\",@\"Johannesburg\",@\"Moscow\",@\"Mumbai\",@\"Tokyo\",@\"Sydney\", nil]];\n}\n@end\n\n```\n\n### Swift\n\nIt's very simple to setup your `IQDropDownTextField`. The sample below shows you how to:\n\n```swift\nimport IQDropDownTextFieldSwift\n\nclass MyController : UIViewController {\n  @IBOutlet var occupationTextField: IQDropDownTextField!\n  \n  override func viewDidLoad() {\n    occupationTextField.isOptionalDropDown = false\n    occupationTextField.itemList = [\"programmer\", \"teacher\", \"engineer\"]\n  }\n}\n```\n\nAnd that's all you need! =)\n\n## Contributions\n\nAny contribution is more than welcome! You can contribute through pull requests and issues on GitHub.\n\n## Author\n\nIf you wish to contact me, email at: hack.iftekhar@gmail.com\n\n## LICENSE\n\nCopyright (c) 2010-2015\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackiftekhar%2Fiqdropdowntextfield","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackiftekhar%2Fiqdropdowntextfield","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackiftekhar%2Fiqdropdowntextfield/lists"}