JXAccountPwd2.m 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //
  2. // JXAccountPwd2.m
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/5/26.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import "JXAccountPwd2.h"
  9. #import "JXPwdSuccessPhoneVc.h"
  10. @interface JXAccountPwd2 ()
  11. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topViewH;
  12. @property (weak, nonatomic) IBOutlet UITextField *jixinTF;
  13. @property (weak, nonatomic) IBOutlet UITextField *nPwdTF;
  14. @property (weak, nonatomic) IBOutlet UITextField *qrPwdTF;
  15. @end
  16. @implementation JXAccountPwd2
  17. - (void)viewDidLoad {
  18. [super viewDidLoad];
  19. // Do any additional setup after loading the view from its nib.
  20. self.topViewH.constant=JX_SCREEN_TOP;
  21. [self defineNavBarXXX:@"即信密码" andRinghtBtnImg:@"完成"];
  22. [self.rightBtn addTarget:self action:@selector(rightBtnCLick) forControlEvents:UIControlEventTouchUpInside];
  23. }
  24. /**
  25. * 完成
  26. */
  27. - (void)rightBtnCLick{
  28. }
  29. - (void)compleBtn {
  30. JXPwdSuccessPhoneVc *vc=[JXPwdSuccessPhoneVc new];
  31. [g_navigation pushViewController:vc animated:YES];
  32. }
  33. /*
  34. #pragma mark - Navigation
  35. // In a storyboard-based application, you will often want to do a little preparation before navigation
  36. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  37. // Get the new view controller using [segue destinationViewController].
  38. // Pass the selected object to the new view controller.
  39. }
  40. */
  41. -(void) didServerResultSucces:(JXConnection*)aDownload dict:(NSDictionary*)dict array:(NSArray*)array1{
  42. [SVProgressHUD dismiss];
  43. if( [aDownload.action isEqualToString:act_getBindInfo] ){
  44. }
  45. }
  46. -(int) didServerResultFailed:(JXConnection*)aDownload dict:(NSDictionary*)dict{
  47. [SVProgressHUD dismiss];
  48. if ([aDownload.action isEqualToString:act_UserBindWXAccount]) {
  49. [SVProgressHUD showWithStatus:@"正在加载"];
  50. }
  51. return 1;
  52. }
  53. @end