20 lines
535 B
Objective-C
20 lines
535 B
Objective-C
//
|
|
// ForgetViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/27.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaseViewController.h"
|
|
@interface ForgetViewController : BaseViewController
|
|
@property (weak, nonatomic) IBOutlet UITextField *phoneNumberFiled;
|
|
@property (weak, nonatomic) IBOutlet UITextField *verifyTextFiled;
|
|
|
|
- (IBAction)nextStep:(id)sender;
|
|
@property (weak, nonatomic) IBOutlet UIView *countryView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *countryCodeBtn;
|
|
|
|
@end
|