ScenesRegisterPredefineViewController.h 742 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ScenesRegisterPredefineViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/1/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface ScenesRegisterPredefineViewController : 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 PredefinedSceneTitleViewCell : UITableViewCell
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  18. @end
  19. @interface PredefinedSceneTableViewCell : UITableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneName;
  21. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  22. @end