RulesRegisterPredefineViewController.h 733 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // RulesRegisterPredefineViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 3/19/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface RulesRegisterPredefineViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. #pragma mark - Instance Methods
  13. @end
  14. @class CustomLabel;
  15. @class CustomImageView;
  16. @interface PredefinedTitleViewCell : UITableViewCell
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  18. @end
  19. @interface PredefinedTableViewCell : UITableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
  21. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  22. @end