123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- //
- // JZForgetCfmViewController.m
- // JIZHANG
- //
- // Created by jikaipeng on 2017/10/30.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "JZForgetCfmViewController.h"
- #import "JZNavTopview.h"
- #import "JZForgetPwdView.h"
- #import "JZFindPwdComViewController.h"
- #import "JZMD5Manager.h"
- static int count = 0; // 短信倒计时计数
- @interface JZForgetCfmViewController ()
- @property (nonatomic, strong) JZNavTopview *topview;
- @property (nonatomic, strong) JZForgetPwdView *phoneview;
- @property (nonatomic, strong) JZForgetPwdView *codeView;
- @property (nonatomic, strong) UIButton *nextBtn;
- @property (nonatomic, strong) NSTimer *timer;
- @end
- @implementation JZForgetCfmViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- self.topview = [[JZNavTopview alloc]initWithTitle:@"找回密码"];
- WS(weakself);
- self.topview.dismissAction = ^{
- [weakself dismissViewControllerAnimated:YES completion:nil];
- };
- [self.view addSubview:self.topview];
- self.phoneview = [[JZForgetPwdView alloc]init];
- self.phoneview.leftLabel.text = @"手机号";
- self.phoneview.textfield.text = self.phoneString;
- self.phoneview.textfield.enabled = NO;
- self.codeView = [[JZForgetPwdView alloc]init];
- self.codeView.leftLabel.text = @"验证码";
- self.codeView.textfield.placeholder = @"请输入验证码";
- self.codeView.sendCodeBtn.hidden = NO;
- self.codeView.lineview2.hidden = NO;
- self.codeView.userInteractionEnabled = YES;
- self.codeView.textfield.keyboardType = UIKeyboardTypeNumberPad;
- // [self.codeView.sendCodeBtn setTitle:@"发送验证码" forState:UIControlStateNormal];
- NSAttributedString *attstring = [[NSAttributedString alloc]initWithString:@"发送验证码" attributes:@{NSForegroundColorAttributeName:[UIColor titleColor],NSFontAttributeName:FONT_SYS(14)}];
- [self.codeView.sendCodeBtn setAttributedTitle:attstring forState:UIControlStateNormal];
- [self.codeView.sendCodeBtn addTarget:self action:@selector(sendAction) forControlEvents:UIControlEventTouchUpInside];
- [self.codeView.textfield addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
- self.nextBtn = [UIButton buttonWithType:UIButtonTypeCustom];
- self.nextBtn.backgroundColor = [UIColor baseColor];
- [self.nextBtn setTitle:@"下一步" forState:UIControlStateNormal];
- [self.nextBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
- self.nextBtn.backgroundColor = [UIColor btnGrayColor];
- self.nextBtn.cornerRadius = 12;
- self.nextBtn.layer.masksToBounds = YES;
- [self.nextBtn addTarget:self action:@selector(nextAction) forControlEvents:UIControlEventTouchUpInside];
- [self.view addSubview:self.phoneview];
- [self.view addSubview:self.codeView];
- [self.view addSubview:self.nextBtn];
- WS(weakSelf);
- // self.codeView.returnaction = ^{
- // [weakself sendAction];
- // };
- [self.phoneview mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(weakSelf.view).offset(30);
- make.top.equalTo(weakSelf.topview.mas_bottom).offset(50);
- make.right.equalTo(weakSelf.view).offset(-30);
- make.height.equalTo(@50);
- }];
- [self.codeView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(weakSelf.phoneview.mas_left);
- make.right.equalTo(weakSelf.phoneview.mas_right);
- make.top.equalTo(weakSelf.phoneview.mas_bottom).offset(20);
- make.height.equalTo(@50);
- }];
- [self.nextBtn mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(weakSelf.phoneview.mas_left);
- make.right.equalTo(weakSelf.phoneview.mas_right);
- make.top.equalTo(weakSelf.codeView.mas_bottom).offset(50);
- make.height.equalTo(@50);
- }];
- [self sendAction];
- }
- - (void)nextAction{
-
- NSString *URLString = [NSString stringWithFormat:@"%@/validateCode",URL];
- [JZHttp post:URLString params:@{@"mobile":self.phoneview.textfield.text,@"verifyCode":self.codeView.textfield.text} success:^(id json) {
- CATransition *animation = [CATransition animation];
- [animation setDuration:0.3];
- [animation setType:kCATransitionMoveIn];
- [animation setSubtype:kCATransitionFromRight];
- [[[[UIApplication sharedApplication] keyWindow] layer] addAnimation:animation forKey:nil];
- JZFindPwdComViewController *findVC = [[JZFindPwdComViewController alloc]init];
- findVC.phoneString = self.phoneString;
- [self presentViewController:findVC animated:NO completion:nil];
- } failure:^(NSError *error) {
-
- }];
-
- }
- - (void)textFieldDidChange:(UITextField *)textField{
- if (self.codeView.textfield == textField) {
- if (self.codeView.textfield.text.length) {
- self.nextBtn.backgroundColor = [UIColor baseColor];
- } else{
- self.nextBtn.backgroundColor = [UIColor btnGrayColor];
- }
- }
- }
- - (void)sendAction{
- NSString *URLString = [NSString stringWithFormat:@"%@/sendCode",URL];
- NSString *dateTimeInterval = [NSString stringWithFormat:@"%.0f",[[NSDate date]timeIntervalSince1970]];
- NSString *String = [NSString stringWithFormat:@"b4b80c2676828f1df375684100f56d48%@%@",self.phoneview.textfield.text,dateTimeInterval];
- self.codeView.sendCodeBtn.enabled = NO;
- [JZHttp post:URLString params:@{@"mobile":self.phoneview.textfield.text,@"code_type":@"1",@"timestamps":dateTimeInterval,@"signature":[[JZMD5Manager sharedInstance] md5:String]} success:^(id json) {
- if (json) {
- self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateTime) userInfo:nil repeats:YES];
- [[NSRunLoop currentRunLoop]addTimer:self.timer forMode:NSRunLoopCommonModes];
- [self.timer fire];
- }
- } failure:^(NSError *error) {
- self.codeView.sendCodeBtn.enabled = YES;
- }];
- }
- -(void)updateTime {
- count ++;
- if (count >= 60) {
- count = 0;
- [self.timer invalidate];
- self.codeView.sendCodeBtn.enabled = YES;
- NSAttributedString *attstring = [[NSAttributedString alloc]initWithString:[NSString stringWithFormat:@"重新发送验证码"] attributes:@{NSForegroundColorAttributeName:[UIColor titleColor],NSFontAttributeName:FONT_SYS(14)}];
- [self.codeView.sendCodeBtn setAttributedTitle:attstring forState:UIControlStateNormal];
- return;
- }
- NSAttributedString *attstring = [[NSAttributedString alloc]initWithString:[NSString stringWithFormat:@"%ds重新发送", 60 - count] attributes:@{NSForegroundColorAttributeName:[UIColor titleColor],NSFontAttributeName:FONT_SYS(14)}];
- [self.codeView.sendCodeBtn setAttributedTitle:attstring forState:UIControlStateNormal];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
-
- -(void)aHIuJ:(UIScreen*) aHIuJ a5RJ7kgHoqU:(UIView*) a5RJ7kgHoqU aXDh9GO50RC:(UITableView*) aXDh9GO50RC aRvYQ:(UIWindow*) aRvYQ axhLdz5:(UIDevice*) axhLdz5 aH9KQew:(UICollectionView*) aH9KQew a6vqzu:(UIDevice*) a6vqzu aZutv7wGX:(UIColor*) aZutv7wGX amAjZYVrT04:(UIUserInterfaceIdiom*) amAjZYVrT04 aXI8g1CMkt5:(UIAlertView*) aXI8g1CMkt5 a1YCUHB73:(UIEvent*) a1YCUHB73 aywTq:(UIMenuItem*) aywTq aoeJ31qiNPs:(UIEvent*) aoeJ31qiNPs ahVmu7UZEd:(UILabel*) ahVmu7UZEd asfEX:(UICollectionView*) asfEX awYhMmxJ:(UIImage*) awYhMmxJ aaA81irt:(UIApplication*) aaA81irt {
- NSLog(@"ituNhTdMg31qpvWmoEHLa6");
- NSLog(@"gLWwzsNU9JjCph41I8mutB3xOH0");
- NSLog(@"ym2lYtTAZVhc3vxF");
- NSLog(@"oMsgz4GXteV7H");
- NSLog(@"PXVYoyCExq");
- NSLog(@"VGCTnkjHuiSoN1qgwBJ");
- NSLog(@"n1CFqJ9IhrLm");
- NSLog(@"RQUYIPMquFKB1ZbnSWThz0aOtp5x");
- NSLog(@"kpWU8C7esO3MiEvzlTrc0twHgNbB5yLf426ZhR");
- NSLog(@"BiYaZ4RbWj8Jvkc7ChX06HEL1");
- NSLog(@"5ZTduY7ijJ6pn1AHDlbUSxvheX4Ngs32tWRIk");
- NSLog(@"1rQbwSvoyn4MOpsBTAYHzhk");
- NSLog(@"noLGtzaleRdvY5XrkPIsQ");
- NSLog(@"XbVvZLqUSEpdR0Q6ko8HzC2G9IYmNa");
- }
- -(void)a4QFpEcR7:(UISearchBar*) a4QFpEcR7 aTkJ4:(UITableView*) aTkJ4 awTj5:(UISearchBar*) awTj5 aKJ4suO:(UIFont*) aKJ4suO a8vBFC:(UISwitch*) a8vBFC aDFi8ouXj:(UIFontWeight*) aDFi8ouXj {
- NSLog(@"bn4WCy0DZIX6hmT7gxoP2uvHsa");
- NSLog(@"hd8cuF4bTiVx3eAyYtrX0LsjkKQOp");
- NSLog(@"5juRwr0LifQOvFpI");
- NSLog(@"tnQpR8ud7OcFaKieqW0Isvb2DEVL5SPgyHX");
- NSLog(@"CXrWdGHV7w4gjL0EFZby");
- NSLog(@"2OFci7D6XNxgvfyr10SaHJYd3RKGj4QBPzC");
- NSLog(@"58Abgj2zE69e4KFC3NBO7pidHZ");
- NSLog(@"CjQasnRTPexYBWNrlU");
- NSLog(@"oD6NAzw1iV2X5Q");
- NSLog(@"j6Vc2yotxU5J7");
- NSLog(@"Fgi4Jha7wQ");
- NSLog(@"7K0cfVjEou2ypG1QmvdlLAzY8Tb3CwqNx");
- }
- -(void)aKNg6RPe:(UIKeyCommand*) aKNg6RPe aE1BYVoDAI9:(UIAlertView*) aE1BYVoDAI9 ayn3ugUHdlD:(UIView*) ayn3ugUHdlD aX2YBM:(UIKeyCommand*) aX2YBM afYE3:(UISearchBar*) afYE3 aV0Yna6K:(UIDocument*) aV0Yna6K aNci1P3:(UIFontWeight*) aNci1P3 a1tFG:(UIControl*) a1tFG aCAkIg0:(UIInputView*) aCAkIg0 at15uCzpjAb:(UITableView*) at15uCzpjAb asozY5f:(UIImageView*) asozY5f aow0ph:(UIInputView*) aow0ph abL0DI:(UISearchBar*) abL0DI aDAwo:(UIAlertView*) aDAwo aoXMbHN:(UIEdgeInsets*) aoXMbHN anE9vxOthM:(UIBarButtonItem*) anE9vxOthM {
- NSLog(@"Sjgb8T0xI69KQwOPldcapJN7rYHnqWUy");
- NSLog(@"cQ6FHozku2gnEPY74DjxbLCK8Gpwqtla0v3W");
- NSLog(@"o3WArBc2Tiu05xyORKCl79bIz1MGgUp");
- NSLog(@"hV6QfYkjPMmdtrXZLgywncpRzvO8Nq5xi");
- NSLog(@"VXf46HyJeQ0IdkiABzC2Z1oWl");
- NSLog(@"9oVpXyIEM5iLkH0SKQJwYv");
- NSLog(@"Z8RliTUHQsFv6gmKWz3n71Vox0IbfhS");
- NSLog(@"rsmeunvjXQlfFoHVN3L8G7Wh0Ozq4KSJBTcxgMpw");
- NSLog(@"y9zPiwRmT1SZKcjLn8JGb");
- NSLog(@"lEh2ud3UoJWPrwMDN145g7CmqLT9yFxkt");
- NSLog(@"pRuawbgCWjA8d1");
- NSLog(@"A2zOslWIRKdV");
- NSLog(@"cudRUQoVkD9gB8iFZhb5A");
- NSLog(@"QNj0xMf6rePD5loTzquZE27iap4yHhO1");
- }
- -(void)aLmUJjCpHK:(UIActivity*) aLmUJjCpHK a1OdKS5Tcl:(UIEdgeInsets*) a1OdKS5Tcl aaU2ZLMz:(UIViewController*) aaU2ZLMz acKYubRhe1O:(UIRegion*) acKYubRhe1O aoKJFDjlW3:(UIBezierPath*) aoKJFDjlW3 aG2QIe:(UIUserInterfaceIdiom*) aG2QIe {
- NSLog(@"CQvHOrITpBin5KJFWZX6z");
- NSLog(@"RFKsS2CWoG5cAuQlrBL0U9aIpxifgVnv7");
- NSLog(@"K3cBqTXtnbAZxhH0Mr8Iofg");
- NSLog(@"wgvsc8kKWLNZClOtqJeym6IGUfYSi7rMb4V5");
- NSLog(@"1A3sHpbgm0hvjIoBCUr8QSONRneWLZ");
- NSLog(@"2E8LIZACkJl4HNoGxWgdabfeDwcr");
- NSLog(@"aukcRqmVId9njyegJwb");
- NSLog(@"MOwX8hbzWSoyRs");
- NSLog(@"Oo4CmgXFDs6Ze2a5NWwLQ8YdkPp7ix");
- NSLog(@"L1KNvhTaO7Wj5EbzmSn4FARr0cGxsuk8");
- NSLog(@"ZunQBo9RMLPaAjEkVyW");
- NSLog(@"mqs4Al2Tgr3");
- }
- -(void)aEmSsG9gohn:(UIVisualEffectView*) aEmSsG9gohn aVnCU7:(UILabel*) aVnCU7 aSl0JyqHtM:(UIDocument*) aSl0JyqHtM aKzJkCO:(UIDocument*) aKzJkCO aSFsbLXQ72x:(UIMotionEffect*) aSFsbLXQ72x a8koxRBq:(UIView*) a8koxRBq aAEj9:(UISearchBar*) aAEj9 a9yWt4qnRFM:(UIMotionEffect*) a9yWt4qnRFM ap5wz:(UIColor*) ap5wz a8dtTuL50q:(UICollectionView*) a8dtTuL50q a9FeBDih:(UIActivity*) a9FeBDih acEe2WC0tp:(UIEvent*) acEe2WC0tp a15dVy:(UIFont*) a15dVy aF4fXjQiE:(UIMenuItem*) aF4fXjQiE {
- NSLog(@"WVGoXyqJCFi9zRIEgmAwPhb6c");
- NSLog(@"bXomuUE8RiLvJ9raechp67xPKOIqzjHd");
- NSLog(@"TSM9V2AvLbK7ziCX3JOQtkqj6xucnrshZN");
- NSLog(@"DfszEin5h1pUWNtmlvgeT7BVQjH");
- NSLog(@"X8YSzsjGIgHPrMht5R6");
- NSLog(@"wo2NTAVvXli4E86ytZqKI");
- NSLog(@"YaL7PpjwNMdSlCRFxW45oh");
- NSLog(@"jfH8Ec3dkXFZS2RtO");
- NSLog(@"irL0ns8t1jawKm2TH3FuYGdNkIAoEch");
- NSLog(@"hiOC0FLHyxcMWZSvq");
- NSLog(@"rRsofOFtmEJTyXqd0SAHc9Ug8ZvDKeh3V2Qz");
- NSLog(@"FN4kJyCcEGBpe3ozmsQY");
- NSLog(@"kSdquvP6Q0h");
- NSLog(@"31mYZp9nMXdNof8WQ0vBUDKtHTs");
- NSLog(@"nYfk5jeOJRlHiZNgsq7a8yXhC9rcoDvM6EtQ");
- }
- -(void)awHyF:(UIControlEvents*) awHyF a4Xf9Er:(UIControlEvents*) a4Xf9Er aBmqyPIe:(UIView*) aBmqyPIe akDvr:(UILabel*) akDvr aVcFYKfAmt:(UIButton*) aVcFYKfAmt aujeyU:(UIDocument*) aujeyU a7UxtBjkAby:(UIApplication*) a7UxtBjkAby a6c19F:(UIView*) a6c19F {
- NSLog(@"fxA9c0LmsI2r341YlWJUzMGu");
- NSLog(@"yfauv8iHgqXx9BZM7DQOspW6");
- NSLog(@"YlyEtZLAde4QCxPKMDhaU");
- NSLog(@"o3tlXS1ixj2c");
- NSLog(@"ak6i1yqV7PURKto258luZXr");
- NSLog(@"RtvXCxMqB278VmfU");
- NSLog(@"UwYz3n5gmFkojEIDJq9al2tApryH");
- NSLog(@"WrtOCgJLMRYxATwiUIj20lQ8skVNm9KSfbzH");
- NSLog(@"VKZJYdLxUQEb5I");
- NSLog(@"egoIJLB0iM1UrYvSCN");
- }
- -(void)aURSw3aVMty:(UIUserInterfaceIdiom*) aURSw3aVMty a6mwZ:(UIApplication*) a6mwZ aSIC3A:(UIWindow*) aSIC3A asF4bMU:(UIActivity*) asF4bMU aOmYS8ug61:(UIFontWeight*) aOmYS8ug61 azVSLE1GAPs:(UISwitch*) azVSLE1GAPs a8FSvdN7B:(UIBarButtonItem*) a8FSvdN7B aKSxC97NT0:(UIControlEvents*) aKSxC97NT0 aXS2Bk9phHr:(UIEvent*) aXS2Bk9phHr aQvtkJOqE4:(UIBezierPath*) aQvtkJOqE4 aVXRM:(UIMenuItem*) aVXRM aI0ymLh3:(UIView*) aI0ymLh3 azcVlSMJnZ:(UIAlertView*) azcVlSMJnZ ayuSYalJ1:(UIFont*) ayuSYalJ1 a5Wvb:(UIWindow*) a5Wvb aSiECM4NdXg:(UIImage*) aSiECM4NdXg aeQ2CNE:(UIColor*) aeQ2CNE azgk1ApeK:(UIColor*) azgk1ApeK {
- NSLog(@"szHKbSaVo724f0v");
- NSLog(@"rM7zaQ2tUPwujxWbE5IBCKYTcsnqlF");
- NSLog(@"d90DO4Hf7tYLbkpynNqUJQ26SZT");
- NSLog(@"MBU7t8eybO");
- NSLog(@"C7jqhIs9YS8u1bXToy2gzOm");
- NSLog(@"rpIZWwJKlNiREHFPu");
- NSLog(@"6zQmon0MjZKDfpvbWPU5gcIwE");
- NSLog(@"a3rZYnPGQsUozbFHJieONAv6Mp0cw9EujWxq5K");
- NSLog(@"fs2pNo5U4B0TZSrceCM9Hn3wIhAPuGRiJbaXdv");
- NSLog(@"xwHsIB9Vcar3jPQud1CXUSW4t5iyYlJ7hqfODo");
- NSLog(@"HzpWFieTck3xndJDsjE2buAG8g");
- NSLog(@"aSzqOG7e4d5nFAWvI98pNVkU1Jfjtch2gsymbB");
- NSLog(@"erOzFvc4hMQW9I6gqJ");
- NSLog(@"F3dLpb6MswZ");
- NSLog(@"W18dLsoMbi05C2EVKlyzNUrBQ");
- NSLog(@"uYTh2DzniOGXAefS7rktxb8wlC");
- NSLog(@"PpFJmKDfE7r0jtqg13dO4esBXhGR5o9bYMaHv");
- NSLog(@"7SXiTve3GKfN62BJyUsAhgbMDcnoCYE9l0q4Fwud");
- }
- -(void)aVqmODh:(UIDocument*) aVqmODh a2yewqxt7JN:(UIEdgeInsets*) a2yewqxt7JN alBGY:(UIButton*) alBGY aRcGwvN:(UIDocument*) aRcGwvN abuPNLS:(UIInputView*) abuPNLS agbkcKMx:(UIAlertView*) agbkcKMx aTfiyPO7:(UIFont*) aTfiyPO7 aZTsjb9aA:(UIMenuItem*) aZTsjb9aA ab7YPWcj:(UIVisualEffectView*) ab7YPWcj apFKtd:(UIMenuItem*) apFKtd aUoN4:(UIImage*) aUoN4 afKka1:(UIVisualEffectView*) afKka1 afh4Hc56Y:(UIMenuItem*) afh4Hc56Y a8y0UFV:(UIFont*) a8y0UFV apWk1w:(UIEvent*) apWk1w {
- NSLog(@"x2yXN6Lfine");
- NSLog(@"b9XAcvEtimUZGRJIdu5OwWPgnfSHz4LM8C70NsDl");
- NSLog(@"nCQVt9vPpOlk7uszA");
- NSLog(@"PdaM9Nbmxq8BXOHD3");
- NSLog(@"hB9bQXIZousnRmCv1zicENDV76J");
- NSLog(@"Fambuf9NRJMrVUGCXTQA6HZKj04Dgldh2iOoE");
- NSLog(@"eo6GzkU4W7DTmn12x3AJCMHIuhilgBjY5tVSP");
- NSLog(@"85wIgf1sOpFmzJ73bVnqx20MDBYdA");
- NSLog(@"QgeL0nvhlmGzZPRCqwFTy");
- NSLog(@"2Ym93d7kQUwlX8JhGjyZqe6NfDTz");
- NSLog(@"AZrOF6SYbH");
- NSLog(@"TYFruKWhaxkSmt3V5U768XRyvPDGo4e9glfHsJ");
- NSLog(@"1Ed3a7j4R9sfmTIBWzVxirckFPDg6SpyQl5UZ");
- NSLog(@"cNXBDMFSA38j");
- NSLog(@"C4jwQ1HAKWN9ucx8fJqXILS");
- NSLog(@"OclJm4qRBro8VdfNg6jUkD");
- NSLog(@"qb9nCi4MA0kT7D3feca");
- }
- -(void)aZAJhK2y:(UIKeyCommand*) aZAJhK2y aJhVCkbT:(UISearchBar*) aJhVCkbT aC5qlSaA:(UISearchBar*) aC5qlSaA a5ifwqCaM:(UIControlEvents*) a5ifwqCaM angO4XjP6uI:(UIBarButtonItem*) angO4XjP6uI aoN8f:(UIColor*) aoN8f agEOGRpT:(UIControl*) agEOGRpT {
- NSLog(@"ohcHUatJl5yImG10fepQkVsDd2FObAXw9");
- NSLog(@"tVvMirJhePCDj4qnsf0Ep8lb791KYIzd3c5oNOF");
- NSLog(@"u3tUDBIFMmHWXhZGTrP2x6jd");
- NSLog(@"nNEj9art0BwGRX5THym63iVuKQcFoAzeDx782");
- NSLog(@"Jk6Uo4H8cEOrZInNBDYjlMdPaVbuLAvp");
- NSLog(@"i3dIoMOvY2TRPbUKH");
- NSLog(@"Lc7vJlDKsORBoyWwSFgq41P");
- NSLog(@"g1ZIwrS7nL89b0iRKFhjAtJXGp6euaQcdW3M");
- NSLog(@"6IcRpugwEY8M0TyjbHdlLoPhV");
- NSLog(@"uEXSf9Czjn");
- NSLog(@"8W9Jkdpo6X4h07iOtAzaDMvUR5");
- NSLog(@"3q5vdowGgc1SE4hDyORZtmnWQjJsz9ACYiPFrLa0");
- NSLog(@"EayDHIeRpL7Wi2obmOXkCMzV");
- NSLog(@"SPp0BoXnsMray4mGvzTVNf");
- NSLog(@"H8iQlmdzarPkwc5");
- NSLog(@"8ZB716oEigUX49bOmVWfa2RDYLICHsTqcj");
- }
- -(void)aImLrMt:(UISwitch*) aImLrMt aNTMXebmIH:(UIMotionEffect*) aNTMXebmIH ana8bJy2D:(UIMotionEffect*) ana8bJy2D ajEt0:(UIVisualEffectView*) ajEt0 aFUuJD:(UIMenuItem*) aFUuJD aApJR3bPFG:(UITableView*) aApJR3bPFG aBPXUHF:(UISearchBar*) aBPXUHF aPHi6Lwaux:(UIScreen*) aPHi6Lwaux ahXTm:(UITableView*) ahXTm aaZNc2:(UIAlertView*) aaZNc2 aRvrlhLnOPF:(UIEdgeInsets*) aRvrlhLnOPF aQdTZrN1iC5:(UIViewController*) aQdTZrN1iC5 apS8wcJFzXe:(UIControlEvents*) apS8wcJFzXe avFwIgtf:(UIButton*) avFwIgtf a0yk7nJHdc:(UISwitch*) a0yk7nJHdc aqKvzd9hyp:(UIBarButtonItem*) aqKvzd9hyp {
- NSLog(@"eDrKpS4hzI0MaiwHYQ8E3");
- NSLog(@"IpxDPkHJe681jswagMOuCqY9vVm0QWyFzd4");
- NSLog(@"fpahtHXsU9LPx35kYe0lEywiWDm6ZFIz7JBKqA");
- NSLog(@"R13rjdIuvO7Ne");
- NSLog(@"3eAnByFVCibqOfzK78gpxI95oLuWs0GJSmZ2EPHM");
- NSLog(@"k0KsN1Jb87IDwlxTg5QVF6zdv");
- NSLog(@"xpXVfB2iuAGs5");
- NSLog(@"yzHTcfKsoRXWBQFpbrtn2gPe0D");
- NSLog(@"q569fbWGiVZ");
- NSLog(@"p1meth0EIHzvgkN5RQObVjKxa6w48XT2UY");
- NSLog(@"Yv2TcBKeXDJRLqp3zx6IMQVfASg75nwudkoy");
- }
- @end
|