Files
FSCalendar/Example/FSCalendarScopeExampleViewController.h
T
dingwenchao 131bba5677 Fix crash while frequently changing scope
1. Fix crash while frequently changing scope
2. Fix wrong cell layout while changing orientation under autoLayout
3. Example support RTL
4. Spelling check
2016-02-25 11:35:02 +08:00

23 lines
680 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;
- (IBAction)toggleClicked:(id)sender;
@end