Go to file
dingwenchao e0fca5ab3f Fix size problems
Fix size problems
2016-03-14 18:20:11 +08:00
Example 2.0.0.beta 2016-03-14 12:11:52 +08:00
FSCalendar Fix size problems 2016-03-14 18:20:11 +08:00
SwiftExample 2.0.0.beta 2016-03-14 12:11:52 +08:00
.gitignore Update Example 2015-11-17 15:27:57 +08:00
FSCalendar.podspec 2.0.0.beta 2016-03-14 12:11:52 +08:00
LICENSE Alpha animation 2016-02-27 21:49:01 +08:00
MOREUSAGE.md Update README.md 2016-03-14 12:56:32 +08:00
README.md Update README.md 2016-03-14 12:56:32 +08:00

README.md

fscalendar

Version Platform Swift2 compatible Carthage compatible License Join the chat at https://gitter.im/WenchaoD/FSCalendar

Screenshots

iPhone

fscalendar

iPad

fscalendar-ipad

Working with AutoLayout and Orientation

fscalendar-scope-orientation-autolayout

Installation

CocoaPods:

  • For iOS8+: 👍
use_frameworks!
pod 'FSCalendar'
  • For iOS7+:
pod 'FSCalendar'

Carthage:

  • For iOS8+
github "WenchaoD/FSCalendar"

Manually:

  • Drag all files under FSCalendar folder into your project. 👍

Support IBInspectable / IBDesignable

Only the methods marked "👍" support IBInspectable / IBDesignable feature. Have fun with Interface builder

Setup

Use Interface Builder

  1. Drag an UIView object to ViewController Scene
  2. Change the Custom Class to FSCalendar
  3. Link dataSource and delegate to the ViewController

fscalendar-ib

  1. Finally, you should implement FSCalendarDataSource and FSCalendarDelegate in ViewController.m

Or use code

@property (weak , nonatomic) FSCalendar *calendar;
// In loadView(Recommended) or viewDidLoad
FSCalendar *calendar = [[FSCalendar alloc] initWithFrame:CGRectMake(0, 0, 320, 300)];
calendar.dataSource = self;
calendar.delegate = self;
[self.view addSubview:calendar];
self.calendar = calendar;

Or swift

private weak var calendar: FSCalendar!
// In loadView or viewDidLoad
let calendar = FSCalendar(frame: CGRect(x: 0, y: 0, width: 320, height: 300))
calendar.dataSource = self
calendar.delegate = self
view.addSubview(calendar)
self.calendar = calendar

Hide placeholder dates

fscalendar-showsplaceholder

  1. Set calendar.showsPlaceholders = NO;
  2. Implement -calendar:boundingRectWillChange:animated:
// For autoLayout
- (void)calendar:(FSCalendar *)calendar boundingRectWillChange:(CGRect)bounds animated:(BOOL)animated
{
    _calendarHeightConstraint.constant = CGRectGetHeight(bounds);
    [self.view layoutIfNeeded];
}
// For manual layout
- (void)calendar:(FSCalendar *)calendar boundingRectWillChange:(CGRect)bounds animated:(BOOL)animated
{
    calendar.frame = (CGRect){calendar.frame.origin,bounds.size};
}

Roll with Interface Builder

fscalendar - ibdesignable

More Usage

  • To view more usage, download the zip file and read the example.
  • Or you could refer to this document

If you like this repo

  • Star this repo.
  • Send your calendar screenshot or itunes link address here.

Support me via paypal

Contact

  • Email: f33chobits@gmail.com

License

FSCalendar is available under the MIT license. See the LICENSE file for more info.