| 12345678910111213141516171819202122 |
- //
- // SettingsNameSetViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 19..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @class CustomTextField;
- @interface SettingsNameSetViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomTextField *txtInputName; //이름 입력
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; //취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnSave; //저장 버튼
- @end
|