JDViewController.h 548 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // JDViewController.h
  3. // kneet2
  4. //
  5. // Created by Created by Jason Lee on 10/1/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDObject.h"
  9. @class CustomTableView;
  10. @interface JDViewController : UIViewController {
  11. @protected
  12. NSMutableArray *_popooverOptionArray;
  13. __weak UIView *_mainView;
  14. }
  15. #pragma mark - Properties
  16. #pragma mark - Instance Methods
  17. - (UIButton *)generateOptionButton;
  18. - (void)setMenuPanGestureOnThis;
  19. - (void)resetOptions;
  20. - (void)dismissOptionPopOver:(void (^)(void))completion;
  21. @end