GroupModifyViewController.h 917 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // GroupModifyViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/30/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class GroupsModel;
  10. @class CustomButton;
  11. @interface GroupModifyViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (copy, nonatomic) GroupsModel *group;
  14. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnGroupName;
  16. #pragma mark - Instance Methods
  17. - (void)prepareViewDidLoad;
  18. - (IBAction)btnGroupNameTouched:(id)sender;
  19. @end
  20. @class CustomImageView;
  21. @class CustomLabel;
  22. @class CustomButton;
  23. @class DeviceModel;
  24. @interface GroupModifyTableViewCell : UITableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  27. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  28. @end