36 lines
950 B
Objective-C
36 lines
950 B
Objective-C
//
|
|
// RegistViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/27.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MBProgressHUD.h"
|
|
#import "BaseViewController.h"
|
|
|
|
//#import <BaiduMapAPI_Search/BMKSearchComponent.h>
|
|
|
|
@interface RegistViewController : UIViewController
|
|
{
|
|
// BMKGeoCodeSearch*_geocodesearch;
|
|
}
|
|
@property (weak, nonatomic) IBOutlet UITextField *phoneNumberTextField;
|
|
@property (weak, nonatomic) IBOutlet UITextField *verifyTextField;
|
|
@property (weak, nonatomic) IBOutlet UITextField *passwordTextField;
|
|
@property (weak, nonatomic) IBOutlet UIView *countryView;
|
|
|
|
- (IBAction)registBtn:(id)sender;
|
|
- (IBAction)chooseBtn:(id)sender;
|
|
@property(nonatomic,strong)UIScrollView*scrollView;
|
|
|
|
- (IBAction)verifyBtn:(id)sender;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *countrySelectBtn;
|
|
@property (assign, nonatomic) BOOL isBind;
|
|
@property (assign, nonatomic) BOOL isFromLogin;
|
|
|
|
|
|
@end
|