| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // JDViewController.h
- // kneet2
- //
- // Created by Created by Jason Lee on 10/1/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDObject.h"
- #import "KNTableViewCell.h"
- #import "KNView.h"
- @class CustomTableView;
- @interface JDViewController : UIViewController {
- @protected
- NSMutableArray *_popooverOptionArray;
- __weak UIView *_mainView;
- }
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UIView *mainView;
- #pragma mark - Instance Methods
- - (void)initTableViewAsDefaultStyle:(CustomTableView *)tableView;
- - (UIButton *)generateOptionButton;
- - (void)toggleOptionsWithArray:(id)sender btnArray:(NSMutableArray *)btnArray;
- - (void)toggleOptions:(id)sender;
- - (void)resetOptions;
- - (void)dismissOptionPopOver:(void (^)(void))completion;
- //table view
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- @end
|