// // GroupModifyViewController.h // kneet // // Created by Jason Lee on 4/30/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @class GroupsModel; @class CustomButton; @interface GroupModifyViewController : JDViewController #pragma mark - Properties @property (copy, nonatomic) GroupsModel *group; @property (weak, nonatomic) IBOutlet UITableView *tableView; @property (weak, nonatomic) IBOutlet CustomButton *btnGroupName; #pragma mark - Instance Methods - (void)prepareViewDidLoad; - (IBAction)btnGroupNameTouched:(id)sender; @end @class CustomImageView; @class CustomLabel; @class CustomButton; @class DeviceModel; @interface GroupModifyTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon; @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomButton *btnDelete; @end