Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/min/MNCalendarView
Highly customizable calendar component for iOS apps
https://github.com/min/MNCalendarView
Last synced: 3 months ago
JSON representation
Highly customizable calendar component for iOS apps
- Host: GitHub
- URL: https://github.com/min/MNCalendarView
- Owner: min
- License: mit
- Created: 2013-07-28T03:24:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-03T00:16:47.000Z (about 11 years ago)
- Last Synced: 2024-07-20T11:06:26.697Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 415 KB
- Stars: 398
- Watchers: 26
- Forks: 97
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MNCalendarView
==============MNCalendarView is a customizable calendar component backed by UICollectionView.
## Basic Usage
```objective-c
MNCalendarView *calendarView = [[MNCalendarView alloc] initWithFrame:self.view.bounds];
calendarView.selectedDate = [NSDate date];
calendarView.delegate = self;
```## Example