| 12345678910111213141516171819202122232425262728 |
- //
- // MainViewController.h
- // kneet2
- //
- // Created by Jason Lee on 10/2/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface MainViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UIView *tabBar;
- @property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintExpandViewTop;
- #pragma mark - Instance Methods
- - (IBAction)btnThingsTouched:(id)sender;
- - (IBAction)btnRuleTouched:(id)sender;
- - (IBAction)btnMemberTouched:(id)sender;
- - (IBAction)btnExtendTouched:(id)sender;
- - (IBAction)btnCollapseTouched:(id)sender;
- @end
|