一折买app------返利---------返利宝

YZMAWithdrawViewController.m 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. //
  2. // YZMAWithdrawViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/5/23.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMAWithdrawViewController.h"
  9. #import "YZMAWithdrawNextViewController.h"
  10. @interface YZMAWithdrawViewController ()
  11. <
  12. UITextFieldDelegate
  13. >
  14. @property (nonatomic,strong)UILabel *top1Label;
  15. @property (nonatomic,strong)UILabel *top2Label;
  16. @property (nonatomic,strong)UIView *centerBtns;
  17. @property (nonatomic,strong)UIButton *withdrawBtn;
  18. @property (nonatomic,strong)UILabel *leftLabel;
  19. @property (nonatomic,strong)UIButton *rightBtn;
  20. @property (nonatomic,strong)UIView *lineView;
  21. @property (nonatomic,strong)UITextField *textField;
  22. @property (nonatomic,strong)NSArray *moneyArr;
  23. @property (nonatomic,strong)UIButton *currentBtn;
  24. @property (nonatomic,strong)NSNumber *infoNum;
  25. @end
  26. @implementation YZMAWithdrawViewController
  27. - (void)viewDidLoad {
  28. [super viewDidLoad];
  29. self.infoNum=@(1);
  30. [self addUI];
  31. [self adjustUI];
  32. [self configNavigationBar];
  33. [self request];
  34. }
  35. - (void)configNavigationBar {
  36. [self.navigationBar setNavTitle:@"提现"];
  37. self.navigationBar.backgroundColor = [UIColor changeColor];
  38. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  39. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  40. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  41. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  42. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  43. }
  44. -(void)request{
  45. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/priceList",BaseURL];
  46. [YZMAHttp post:url params:nil success:^(id json) {
  47. if (json[@"data"]&&json[@"data"][@"data"]) {
  48. NSArray *arr=json[@"data"][@"data"];
  49. if(arr.count==3){
  50. self.moneyArr=arr;
  51. for (UIButton *btn in self.centerBtns.subviews) {
  52. NSInteger index=btn.tag-10000;
  53. [btn setTitle:[NSString stringWithFormat:@"%@元",arr[index]] forState:UIControlStateNormal];
  54. }
  55. }
  56. NSNumber *flag=json[@"data"][@"flag"];
  57. self.infoNum=flag;
  58. if ([flag integerValue]==2) {
  59. //前往微信绑定
  60. // if (json[@"data"][@"info"]) {
  61. // [SVProgressHUD showErrorWithStatus:json[@"data"][@"info"]];
  62. // [SVProgressHUD dismissWithDelay:1.0f];
  63. // }
  64. [self.withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
  65. }else{
  66. [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
  67. }
  68. }
  69. } failure:^(NSError *error) {
  70. }];
  71. }
  72. - (void)backAction {
  73. [self.navigationController popViewControllerAnimated:YES];
  74. }
  75. -(void)addUI{
  76. [self.view addSubview:self.top1Label];
  77. [self.view addSubview:self.top2Label];
  78. [self.view addSubview:self.centerBtns];
  79. [self.view addSubview:self.withdrawBtn];
  80. [self.view addSubview:self.leftLabel];
  81. [self.view addSubview:self.rightBtn];
  82. [self.view addSubview:self.lineView];
  83. [self.view addSubview:self.textField];
  84. }
  85. -(void)adjustUI{
  86. [self.top1Label mas_makeConstraints:^(MASConstraintMaker *make) {
  87. make.left.mas_equalTo(FITSIZE(20));
  88. make.top.mas_equalTo(98);
  89. }];
  90. [self.top2Label mas_makeConstraints:^(MASConstraintMaker *make) {
  91. make.left.equalTo(self.top1Label.mas_left);
  92. make.top.equalTo(self.top1Label.mas_bottom).offset(4);
  93. }];
  94. [self.centerBtns mas_makeConstraints:^(MASConstraintMaker *make) {
  95. make.left.right.mas_equalTo(0);
  96. make.top.equalTo(self.top2Label.mas_bottom).offset(35);
  97. make.height.mas_equalTo(40);
  98. }];
  99. [self.leftLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  100. make.left.mas_equalTo(FITSIZE(27));
  101. make.top.equalTo(self.centerBtns.mas_bottom).offset(15);
  102. }];
  103. [self.rightBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  104. make.right.mas_equalTo(FITSIZE(-27));
  105. make.centerY.equalTo(self.leftLabel.mas_centerY);
  106. }];
  107. [self.lineView mas_makeConstraints:^(MASConstraintMaker *make) {
  108. make.left.equalTo(self.leftLabel.mas_left);
  109. make.right.equalTo(self.rightBtn.mas_right);
  110. make.top.equalTo(self.leftLabel.mas_bottom);
  111. make.height.mas_equalTo(0.5);
  112. }];
  113. [self.withdrawBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  114. make.centerX.equalTo(self.view.mas_centerX);
  115. make.top.equalTo(self.lineView.mas_bottom).offset(126);
  116. make.width.mas_equalTo(FITSIZE(250));
  117. make.height.mas_equalTo(42);
  118. }];
  119. [self.textField mas_makeConstraints:^(MASConstraintMaker *make) {
  120. make.left.equalTo(self.leftLabel.mas_right).offset(FITSIZE(5));
  121. make.right.equalTo(self.rightBtn.mas_left).offset(FITSIZE(5));
  122. make.height.equalTo(self.rightBtn.mas_height);
  123. // make.centerY.equalTo(self.leftLabel.mas_centerY);
  124. make.bottom.equalTo(self.lineView.mas_top).offset(-2);
  125. }];
  126. }
  127. #pragma mark -点击事件
  128. -(void)changeMoney:(UIButton *)btn{
  129. if (self.currentBtn) {//把当前的边框和字体颜色变成
  130. self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
  131. [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  132. }
  133. switch (btn.tag) {
  134. case 20001:
  135. {
  136. self.textField.text=self.moneyStr;
  137. }
  138. break;
  139. case 10000:
  140. case 10001:
  141. case 10002:
  142. self.currentBtn=btn;
  143. [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
  144. self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xFF5200].CGColor;
  145. if (self.moneyArr &&self.moneyArr.count==3) {
  146. if ([self.moneyArr[btn.tag-10000] integerValue]!=0) {
  147. self.textField.text=[NSString stringWithFormat:@"%@",self.moneyArr[btn.tag-10000]];
  148. }
  149. }
  150. break;
  151. default:
  152. break;
  153. }
  154. }
  155. -(void)withdrawAction{
  156. float money=[self.textField.text floatValue];
  157. float maxMoney=[self.moneyStr floatValue];
  158. if (money>=10) {
  159. if (money<=maxMoney) {
  160. if ([self.infoNum integerValue]==2) {
  161. [[YZMAUMbindWeChat sharedInstance] bindWeChatSuccess:^(UMSocialUserInfoResponse *response) {
  162. self.infoNum=@(1);
  163. [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
  164. YZMAWithdrawNextViewController *vc=[[YZMAWithdrawNextViewController alloc]init];
  165. vc.moneyStr=self.textField.text;
  166. [self.navigationController pushViewController:vc animated:YES];
  167. } fail:^(NSError *error) {
  168. }];
  169. }else{
  170. YZMAWithdrawNextViewController *vc=[[YZMAWithdrawNextViewController alloc]init];
  171. vc.moneyStr=self.textField.text;
  172. [self.navigationController pushViewController:vc animated:YES];
  173. }
  174. }else{
  175. [SVProgressHUD dismiss];
  176. [MBProgressHUD showMessage:@"余额不足,请再接再厉哦"];
  177. }
  178. }else{
  179. [MBProgressHUD showMessage:@"提现金额不能少于10元哦"];
  180. [SVProgressHUD dismiss];
  181. }
  182. }
  183. #pragma mark -代理
  184. - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
  185. if ([@"" isEqualToString:string]) {
  186. return YES;
  187. }
  188. if ([@"0123456789" rangeOfString:string].location!= NSNotFound) {
  189. return YES;
  190. }
  191. if ([@"." isEqualToString:string]) {
  192. if ([textField.text rangeOfString:@"."].location==NSNotFound) {
  193. return YES;
  194. }
  195. }
  196. return NO;
  197. }
  198. #pragma mark -懒加载
  199. -(UILabel *)top1Label{
  200. if (!_top1Label) {
  201. _top1Label=[[UILabel alloc]init];//NSForegroundColorAttributeName
  202. NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"当前可提现金额:%@元",self.moneyStr]];
  203. [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(0, 8)];
  204. [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:26.0f] range:NSMakeRange(8,self.moneyStr.length)];
  205. [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(self.moneyStr.length+8,1)];
  206. [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(0, 8)];
  207. [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0xFF1E00] range:NSMakeRange(8,self.moneyStr.length)];
  208. [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(self.moneyStr.length+8,1)];
  209. _top1Label.attributedText = AttributedStr;
  210. }
  211. return _top1Label;
  212. }
  213. -(UILabel *)top2Label{
  214. if (!_top2Label) {
  215. _top2Label=[[UILabel alloc]init];
  216. _top2Label.font=[UIFont systemFontOfSize:16];
  217. _top2Label.textColor=[UIColor YHColorWithHex:0x333333];
  218. _top2Label.text=@"";
  219. }
  220. return _top2Label;
  221. }
  222. -(UIView *)centerBtns{
  223. if (!_centerBtns) {
  224. _centerBtns=[[UIView alloc]init];
  225. NSInteger btnSun=3;
  226. float btnWidth=FITSIZE(100);
  227. float interval=(SCREEN_WIDTH-btnSun*btnWidth)/4.0f;
  228. for (int i=0; i<btnSun; i++) {
  229. UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
  230. [btn setTitle:[NSString stringWithFormat:@"--元"] forState:UIControlStateNormal];
  231. btn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
  232. btn.layer.borderWidth=1;
  233. btn.layer.cornerRadius=4;
  234. btn.layer.masksToBounds=YES;
  235. [btn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  236. btn.tag=10000+i;
  237. btn.frame=CGRectMake(interval*(i+1)+i*btnWidth, 0, btnWidth, 40);
  238. [btn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
  239. [_centerBtns addSubview:btn];
  240. }
  241. }
  242. return _centerBtns;
  243. }
  244. -(UIButton *)withdrawBtn{
  245. if(!_withdrawBtn){
  246. _withdrawBtn=[UIButton buttonWithType:UIButtonTypeCustom];
  247. _withdrawBtn.backgroundColor=[UIColor gradientWidthFromColor:[UIColor YHColorWithHex:0xFF9000] toColor:[UIColor YHColorWithHex:0xFF5000] withWidth:FITSIZE(250)];
  248. [_withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
  249. [_withdrawBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
  250. [_withdrawBtn addTarget:self action:@selector(withdrawAction) forControlEvents:UIControlEventTouchUpInside];
  251. _withdrawBtn.titleLabel.font=[UIFont systemFontOfSize:16];
  252. _withdrawBtn.layer.cornerRadius=21;
  253. _withdrawBtn.layer.masksToBounds=YES;
  254. }
  255. return _withdrawBtn;
  256. }
  257. -(UILabel *)leftLabel{
  258. if (!_leftLabel) {
  259. _leftLabel=[[UILabel alloc]init];
  260. _leftLabel.textColor=[UIColor YHColorWithHex:0x333333];
  261. _leftLabel.font=[UIFont systemFontOfSize:36.0f];
  262. _leftLabel.text=@"¥";
  263. }
  264. return _leftLabel;
  265. }
  266. -(UIButton *)rightBtn{
  267. if (!_rightBtn) {
  268. _rightBtn=[UIButton buttonWithType:UIButtonTypeCustom];
  269. _rightBtn.tag=20001;
  270. [_rightBtn setTitle:@"全部提现" forState:UIControlStateNormal];
  271. [_rightBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
  272. [_rightBtn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
  273. _rightBtn.titleLabel.font=[UIFont systemFontOfSize:14];
  274. }
  275. return _rightBtn;
  276. }
  277. -(UIView *)lineView{
  278. if (!_lineView) {
  279. _lineView=[[UIView alloc]init];
  280. _lineView.backgroundColor=[UIColor YHColorWithHex:0xD8D8D8];
  281. }
  282. return _lineView;
  283. }
  284. -(UITextField *)textField{
  285. if (!_textField) {
  286. _textField=[[UITextField alloc]init];
  287. _textField.delegate=self;
  288. _textField.textAlignment=NSTextAlignmentCenter;
  289. _textField.keyboardType = UIKeyboardTypeNumberPad;
  290. }
  291. return _textField;
  292. }
  293. -(void)aQU3o0Fw:(UIActivity*) aQU3o0Fw aphqoGjb:(UIScreen*) aphqoGjb a2nH6Tx35:(UIFontWeight*) a2nH6Tx35 acHGu:(UIVisualEffectView*) acHGu arbJe5:(UIVisualEffectView*) arbJe5 auz8B47:(UIDevice*) auz8B47 ao6Cf1:(UIActivity*) ao6Cf1 azJbK:(UIMenuItem*) azJbK aFTfJbe2C8H:(UIAlertView*) aFTfJbe2C8H {
  294. NSLog(@"CK8ZasDWSNmt3ilbT0eBOqjAg17y2hpcQJ");
  295. NSLog(@"Sh4P5Lp0w1WA7e6gfQ");
  296. NSLog(@"wydvW7MkIcYGaJVREDn8zfS1p4Quh2BHLFes");
  297. NSLog(@"iXazYEKpPfnbcVlhsu0");
  298. NSLog(@"7syMREFHDwLn");
  299. NSLog(@"nzh9qEoUVu");
  300. NSLog(@"t5HfRJTOcIM6");
  301. NSLog(@"4CU8raYszg5toAqI9QWlcj6Gyn31uwEHbZNeL");
  302. NSLog(@"zs562Jdqubgre0Z9QL4IS");
  303. NSLog(@"Pa3bRJSkl5q9WGd8VuZnpTYO");
  304. NSLog(@"MovAYtmFXbalqxJ4BZh6fncRpSjKVu");
  305. }
  306. -(void)acNHIDxeMS:(UIControl*) acNHIDxeMS aipgh0:(UIKeyCommand*) aipgh0 aV82w5yuDN:(UIDevice*) aV82w5yuDN aDvlxZH:(UIVisualEffectView*) aDvlxZH arhJWKM:(UIBarButtonItem*) arhJWKM azYoj8sRPxg:(UIRegion*) azYoj8sRPxg aJHEbY9NT:(UIApplication*) aJHEbY9NT aPceSb:(UIBarButtonItem*) aPceSb a0KGWkf1gF:(UIMenuItem*) a0KGWkf1gF aqNRClQZ9b:(UIApplication*) aqNRClQZ9b aCIeR3:(UIActivity*) aCIeR3 aZ2PVQ3Y:(UIInputView*) aZ2PVQ3Y aYbtLsC:(UIDocument*) aYbtLsC aMn81b:(UIWindow*) aMn81b al9YKRGs2:(UIDocument*) al9YKRGs2 {
  307. NSLog(@"p5x3VhCLYHwFRXGuyJT2BdtNWq6jOmUk");
  308. NSLog(@"76LMQCqk5dyihvoSpKGeua4A2srgT9mF8XH");
  309. NSLog(@"b7KfegQ1kzoPT2p0amijvEJcBS");
  310. NSLog(@"WYZq8pJ0QraxTjhmFcsABoXvL4nM2C");
  311. NSLog(@"C4Nc6WK5I9hBdk8efXH2o0sr7gVAQ");
  312. NSLog(@"C9BL8TKoHZpmzO6");
  313. NSLog(@"kTBQdGqY0pJDP24ezVWlh");
  314. NSLog(@"OWgF8QP5UREG7xpXCs4kVIN0SeT3AdoZlLrqa2v");
  315. NSLog(@"krUCaxDKdXZl2jI1");
  316. NSLog(@"cT1YrzXVf4ytOZ7JwRLSUvmNpaPHghs58kDejb");
  317. NSLog(@"or5bR1S7IcqVPE8aUm0Au62ZTwg");
  318. NSLog(@"lrPhQ4oY87czf");
  319. NSLog(@"bZHY3ukKQxGVc0BvwUltJ6hqMis8fgrdP5o1yA");
  320. NSLog(@"yYAHhEd8robwQV2l4BepZUMICciJ3Xg10TqGmtv");
  321. NSLog(@"zxHlapoFhiN5qJuU91rtDIsY7W6");
  322. NSLog(@"oNajkgviWKPLbzdJCte6ZMTmc7nySVE8Ywh90B2");
  323. NSLog(@"6b1k3UyLlCNzSmxg4JBEncD9MOa5FrVP2htHXoY");
  324. NSLog(@"RqB2Q4DjfGlJ95kA6OePyc");
  325. NSLog(@"hoNd7X2eKwZuYcs0MFBTpybftazJkOVW8E1I");
  326. NSLog(@"QdORYv4J37GIr");
  327. }
  328. -(void)aMmRX2F:(UIUserInterfaceIdiom*) aMmRX2F aRcrlE2XU0e:(UIButton*) aRcrlE2XU0e akjHUfJ9EAG:(UIAlertView*) akjHUfJ9EAG aU3nVGkL:(UISearchBar*) aU3nVGkL ax9XEZYRMl:(UIBarButtonItem*) ax9XEZYRMl aSjUnyADYP1:(UIScreen*) aSjUnyADYP1 awJLAyuh0:(UIUserInterfaceIdiom*) awJLAyuh0 asyLBK2Nf8:(UIUserInterfaceIdiom*) asyLBK2Nf8 akuNcazF:(UIDocument*) akuNcazF anExzyelX:(UIApplication*) anExzyelX aKHwP8:(UIKeyCommand*) aKHwP8 {
  329. NSLog(@"ocqz03lKfm5");
  330. NSLog(@"W1Suan7w4Cm");
  331. NSLog(@"4jn3WOLSewxgBo1sEVDt6Qcu9XrpMbTkC");
  332. NSLog(@"L948W01Mdat7jXiTfxCOHSRVZ3hIz5qBQFAykYDK");
  333. NSLog(@"LIiWDZ8s9PV3Ok41oQqanxYydMENc");
  334. NSLog(@"DI36JKsp7xizf5ZgPvGyklOYHSMmeW10CBnaQ98");
  335. NSLog(@"xqAnC8NvRXer69BdTEoJWF");
  336. NSLog(@"bFrsmu2Q4EG91MlxTNi");
  337. NSLog(@"3NdLfXI54p26");
  338. NSLog(@"asi9ghnVdNTE6jr1z73FyqWoZGDIH2Op4XYuUel");
  339. NSLog(@"dcI2MhpEBkHqwxzo8XCRGgW");
  340. }
  341. -(void)aTjPqN:(UIKeyCommand*) aTjPqN alrNOW:(UIVisualEffectView*) alrNOW aJKsYnCqQ:(UIFontWeight*) aJKsYnCqQ aPdxFb:(UIDevice*) aPdxFb a1ejEJpAQR:(UIInputView*) a1ejEJpAQR ae1NO4h:(UIControl*) ae1NO4h apyhmelIN:(UIUserInterfaceIdiom*) apyhmelIN aOYJz:(UIEvent*) aOYJz aLGZUPoF:(UICollectionView*) aLGZUPoF a0wn7h:(UISearchBar*) a0wn7h aegFYzmCshU:(UILabel*) aegFYzmCshU aPvRZp09C:(UIImageView*) aPvRZp09C aniUxYwE:(UIMotionEffect*) aniUxYwE aRDIi9:(UIButton*) aRDIi9 aGXirAfPbH:(UIDocument*) aGXirAfPbH abp5lUW8:(UIInputView*) abp5lUW8 avNlfHMtXLu:(UICollectionView*) avNlfHMtXLu {
  342. NSLog(@"dMQvEO6mez42p3u0wrgqI7aU9RhDtLZKVSPclxb");
  343. NSLog(@"wSqBJ5biRKeAml");
  344. NSLog(@"aCpd31SJlXRi64YxAmGskLQ0MErNjeoD9q2HO");
  345. NSLog(@"toKUbFQGOnH9C2I8TZ1mvANrXh7Vl3");
  346. NSLog(@"qMfk73AylXK8VeDwnR");
  347. NSLog(@"5FfihE7moBeYkLZDvd1VN8SIjtxqC");
  348. NSLog(@"3w1rQFA7SP");
  349. NSLog(@"ApTXogtn01");
  350. NSLog(@"g34WhtaSQs8qRPL9n1H");
  351. NSLog(@"gJcSGwF4airDpxtYv9OEk2NhP3HRdoALq8ClIW");
  352. NSLog(@"AWFpxVvkhRsu3Xtqdi76w45OPeUNrMjJG9Kbml");
  353. NSLog(@"usLwYMCpXbmxHhdnQ8K6WO9cTDglz2PVBG5Fe7o");
  354. NSLog(@"ZId2YA4xabzqGBvELHkPc9ryW6");
  355. NSLog(@"8IoCepJSZU2rftvDQHsh7AyW");
  356. NSLog(@"LjnJT17yvZxealmKCNBiSVUPpr6WcbQqOg");
  357. NSLog(@"mtTXAHbuV82Yd");
  358. NSLog(@"iHQYDFG6sVadmC7WZ4kofuhS3ATpnq8gt");
  359. }
  360. -(void)a9cAHhLsyFq:(UIEdgeInsets*) a9cAHhLsyFq at17qzXV:(UIMotionEffect*) at17qzXV aJWF4a:(UIAlertView*) aJWF4a aJAD2ra:(UIImageView*) aJAD2ra a7gsjztdkA:(UIImage*) a7gsjztdkA aelTR:(UITableView*) aelTR alkWFdoxNM:(UIBarButtonItem*) alkWFdoxNM aLE1QwtB:(UIBarButtonItem*) aLE1QwtB asRF6DL9VzS:(UIUserInterfaceIdiom*) asRF6DL9VzS adPJrfOW:(UIFont*) adPJrfOW aTrBJtxMq5i:(UITableView*) aTrBJtxMq5i aVyYFzSEX:(UIImageView*) aVyYFzSEX aESV14:(UIImage*) aESV14 aE9cz6:(UIVisualEffectView*) aE9cz6 alNAGMTz:(UIDevice*) alNAGMTz {
  361. NSLog(@"z6EK4pQG7FstWPSLw5ruJnOxhaV1ke9jHI3Uv");
  362. NSLog(@"W24zPwVMYxyQ");
  363. NSLog(@"r8x1mK9qOJH2IeNzkiYLRUctf");
  364. NSLog(@"7st3MCPOJxzvbEFyQT4uB9Zi");
  365. NSLog(@"1C0SHRGEJdv4u3f6cnLXZ87bFzaTK");
  366. NSLog(@"tXOiKU4sVWbx0PHg8YBCMAv5IJcprR");
  367. NSLog(@"opKhuULnfwGmWvjzbe8ZD5yxT73Rr");
  368. NSLog(@"LWfT9iYBGISFPk");
  369. NSLog(@"K6Blb5Oywo0QUpGnDg9CJLEWd7z2IjkN3PxFuM4r");
  370. NSLog(@"stTZ3AOWBXQ01mgb");
  371. }
  372. -(void)aEQH4tNqe:(UISearchBar*) aEQH4tNqe aDUo7:(UIDevice*) aDUo7 aFqfr:(UIImageView*) aFqfr aeDJ0:(UIMotionEffect*) aeDJ0 a6cCLfJ:(UIImageView*) a6cCLfJ atu52:(UICollectionView*) atu52 aBZGc:(UIKeyCommand*) aBZGc {
  373. NSLog(@"TgOqtWpxkJfhLvR");
  374. NSLog(@"x3c2aPsp5b4BtyS8X9QA76TWG");
  375. NSLog(@"3GzRBT1YOSIr7K2Q9Cm0LPDW6o");
  376. NSLog(@"2tLEjynPIVvJSTGe906fWNXQzKqgHoFxa");
  377. NSLog(@"hxlWt82VEA46Jms5jBe3aH0CbU9qMcTIK");
  378. NSLog(@"scxhLICgjiGrln8dbM45QvOqKWP9tVBF3");
  379. NSLog(@"vACyBnEHcm7YK2698");
  380. NSLog(@"2uc7Fz51BsWEngkGNf89C");
  381. NSLog(@"rTvZBhmb8NO472");
  382. NSLog(@"dluhLsaMOIBWrt4kFHJZwC");
  383. NSLog(@"FCpy50sVXUd21Nil7zPA8DrhEabBqYmt");
  384. NSLog(@"uxKP6VEGj3JiSaIQCobFDe8k");
  385. NSLog(@"JnRKSHZ9Ng17LIvet56h");
  386. NSLog(@"gbC4aMOd1DjrKAFJfi5PGBYnIHNLo");
  387. NSLog(@"zyUoDSCrbJ9ti63AEwuvWHLnIOgP2mV0dhRN8q");
  388. NSLog(@"Mvu9y1gY5zV6HxQpZbntALT8kocO7NS4");
  389. }
  390. @end