28 lines
745 B
Objective-C
28 lines
745 B
Objective-C
//
|
|
// HidePlaceholderViewController.h
|
|
// FSCalendar
|
|
//
|
|
// Created by dingwenchao on 3/9/16.
|
|
// Copyright © 2016 wenchaoios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "FSCalendar.h"
|
|
|
|
@interface HidePlaceholderViewController : UIViewController <FSCalendarDataSource,FSCalendarDelegate>
|
|
|
|
@property (weak, nonatomic) FSCalendar *calendar;
|
|
|
|
@property (weak, nonatomic) UIView *bottomContainer;
|
|
@property (weak, nonatomic) UILabel *eventLabel;
|
|
@property (weak, nonatomic) UIButton *nextButton;
|
|
@property (weak, nonatomic) UIButton *prevButton;
|
|
|
|
@property (strong, nonatomic) NSCalendar *gregorian;
|
|
@property (strong, nonatomic) NSDateFormatter *dateFormatter;
|
|
|
|
- (void)nextClicked:(id)sender;
|
|
- (void)prevClicked:(id)sender;
|
|
|
|
@end
|