1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //
- // JXAccountPwd2.m
- // shiku_im
- //
- // Created by 123 on 2020/5/26.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import "JXAccountPwd2.h"
- #import "JXPwdSuccessPhoneVc.h"
- @interface JXAccountPwd2 ()
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topViewH;
- @property (weak, nonatomic) IBOutlet UITextField *jixinTF;
- @property (weak, nonatomic) IBOutlet UITextField *nPwdTF;
- @property (weak, nonatomic) IBOutlet UITextField *qrPwdTF;
- @end
- @implementation JXAccountPwd2
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view from its nib.
-
- self.topViewH.constant=JX_SCREEN_TOP;
-
- [self defineNavBarXXX:@"即信密码" andRinghtBtnImg:@"完成"];
- [self.rightBtn addTarget:self action:@selector(rightBtnCLick) forControlEvents:UIControlEventTouchUpInside];
- }
- /**
- * 完成
- */
- - (void)rightBtnCLick{
-
-
- }
- - (void)compleBtn {
-
- JXPwdSuccessPhoneVc *vc=[JXPwdSuccessPhoneVc new];
- [g_navigation pushViewController:vc animated:YES];
-
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- -(void) didServerResultSucces:(JXConnection*)aDownload dict:(NSDictionary*)dict array:(NSArray*)array1{
- [SVProgressHUD dismiss];
-
-
- if( [aDownload.action isEqualToString:act_getBindInfo] ){
-
- }
- }
- -(int) didServerResultFailed:(JXConnection*)aDownload dict:(NSDictionary*)dict{
- [SVProgressHUD dismiss];
- if ([aDownload.action isEqualToString:act_UserBindWXAccount]) {
- [SVProgressHUD showWithStatus:@"正在加载"];
- }
- return 1;
- }
-
- @end
|