21 lines
641 B
Objective-C
21 lines
641 B
Objective-C
//
|
|
// FSCalendarScopeExampleViewController.h
|
|
// FSCalendar
|
|
//
|
|
// Created by Wenchao Ding on 8/29/15.
|
|
// Copyright (c) 2015 wenchaoios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "FSCalendar.h"
|
|
|
|
@interface FSCalendarScopeExampleViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, FSCalendarDataSource, FSCalendarDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet FSCalendar *calendar;
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
@property (weak, nonatomic) IBOutlet UISwitch *animationSwitch;
|
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *calendarHeightConstraint;
|
|
|
|
@end
|