AssistoLab / FSCalendar

A superiorly awesome iOS7+ calendar control, compatible with both Objective-c and Swift2

Home Page:https://www.cocoacontrols.com/controls/fscalendar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fscalendar

Version Platform Swift2 compatible Carthage compatible License

Screenshots

iPhone

fscalendar

iPad

fscalendar-ipad

Installation

Cocoapods:

  • For iOS8+: ๐Ÿ‘
use_frameworks!
pod 'FSCalendar'
  • For iOS7+:
pod 'FSCalendar'

Carthage:

  • For iOS8+
github "WenchaoIOS/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

Indian

calendar.identifier = NSCalendarIdentifierIndian;

indian

Persian

calendar.identifier = NSCalendarIdentifierPesian;

persian

Hebrew

calendar.identifier = NSCalendarIdentifierHebrew;

hebrew

Islamic

calendar.identifier = NSCalendarIdentifierIslamic;

islamic

Roll with Interface Builder

fscalendar - ibdesignable

More Usage

  • To view more usage, download the zip file and read the example.
  • Or your 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.

About

A superiorly awesome iOS7+ calendar control, compatible with both Objective-c and Swift2

https://www.cocoacontrols.com/controls/fscalendar

License:MIT License


Languages

Language:Objective-C 97.2%Language:Swift 2.5%Language:Ruby 0.3%