| 123456789101112131415161718192021222324252627282930313233 |
- //
- // ChangeHomeNameViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/13/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class HomeGroupModel;
- @class CustomTextField2;
- @class CustomLabel;
- @class CustomButton;
- @interface ChangeHomeNameViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) HomeGroupModel *homegrp;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtHomeName;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- #pragma mark - Instance Methods
- - (IBAction)btnConfirmTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
|