ChangeDeviceNamePopupView.h 815 B

12345678910111213141516171819202122232425262728293031323334
  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. @class DeviceModel;
  16. @interface ChangeDeviceNamePopupView : CustomAlertView
  17. @property (strong, nonatomic) DeviceModel *deviceModel;
  18. @property (strong , nonatomic) DeviceDetailModel *deviceDetailModel;
  19. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputDeviceName; // 장치 이름
  20. - (id)initFromNib:(DeviceDetailModel*)detailModel;
  21. - (void)showChangeDevice:(DeviceModel*)deviceModel;
  22. @property(weak, nonatomic) id <changeDeviceNameDelegate> delegate;
  23. @end