SettingsNameSetViewController.h 551 B

12345678910111213141516171819202122
  1. //
  2. // SettingsNameSetViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 19..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @class CustomTextField;
  12. @interface SettingsNameSetViewController : JDViewController
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputName; //이름 입력
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; //취소 버튼
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnSave; //저장 버튼
  16. @end