A custom calendar control in iOS
FDCalendar is a custom calendar control which includes world and chinese calendar date. It supports scrolling by left and right to jump to previous or next month date, also it can jump to the date which is selected. Otherwise it seems beautiful and good using. If you want to change some style of it, you need to fork it and modify the properties by yourself. If you think it is helpful, please star it.
FDCalendar *calendar = [[FDCalendar alloc] initWithCurrentDate:[NSDate date]];
CGRect frame = calendar.frame;
frame.origin.y = 20;
calendar.frame = frame;
[self.view addSubview:calendar];
MIT