20 lines
475 B
Objective-C
20 lines
475 B
Objective-C
//
|
|
// FullScreenExample.h
|
|
// FSCalendar
|
|
//
|
|
// Created by Wenchao Ding on 9/16/15.
|
|
// Copyright (c) 2015 wenchaoios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "FSCalendar.h"
|
|
|
|
@interface FullScreenExampleViewController : UIViewController <FSCalendarDataSource,FSCalendarDelegate>
|
|
|
|
@property (weak, nonatomic) FSCalendar *calendar;
|
|
@property (assign, nonatomic) BOOL showsLunar;
|
|
|
|
- (void)todayItemClicked:(id)sender;
|
|
- (void)lunarItemClicked:(id)sender;
|
|
|
|
@end |