| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // OptionPopOverViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/20/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class WYPopoverController;
- @interface OptionPopOverViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) NSMutableArray *dataArray;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) WYPopoverController *poc;
- #pragma mark - Instance Methods
- @end
- /*
- @interface OptionPopOverData : JDObject
- @property (strong, nonatomic) NSString *iconName;
- @property (strong, nonatomic) NSString *menuName;
- @property (weak, nonatomic) id target;
- @property (assign, nonatomic) SEL selector;
- - (instancetype)initWithDictionary:(NSDictionary *)dic;
- @end
- */
- @class CustomLabel;
- @class CustomImageView;
- @interface OptionPopOverTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *icon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMenuName;
- @end
|