ChangeEmailPopupView.h 353 B

123456789101112131415161718192021
  1. //
  2. // ChangeEmailPopupView.h
  3. // OneCable
  4. //
  5. // Created by Jason Lee on 01/14/16.
  6. // Copyright (c) 2016 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomTextField;
  11. @interface ChangeEmailPopupView : CustomAlertView
  12. @property (weak, nonatomic) IBOutlet CustomTextField *txtTempEmail;
  13. - (id)initFromNib;
  14. @end