OptionPopOverViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // OptionPopOverViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/20/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class WYPopoverController;
  10. @interface OptionPopOverViewController : JDViewController
  11. #pragma mark - Properties
  12. @property (strong, nonatomic) NSMutableArray *dataArray;
  13. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  14. @property (weak, nonatomic) WYPopoverController *poc;
  15. #pragma mark - Instance Methods
  16. @end
  17. /*
  18. @interface OptionPopOverData : JDObject
  19. @property (strong, nonatomic) NSString *iconName;
  20. @property (strong, nonatomic) NSString *menuName;
  21. @property (weak, nonatomic) id target;
  22. @property (assign, nonatomic) SEL selector;
  23. - (instancetype)initWithDictionary:(NSDictionary *)dic;
  24. @end
  25. */
  26. @class CustomLabel;
  27. @class CustomImageView;
  28. @interface OptionPopOverTableViewCell : UITableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomImageView *icon;
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblMenuName;
  31. @end