ChangeDeviceNamePopupView.h 687 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ChangeDeviceNamePopupView.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 5. 12..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @protocol changeDeviceNameDelegate <NSObject>
  11. - (void)changeDeviceName:(NSString *)deviceName;
  12. @end
  13. @class CustomTextField;
  14. @class DeviceDetailModel;
  15. @interface ChangeDeviceNamePopupView : CustomAlertView
  16. @property (strong , nonatomic) DeviceDetailModel *deviceDetailModel;
  17. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputDeviceName; // 장치 이름
  18. - (id)initFromNib:(DeviceDetailModel*)detailModel;
  19. @property(weak, nonatomic) id <changeDeviceNameDelegate> delegate;
  20. @end