| 123456789101112131415161718192021 |
- //
- // ModifyDeviceNamePopupView.h
- // kneet
- //
- // Created by Jason Lee on 12/3/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class CustomTextField2;
- @interface ModifyDeviceNamePopupView : CustomAlertView
- @property (weak, nonatomic) NSString *refDeviceName;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtDeviceName;
- - (id)initFromNib;
- @end
|