-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRTORatioVC.h
More file actions
21 lines (19 loc) · 764 Bytes
/
RTORatioVC.h
File metadata and controls
21 lines (19 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// RTORatioVC.h
// Ratio
//
// Created by Matthew Hillman on 9/21/13.
// Copyright (c) 2013 Matthew Hillman. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RTORatio.h"
@interface RTORatioVC : UIViewController
@property (nonatomic, strong) RTORatio *ratio;
@property (nonatomic) CGPoint animationCenter;
@property (weak, nonatomic) IBOutlet UISegmentedControl *viewSelectSegmentedControl;
@property (weak, nonatomic) IBOutlet UIView *calculateView;
@property (weak, nonatomic) IBOutlet UICollectionView *ratioCollectionView;
@property (weak, nonatomic) IBOutlet UITableView *calculateTableView;
@property (weak, nonatomic) IBOutlet UITextView *instructionsTextView;
- (void)changeRatioViewWithIndex:(NSInteger)index animated:(BOOL)animated;
@end