MainViewController.h 683 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MainViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/2/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface MainViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UIView *tabBar;
  12. @property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintExpandViewTop;
  14. #pragma mark - Instance Methods
  15. - (IBAction)btnThingsTouched:(id)sender;
  16. - (IBAction)btnRuleTouched:(id)sender;
  17. - (IBAction)btnMemberTouched:(id)sender;
  18. - (IBAction)btnExtendTouched:(id)sender;
  19. - (IBAction)btnCollapseTouched:(id)sender;
  20. @end