{"id":13995436,"url":"https://github.com/MattLLLLL/MDatePickerView","last_synced_at":"2025-07-22T21:32:56.335Z","repository":{"id":40638933,"uuid":"233508372","full_name":"MattLLLLL/MDatePickerView","owner":"MattLLLLL","description":"Quick and easy date picker.","archived":false,"fork":false,"pushed_at":"2022-01-28T15:06:12.000Z","size":59,"stargazers_count":470,"open_issues_count":14,"forks_count":37,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-10-28T17:04:57.603Z","etag":null,"topics":["cocopods","date","datepicker","ios","iphone","picker","pickerview","swift"],"latest_commit_sha":null,"homepage":"","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/MattLLLLL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-13T04:05:05.000Z","updated_at":"2024-05-18T12:13:34.000Z","dependencies_parsed_at":"2022-09-18T15:10:28.432Z","dependency_job_id":null,"html_url":"https://github.com/MattLLLLL/MDatePickerView","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattLLLLL%2FMDatePickerView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattLLLLL%2FMDatePickerView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattLLLLL%2FMDatePickerView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MattLLLLL%2FMDatePickerView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MattLLLLL","download_url":"https://codeload.github.com/MattLLLLL/MDatePickerView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226950660,"owners_count":17708259,"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":["cocopods","date","datepicker","ios","iphone","picker","pickerview","swift"],"created_at":"2024-08-09T14:03:24.610Z","updated_at":"2024-11-29T17:31:46.391Z","avatar_url":"https://github.com/MattLLLLL.png","language":"Swift","funding_links":[],"categories":["Swift"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"https://matt-bucket-images.s3-ap-southeast-1.amazonaws.com/MDatePickerView_Photo-3.png\" width=\"200\" height=\"420\"/\u003e \u003cimg src=\"https://matt-bucket-images.s3-ap-southeast-1.amazonaws.com/MDatePickerView.gif\" width=\"200\" height=\"420\"/\u003e \u003cimg src=\"https://matt-bucket-images.s3-ap-southeast-1.amazonaws.com/MDatePickerView_Photo-2.png\" width=\"200\" height=\"420\"/\u003e \u003cimg src=\"https://matt-bucket-images.s3-ap-southeast-1.amazonaws.com/MDatePickerView_Photo-4.png\" width=\"200\" height=\"420\"/\u003e\n\u003c/div\u003e\n\u003ch1\u003e\u003c/h1\u003e\n\u003cdiv align=\"center\"\u003e\n\u003cp\u003e\u003ca href=\"https://camo.githubusercontent.com/0188e770bbde9d9eae6720a70d5d3fad0952d77b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53776966742d322e322d6f72616e67652e737667\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/badge/Swift-4-orange.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"http://cocoapods.org/pods/MDatePickerView.\"\u003e\u003cimg src=\"https://img.shields.io/cocoapods/v/MDatePickerView.svg?style=flat\"\u003e\u003c/a\u003e\n\u003ca href=\"http://cocoapods.org/pods/glitchlabel\"\u003e\u003cimg alt=\"License\" src=\"https://img.shields.io/cocoapods/l/GlitchLabel.svg?style=flat\"\u003e\u003c/a\u003e\n\u003ca href=\"http://cocoapods.org/pods/glitchlabel\"\u003e\u003cimg alt=\"Platform\" src=\"https://img.shields.io/cocoapods/p/GlitchLabel.svg?style=flat\"\u003e\u003c/a\u003e\n\u003ca href=\"https://travis-ci.org/kciter/GlitchLabel\"\u003e\u003cimg alt=\"Build Status\" src=\"https://travis-ci.org/kciter/GlitchLabel.svg?branch=master\"\u003e\u003c/a\u003e\u003c/p\u003e\n\u003c/div\u003e\n\n## Requirements \n- iOS 9.0\n- Xcode 9\n- Swift 4.0\n\n## Installation\nYou can install MDatePickerView in several ways:\n\nAdd source files to your project.\n- Use CocoaPods:\n\n```swift\npod 'MDatePickerView'\n```\n\n## Usage\n```swift\nimport MDatePickerView\n```\n\n## Usage example\n```swift\nlazy var MDate : MDatePickerView = {\n        let mdate = MDatePickerView()\n        mdate.Color = .gray\n        mdate.delegate = self\n        mdate.from = 1980\n        mdate.to = 2100\n        return mdate\n    }()\n```\n\n**Adopt the MDatePickerViewDelegate protocol in your view controller, e.g.**\n```swift\nextension ViewController : MDatePickerViewDelegate {\n    func mdatePickerView(selectDate: Date) {\n        let formatter = DateFormatter()\n        formatter.dateFormat = \"yyyy - MM - dd\"\n        let date = formatter.string(from: selectDate)\n        Label.text = date\n    }\n}\n```\n\n## What's next\n- Any suggestions?\n\n## Contribution\n\n- If you found a bug, open an issue\n- If you have a feature request, open an issue\n- If you want to contribute, submit a pull request\n- If you have any issue or want help, please drop me a mail on bowei685@gmail.com\n\n## License\n\nMDatePickerView is distributed under the MIT license. [See LICENSE](https://github.com/MattLLLLL/MDatePickerView/blob/master/LICENSE.md) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMattLLLLL%2FMDatePickerView","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMattLLLLL%2FMDatePickerView","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMattLLLLL%2FMDatePickerView/lists"}