JDViewController.h 803 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #import "KNTableViewCell.h"
  10. @class CustomTableView;
  11. @interface JDViewController : UIViewController {
  12. @protected
  13. NSMutableArray *_popooverOptionArray;
  14. __weak UIView *_mainView;
  15. }
  16. #pragma mark - Properties
  17. @property (weak, nonatomic) IBOutlet UIView *mainView;
  18. #pragma mark - Instance Methods
  19. - (void)initTableViewAsDefaultStyle:(CustomTableView *)tableView;
  20. - (UIButton *)generateOptionButton;
  21. - (void)toggleOptions:(id)sender;
  22. - (void)resetOptions;
  23. - (void)dismissOptionPopOver:(void (^)(void))completion;
  24. //table view
  25. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
  26. @end