// // ScenesRegisterPredefineViewController.h // kneet // // Created by Jason Lee on 4/1/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @interface ScenesRegisterPredefineViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet UITableView *tableView; #pragma mark - Instance Methods @end @class CustomLabel; @class CustomImageView; @interface PredefinedSceneTitleViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @end @interface PredefinedSceneTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneName; @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon; @end