// // ThingsAddWallpadSubViewController.h // kneet // // Created by Jason Lee on 6/30/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDTableViewController.h" @protocol GroupsModel; @class SelectButton; @class CustomLabel; @class CustomButton; @interface ThingsAddWallpadSubViewController : JDTableViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (strong, nonatomic) NSMutableDictionary *wallpads; @property (weak, nonatomic) IBOutlet SelectButton *btnWallpads; @property (weak, nonatomic) IBOutlet CustomButton *btnAddSubDevice; @property (weak, nonatomic) IBOutlet CustomLabel *lblManualDesc; @property (weak, nonatomic) IBOutlet CustomButton *btnManual; #pragma mark - Instance Methods - (IBAction)btnAddSubDeviceTouched:(id)sender; - (IBAction)btnManualTouched:(id)sender; @end