{"id":19082367,"url":"https://github.com/raman43mann/rjcalendar","last_synced_at":"2025-07-31T01:33:28.835Z","repository":{"id":246641854,"uuid":"821732137","full_name":"raman43mann/RJCalendar","owner":"raman43mann","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-19T13:42:50.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T18:43:10.758Z","etag":null,"topics":["calendar","calendarcustom","calendarsimple","customcalendar","customcalendarview","horizontal","horizontalcalendar","horizontalcalendarswift","horizontalcalendarview","horizontalios","ioscalendar","rj","rjcalendar","rjcalendarview","simplecalendar","swiftcalendar"],"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/raman43mann.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":"2024-06-29T09:23:57.000Z","updated_at":"2025-02-20T04:10:38.000Z","dependencies_parsed_at":"2024-11-09T02:43:08.584Z","dependency_job_id":"5de5074d-1487-48ed-871b-6acf096d3198","html_url":"https://github.com/raman43mann/RJCalendar","commit_stats":null,"previous_names":["raman43mann/rjcalendar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raman43mann/RJCalendar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raman43mann%2FRJCalendar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raman43mann%2FRJCalendar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raman43mann%2FRJCalendar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raman43mann%2FRJCalendar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raman43mann","download_url":"https://codeload.github.com/raman43mann/RJCalendar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raman43mann%2FRJCalendar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267972820,"owners_count":24174386,"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":["calendar","calendarcustom","calendarsimple","customcalendar","customcalendarview","horizontal","horizontalcalendar","horizontalcalendarswift","horizontalcalendarview","horizontalios","ioscalendar","rj","rjcalendar","rjcalendarview","simplecalendar","swiftcalendar"],"created_at":"2024-11-09T02:43:04.085Z","updated_at":"2025-07-31T01:33:28.747Z","avatar_url":"https://github.com/raman43mann.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RJCalendar\n\nUse RJCalendar to select dates in your app . You can easiy integrate this code in your swift iOS based application  .\n\n## Clone \nTo run the RJCalendar project, clone the repo, and run the project.\u003cbr /\u003e\n\u0026nbsp;\u0026nbsp;OR\u003cbr /\u003e\nManually -\u003e Copy the folder named \"Source\" and paste to your codes target directory.\n\n\u003cimg src = \"https://github.com/raman43mann/RJCalendar/assets/154659783/5ae3d580-a38c-4bbe-844b-75d35cd4918a\" width=\"300\" height=\"670\"\u003e\n\n## How to use\n\nStep 1 : Integrate the files to your project.\n\nStep 2 : Add custom view as XIB or in UIViewController or in TableView/CollectionView Cells Content View , then add custom class to view as \"RJCalendarView\" in storyboard and UI part.\n\nStep 3 : Create an outlet for this view in your assosiated file.\u003cbr /\u003e\nlike this\u003cbr /\u003e\n@IBOutlet weak var calendarView: RJCalendarView!\n\nStep 4 : You can setup the colors for selected or unselected items from the code as well from Attribute Inspector.\n\n        calendarView.selectedDayColor = .systemGray6\n        calendarView.normalDayColor = .clear\n        calendarView.dayTextColor = .black\n        calendarView.weekDayTextColor = .gray\n        calendarView.dotColor = .red\n        calendarView.selectedDayTextColor = .blue\n        \nStep 5: Custom enumuration property allow you to show the custom dates in calendar as per your requirement.\n\n        calendarView.dateRange = .threeMonths\n\n        calendarView.dateRange = .sixMonths\n\n        calendarView.dateRange = .oneYear\n        \n        let currentDate = Date() , futureDate = Date()\n        calendarView.dateRange = .custom(startDate: currentDate, endDate: futureDate)\n\n\nStep 6 : It allow you to get a selected date with onDateSelected clouser method, Where you can easily format you date as per your requirement(dd/MM/yyyy).\n\n             calendarView.onDateSelected = {\n                   date in\n                   let formatter = DateFormatter()\n                   formatter.dateFormat = \"dd-MM-yyyy\"\n                   formatter.timeZone = TimeZone.current\n                   \n                   debugPrint(\"Date\",formatter.string(from: date))\n               }\n\n\n\n## Requirements\n- Xcode 14 to onwards\n- iOS 15,*\n- iPad OS 15,*\n- Swift 5.0 \n\n\n## Author\nraman43mann, rjmann43@gmail.com , Linkedin : https://www.linkedin.com/in/raman-mann-957201154\n\n## License\nRJCalendar 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%2Framan43mann%2Frjcalendar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framan43mann%2Frjcalendar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framan43mann%2Frjcalendar/lists"}