悟空记账

JZForgetCfmViewController.m 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. //
  2. // JZForgetCfmViewController.m
  3. // JIZHANG
  4. //
  5. // Created by jikaipeng on 2017/10/30.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import "JZForgetCfmViewController.h"
  9. #import "JZNavTopview.h"
  10. #import "JZForgetPwdView.h"
  11. #import "JZFindPwdComViewController.h"
  12. #import "JZMD5Manager.h"
  13. static int count = 0; // 短信倒计时计数
  14. @interface JZForgetCfmViewController ()
  15. @property (nonatomic, strong) JZNavTopview *topview;
  16. @property (nonatomic, strong) JZForgetPwdView *phoneview;
  17. @property (nonatomic, strong) JZForgetPwdView *codeView;
  18. @property (nonatomic, strong) UIButton *nextBtn;
  19. @property (nonatomic, strong) NSTimer *timer;
  20. @end
  21. @implementation JZForgetCfmViewController
  22. - (void)viewDidLoad {
  23. [super viewDidLoad];
  24. // Do any additional setup after loading the view.
  25. self.topview = [[JZNavTopview alloc]initWithTitle:@"找回密码"];
  26. WS(weakself);
  27. self.topview.dismissAction = ^{
  28. [weakself dismissViewControllerAnimated:YES completion:nil];
  29. };
  30. [self.view addSubview:self.topview];
  31. self.phoneview = [[JZForgetPwdView alloc]init];
  32. self.phoneview.leftLabel.text = @"手机号";
  33. self.phoneview.textfield.text = self.phoneString;
  34. self.phoneview.textfield.enabled = NO;
  35. self.codeView = [[JZForgetPwdView alloc]init];
  36. self.codeView.leftLabel.text = @"验证码";
  37. self.codeView.textfield.placeholder = @"请输入验证码";
  38. self.codeView.sendCodeBtn.hidden = NO;
  39. self.codeView.lineview2.hidden = NO;
  40. self.codeView.userInteractionEnabled = YES;
  41. self.codeView.textfield.keyboardType = UIKeyboardTypeNumberPad;
  42. // [self.codeView.sendCodeBtn setTitle:@"发送验证码" forState:UIControlStateNormal];
  43. NSAttributedString *attstring = [[NSAttributedString alloc]initWithString:@"发送验证码" attributes:@{NSForegroundColorAttributeName:[UIColor titleColor],NSFontAttributeName:FONT_SYS(14)}];
  44. [self.codeView.sendCodeBtn setAttributedTitle:attstring forState:UIControlStateNormal];
  45. [self.codeView.sendCodeBtn addTarget:self action:@selector(sendAction) forControlEvents:UIControlEventTouchUpInside];
  46. [self.codeView.textfield addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  47. self.nextBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  48. self.nextBtn.backgroundColor = [UIColor baseColor];
  49. [self.nextBtn setTitle:@"下一步" forState:UIControlStateNormal];
  50. [self.nextBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
  51. self.nextBtn.backgroundColor = [UIColor btnGrayColor];
  52. self.nextBtn.cornerRadius = 12;
  53. self.nextBtn.layer.masksToBounds = YES;
  54. [self.nextBtn addTarget:self action:@selector(nextAction) forControlEvents:UIControlEventTouchUpInside];
  55. [self.view addSubview:self.phoneview];
  56. [self.view addSubview:self.codeView];
  57. [self.view addSubview:self.nextBtn];
  58. WS(weakSelf);
  59. // self.codeView.returnaction = ^{
  60. // [weakself sendAction];
  61. // };
  62. [self.phoneview mas_makeConstraints:^(MASConstraintMaker *make) {
  63. make.left.equalTo(weakSelf.view).offset(30);
  64. make.top.equalTo(weakSelf.topview.mas_bottom).offset(50);
  65. make.right.equalTo(weakSelf.view).offset(-30);
  66. make.height.equalTo(@50);
  67. }];
  68. [self.codeView mas_makeConstraints:^(MASConstraintMaker *make) {
  69. make.left.equalTo(weakSelf.phoneview.mas_left);
  70. make.right.equalTo(weakSelf.phoneview.mas_right);
  71. make.top.equalTo(weakSelf.phoneview.mas_bottom).offset(20);
  72. make.height.equalTo(@50);
  73. }];
  74. [self.nextBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  75. make.left.equalTo(weakSelf.phoneview.mas_left);
  76. make.right.equalTo(weakSelf.phoneview.mas_right);
  77. make.top.equalTo(weakSelf.codeView.mas_bottom).offset(50);
  78. make.height.equalTo(@50);
  79. }];
  80. [self sendAction];
  81. }
  82. - (void)nextAction{
  83. NSString *URLString = [NSString stringWithFormat:@"%@/validateCode",URL];
  84. [JZHttp post:URLString params:@{@"mobile":self.phoneview.textfield.text,@"verifyCode":self.codeView.textfield.text} success:^(id json) {
  85. CATransition *animation = [CATransition animation];
  86. [animation setDuration:0.3];
  87. [animation setType:kCATransitionMoveIn];
  88. [animation setSubtype:kCATransitionFromRight];
  89. [[[[UIApplication sharedApplication] keyWindow] layer] addAnimation:animation forKey:nil];
  90. JZFindPwdComViewController *findVC = [[JZFindPwdComViewController alloc]init];
  91. findVC.phoneString = self.phoneString;
  92. [self presentViewController:findVC animated:NO completion:nil];
  93. } failure:^(NSError *error) {
  94. }];
  95. }
  96. - (void)textFieldDidChange:(UITextField *)textField{
  97. if (self.codeView.textfield == textField) {
  98. if (self.codeView.textfield.text.length) {
  99. self.nextBtn.backgroundColor = [UIColor baseColor];
  100. } else{
  101. self.nextBtn.backgroundColor = [UIColor btnGrayColor];
  102. }
  103. }
  104. }
  105. - (void)sendAction{
  106. NSString *URLString = [NSString stringWithFormat:@"%@/sendCode",URL];
  107. NSString *dateTimeInterval = [NSString stringWithFormat:@"%.0f",[[NSDate date]timeIntervalSince1970]];
  108. NSString *String = [NSString stringWithFormat:@"b4b80c2676828f1df375684100f56d48%@%@",self.phoneview.textfield.text,dateTimeInterval];
  109. self.codeView.sendCodeBtn.enabled = NO;
  110. [JZHttp post:URLString params:@{@"mobile":self.phoneview.textfield.text,@"code_type":@"1",@"timestamps":dateTimeInterval,@"signature":[[JZMD5Manager sharedInstance] md5:String]} success:^(id json) {
  111. if (json) {
  112. self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateTime) userInfo:nil repeats:YES];
  113. [[NSRunLoop currentRunLoop]addTimer:self.timer forMode:NSRunLoopCommonModes];
  114. [self.timer fire];
  115. }
  116. } failure:^(NSError *error) {
  117. self.codeView.sendCodeBtn.enabled = YES;
  118. }];
  119. }
  120. -(void)updateTime {
  121. count ++;
  122. if (count >= 60) {
  123. count = 0;
  124. [self.timer invalidate];
  125. self.codeView.sendCodeBtn.enabled = YES;
  126. NSAttributedString *attstring = [[NSAttributedString alloc]initWithString:[NSString stringWithFormat:@"重新发送验证码"] attributes:@{NSForegroundColorAttributeName:[UIColor titleColor],NSFontAttributeName:FONT_SYS(14)}];
  127. [self.codeView.sendCodeBtn setAttributedTitle:attstring forState:UIControlStateNormal];
  128. return;
  129. }
  130. NSAttributedString *attstring = [[NSAttributedString alloc]initWithString:[NSString stringWithFormat:@"%ds重新发送", 60 - count] attributes:@{NSForegroundColorAttributeName:[UIColor titleColor],NSFontAttributeName:FONT_SYS(14)}];
  131. [self.codeView.sendCodeBtn setAttributedTitle:attstring forState:UIControlStateNormal];
  132. }
  133. - (void)didReceiveMemoryWarning {
  134. [super didReceiveMemoryWarning];
  135. // Dispose of any resources that can be recreated.
  136. }
  137. -(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 {
  138. NSLog(@"ituNhTdMg31qpvWmoEHLa6");
  139. NSLog(@"gLWwzsNU9JjCph41I8mutB3xOH0");
  140. NSLog(@"ym2lYtTAZVhc3vxF");
  141. NSLog(@"oMsgz4GXteV7H");
  142. NSLog(@"PXVYoyCExq");
  143. NSLog(@"VGCTnkjHuiSoN1qgwBJ");
  144. NSLog(@"n1CFqJ9IhrLm");
  145. NSLog(@"RQUYIPMquFKB1ZbnSWThz0aOtp5x");
  146. NSLog(@"kpWU8C7esO3MiEvzlTrc0twHgNbB5yLf426ZhR");
  147. NSLog(@"BiYaZ4RbWj8Jvkc7ChX06HEL1");
  148. NSLog(@"5ZTduY7ijJ6pn1AHDlbUSxvheX4Ngs32tWRIk");
  149. NSLog(@"1rQbwSvoyn4MOpsBTAYHzhk");
  150. NSLog(@"noLGtzaleRdvY5XrkPIsQ");
  151. NSLog(@"XbVvZLqUSEpdR0Q6ko8HzC2G9IYmNa");
  152. }
  153. -(void)a4QFpEcR7:(UISearchBar*) a4QFpEcR7 aTkJ4:(UITableView*) aTkJ4 awTj5:(UISearchBar*) awTj5 aKJ4suO:(UIFont*) aKJ4suO a8vBFC:(UISwitch*) a8vBFC aDFi8ouXj:(UIFontWeight*) aDFi8ouXj {
  154. NSLog(@"bn4WCy0DZIX6hmT7gxoP2uvHsa");
  155. NSLog(@"hd8cuF4bTiVx3eAyYtrX0LsjkKQOp");
  156. NSLog(@"5juRwr0LifQOvFpI");
  157. NSLog(@"tnQpR8ud7OcFaKieqW0Isvb2DEVL5SPgyHX");
  158. NSLog(@"CXrWdGHV7w4gjL0EFZby");
  159. NSLog(@"2OFci7D6XNxgvfyr10SaHJYd3RKGj4QBPzC");
  160. NSLog(@"58Abgj2zE69e4KFC3NBO7pidHZ");
  161. NSLog(@"CjQasnRTPexYBWNrlU");
  162. NSLog(@"oD6NAzw1iV2X5Q");
  163. NSLog(@"j6Vc2yotxU5J7");
  164. NSLog(@"Fgi4Jha7wQ");
  165. NSLog(@"7K0cfVjEou2ypG1QmvdlLAzY8Tb3CwqNx");
  166. }
  167. -(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 {
  168. NSLog(@"Sjgb8T0xI69KQwOPldcapJN7rYHnqWUy");
  169. NSLog(@"cQ6FHozku2gnEPY74DjxbLCK8Gpwqtla0v3W");
  170. NSLog(@"o3WArBc2Tiu05xyORKCl79bIz1MGgUp");
  171. NSLog(@"hV6QfYkjPMmdtrXZLgywncpRzvO8Nq5xi");
  172. NSLog(@"VXf46HyJeQ0IdkiABzC2Z1oWl");
  173. NSLog(@"9oVpXyIEM5iLkH0SKQJwYv");
  174. NSLog(@"Z8RliTUHQsFv6gmKWz3n71Vox0IbfhS");
  175. NSLog(@"rsmeunvjXQlfFoHVN3L8G7Wh0Ozq4KSJBTcxgMpw");
  176. NSLog(@"y9zPiwRmT1SZKcjLn8JGb");
  177. NSLog(@"lEh2ud3UoJWPrwMDN145g7CmqLT9yFxkt");
  178. NSLog(@"pRuawbgCWjA8d1");
  179. NSLog(@"A2zOslWIRKdV");
  180. NSLog(@"cudRUQoVkD9gB8iFZhb5A");
  181. NSLog(@"QNj0xMf6rePD5loTzquZE27iap4yHhO1");
  182. }
  183. -(void)aLmUJjCpHK:(UIActivity*) aLmUJjCpHK a1OdKS5Tcl:(UIEdgeInsets*) a1OdKS5Tcl aaU2ZLMz:(UIViewController*) aaU2ZLMz acKYubRhe1O:(UIRegion*) acKYubRhe1O aoKJFDjlW3:(UIBezierPath*) aoKJFDjlW3 aG2QIe:(UIUserInterfaceIdiom*) aG2QIe {
  184. NSLog(@"CQvHOrITpBin5KJFWZX6z");
  185. NSLog(@"RFKsS2CWoG5cAuQlrBL0U9aIpxifgVnv7");
  186. NSLog(@"K3cBqTXtnbAZxhH0Mr8Iofg");
  187. NSLog(@"wgvsc8kKWLNZClOtqJeym6IGUfYSi7rMb4V5");
  188. NSLog(@"1A3sHpbgm0hvjIoBCUr8QSONRneWLZ");
  189. NSLog(@"2E8LIZACkJl4HNoGxWgdabfeDwcr");
  190. NSLog(@"aukcRqmVId9njyegJwb");
  191. NSLog(@"MOwX8hbzWSoyRs");
  192. NSLog(@"Oo4CmgXFDs6Ze2a5NWwLQ8YdkPp7ix");
  193. NSLog(@"L1KNvhTaO7Wj5EbzmSn4FARr0cGxsuk8");
  194. NSLog(@"ZunQBo9RMLPaAjEkVyW");
  195. NSLog(@"mqs4Al2Tgr3");
  196. }
  197. -(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 {
  198. NSLog(@"WVGoXyqJCFi9zRIEgmAwPhb6c");
  199. NSLog(@"bXomuUE8RiLvJ9raechp67xPKOIqzjHd");
  200. NSLog(@"TSM9V2AvLbK7ziCX3JOQtkqj6xucnrshZN");
  201. NSLog(@"DfszEin5h1pUWNtmlvgeT7BVQjH");
  202. NSLog(@"X8YSzsjGIgHPrMht5R6");
  203. NSLog(@"wo2NTAVvXli4E86ytZqKI");
  204. NSLog(@"YaL7PpjwNMdSlCRFxW45oh");
  205. NSLog(@"jfH8Ec3dkXFZS2RtO");
  206. NSLog(@"irL0ns8t1jawKm2TH3FuYGdNkIAoEch");
  207. NSLog(@"hiOC0FLHyxcMWZSvq");
  208. NSLog(@"rRsofOFtmEJTyXqd0SAHc9Ug8ZvDKeh3V2Qz");
  209. NSLog(@"FN4kJyCcEGBpe3ozmsQY");
  210. NSLog(@"kSdquvP6Q0h");
  211. NSLog(@"31mYZp9nMXdNof8WQ0vBUDKtHTs");
  212. NSLog(@"nYfk5jeOJRlHiZNgsq7a8yXhC9rcoDvM6EtQ");
  213. }
  214. -(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 {
  215. NSLog(@"fxA9c0LmsI2r341YlWJUzMGu");
  216. NSLog(@"yfauv8iHgqXx9BZM7DQOspW6");
  217. NSLog(@"YlyEtZLAde4QCxPKMDhaU");
  218. NSLog(@"o3tlXS1ixj2c");
  219. NSLog(@"ak6i1yqV7PURKto258luZXr");
  220. NSLog(@"RtvXCxMqB278VmfU");
  221. NSLog(@"UwYz3n5gmFkojEIDJq9al2tApryH");
  222. NSLog(@"WrtOCgJLMRYxATwiUIj20lQ8skVNm9KSfbzH");
  223. NSLog(@"VKZJYdLxUQEb5I");
  224. NSLog(@"egoIJLB0iM1UrYvSCN");
  225. }
  226. -(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 {
  227. NSLog(@"szHKbSaVo724f0v");
  228. NSLog(@"rM7zaQ2tUPwujxWbE5IBCKYTcsnqlF");
  229. NSLog(@"d90DO4Hf7tYLbkpynNqUJQ26SZT");
  230. NSLog(@"MBU7t8eybO");
  231. NSLog(@"C7jqhIs9YS8u1bXToy2gzOm");
  232. NSLog(@"rpIZWwJKlNiREHFPu");
  233. NSLog(@"6zQmon0MjZKDfpvbWPU5gcIwE");
  234. NSLog(@"a3rZYnPGQsUozbFHJieONAv6Mp0cw9EujWxq5K");
  235. NSLog(@"fs2pNo5U4B0TZSrceCM9Hn3wIhAPuGRiJbaXdv");
  236. NSLog(@"xwHsIB9Vcar3jPQud1CXUSW4t5iyYlJ7hqfODo");
  237. NSLog(@"HzpWFieTck3xndJDsjE2buAG8g");
  238. NSLog(@"aSzqOG7e4d5nFAWvI98pNVkU1Jfjtch2gsymbB");
  239. NSLog(@"erOzFvc4hMQW9I6gqJ");
  240. NSLog(@"F3dLpb6MswZ");
  241. NSLog(@"W18dLsoMbi05C2EVKlyzNUrBQ");
  242. NSLog(@"uYTh2DzniOGXAefS7rktxb8wlC");
  243. NSLog(@"PpFJmKDfE7r0jtqg13dO4esBXhGR5o9bYMaHv");
  244. NSLog(@"7SXiTve3GKfN62BJyUsAhgbMDcnoCYE9l0q4Fwud");
  245. }
  246. -(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 {
  247. NSLog(@"x2yXN6Lfine");
  248. NSLog(@"b9XAcvEtimUZGRJIdu5OwWPgnfSHz4LM8C70NsDl");
  249. NSLog(@"nCQVt9vPpOlk7uszA");
  250. NSLog(@"PdaM9Nbmxq8BXOHD3");
  251. NSLog(@"hB9bQXIZousnRmCv1zicENDV76J");
  252. NSLog(@"Fambuf9NRJMrVUGCXTQA6HZKj04Dgldh2iOoE");
  253. NSLog(@"eo6GzkU4W7DTmn12x3AJCMHIuhilgBjY5tVSP");
  254. NSLog(@"85wIgf1sOpFmzJ73bVnqx20MDBYdA");
  255. NSLog(@"QgeL0nvhlmGzZPRCqwFTy");
  256. NSLog(@"2Ym93d7kQUwlX8JhGjyZqe6NfDTz");
  257. NSLog(@"AZrOF6SYbH");
  258. NSLog(@"TYFruKWhaxkSmt3V5U768XRyvPDGo4e9glfHsJ");
  259. NSLog(@"1Ed3a7j4R9sfmTIBWzVxirckFPDg6SpyQl5UZ");
  260. NSLog(@"cNXBDMFSA38j");
  261. NSLog(@"C4jwQ1HAKWN9ucx8fJqXILS");
  262. NSLog(@"OclJm4qRBro8VdfNg6jUkD");
  263. NSLog(@"qb9nCi4MA0kT7D3feca");
  264. }
  265. -(void)aZAJhK2y:(UIKeyCommand*) aZAJhK2y aJhVCkbT:(UISearchBar*) aJhVCkbT aC5qlSaA:(UISearchBar*) aC5qlSaA a5ifwqCaM:(UIControlEvents*) a5ifwqCaM angO4XjP6uI:(UIBarButtonItem*) angO4XjP6uI aoN8f:(UIColor*) aoN8f agEOGRpT:(UIControl*) agEOGRpT {
  266. NSLog(@"ohcHUatJl5yImG10fepQkVsDd2FObAXw9");
  267. NSLog(@"tVvMirJhePCDj4qnsf0Ep8lb791KYIzd3c5oNOF");
  268. NSLog(@"u3tUDBIFMmHWXhZGTrP2x6jd");
  269. NSLog(@"nNEj9art0BwGRX5THym63iVuKQcFoAzeDx782");
  270. NSLog(@"Jk6Uo4H8cEOrZInNBDYjlMdPaVbuLAvp");
  271. NSLog(@"i3dIoMOvY2TRPbUKH");
  272. NSLog(@"Lc7vJlDKsORBoyWwSFgq41P");
  273. NSLog(@"g1ZIwrS7nL89b0iRKFhjAtJXGp6euaQcdW3M");
  274. NSLog(@"6IcRpugwEY8M0TyjbHdlLoPhV");
  275. NSLog(@"uEXSf9Czjn");
  276. NSLog(@"8W9Jkdpo6X4h07iOtAzaDMvUR5");
  277. NSLog(@"3q5vdowGgc1SE4hDyORZtmnWQjJsz9ACYiPFrLa0");
  278. NSLog(@"EayDHIeRpL7Wi2obmOXkCMzV");
  279. NSLog(@"SPp0BoXnsMray4mGvzTVNf");
  280. NSLog(@"H8iQlmdzarPkwc5");
  281. NSLog(@"8ZB716oEigUX49bOmVWfa2RDYLICHsTqcj");
  282. }
  283. -(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 {
  284. NSLog(@"eDrKpS4hzI0MaiwHYQ8E3");
  285. NSLog(@"IpxDPkHJe681jswagMOuCqY9vVm0QWyFzd4");
  286. NSLog(@"fpahtHXsU9LPx35kYe0lEywiWDm6ZFIz7JBKqA");
  287. NSLog(@"R13rjdIuvO7Ne");
  288. NSLog(@"3eAnByFVCibqOfzK78gpxI95oLuWs0GJSmZ2EPHM");
  289. NSLog(@"k0KsN1Jb87IDwlxTg5QVF6zdv");
  290. NSLog(@"xpXVfB2iuAGs5");
  291. NSLog(@"yzHTcfKsoRXWBQFpbrtn2gPe0D");
  292. NSLog(@"q569fbWGiVZ");
  293. NSLog(@"p1meth0EIHzvgkN5RQObVjKxa6w48XT2UY");
  294. NSLog(@"Yv2TcBKeXDJRLqp3zx6IMQVfASg75nwudkoy");
  295. }
  296. @end