forked from romaonthego/RETableViewManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControlsViewController.h
More file actions
22 lines (18 loc) · 824 Bytes
/
Copy pathControlsViewController.h
File metadata and controls
22 lines (18 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// ControlsViewController.h
// RETableViewManagerExample
//
// Created by Roman Efimov on 2/28/13.
// Copyright (c) 2013 Roman Efimov. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RETableViewManager.h"
#import "RETableViewOptionsController.h"
@interface ControlsViewController : UITableViewController <RETableViewManagerDelegate>
@property (strong, readonly, nonatomic) RETableViewManager *manager;
@property (strong, readonly, nonatomic) RETableViewSection *basicControlsSection;
@property (strong, readonly, nonatomic) RETableViewSection *creditCardSection;
@property (strong, readonly, nonatomic) RETableViewSection *accessoriesSection;
@property (strong, readonly, nonatomic) RETableViewSection *cutCopyPasteSection;
@property (strong, readonly, nonatomic) RETableViewSection *buttonSection;
@end