Files
FSCalendar/Example/StoryboardExampleViewController.h
T
f33chobits 9c971fe7cd Project restructure
Remove workspace structure for example project
2015-08-23 17:37:01 +08:00

23 lines
678 B
Objective-C

//
// FSViewController.h
// Chinese-Lunar-Calendar
//
// Created by Wenchao Ding on 01/29/2015.
// Copyright (c) 2014 Wenchao Ding. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "FSCalendar.h"
@interface StoryboardExampleViewController : UIViewController<UIScrollViewDelegate, FSCalendarDataSource, FSCalendarDelegate>
@property (weak, nonatomic) IBOutlet FSCalendar *calendar;
@property (assign, nonatomic) NSInteger theme;
@property (assign, nonatomic) FSCalendarFlow flow;
@property (assign, nonatomic) BOOL lunar;
@property (copy, nonatomic) NSDate *selectedDate;
@property (assign, nonatomic) NSUInteger firstWeekday;
@end