19 lines
464 B
Objective-C
19 lines
464 B
Objective-C
//
|
|
// ChangeSecretCodeController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/29.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
@interface ChangeSecretCodeController : BaseViewController
|
|
@property (weak, nonatomic) IBOutlet UITextField *oldSecretCode;
|
|
@property (weak, nonatomic) IBOutlet UITextField *secretCodeNew;
|
|
@property (weak, nonatomic) IBOutlet UITextField *repeadNewCode;
|
|
- (IBAction)finishBtn:(id)sender;
|
|
|
|
|
|
@end
|