24 lines
574 B
Objective-C
24 lines
574 B
Objective-C
//
|
|
// ButtonsViewController.h
|
|
// FSCalendar
|
|
//
|
|
// Created by dingwenchao on 4/15/16.
|
|
// Copyright © 2016 wenchaoios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "FSCalendar.h"
|
|
|
|
@interface ButtonsViewController : UIViewController <FSCalendarDataSource, FSCalendarDelegate>
|
|
|
|
@property (weak, nonatomic) FSCalendar *calendar;
|
|
@property (weak, nonatomic) UIButton *previousButton;
|
|
@property (weak, nonatomic) UIButton *nextButton;
|
|
|
|
@property (strong, nonatomic) NSCalendar *gregorian;
|
|
|
|
- (void)previousClicked:(id)sender;
|
|
- (void)nextClicked:(id)sender;
|
|
|
|
@end
|