ModifyDeviceNamePopupView.h 414 B

123456789101112131415161718192021
  1. //
  2. // ModifyDeviceNamePopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 12/3/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomTextField2;
  11. @interface ModifyDeviceNamePopupView : CustomAlertView
  12. @property (weak, nonatomic) NSString *refDeviceName;
  13. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtDeviceName;
  14. - (id)initFromNib;
  15. @end