123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- //
- // YZMAWithdrawViewController.m
- // YouHuiProject
- //
- // Created by jcymac on 2018/5/23.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMAWithdrawViewController.h"
- #import "YZMAWithdrawNextViewController.h"
- @interface YZMAWithdrawViewController ()
- <
- UITextFieldDelegate
- >
- @property (nonatomic,strong)UILabel *top1Label;
- @property (nonatomic,strong)UILabel *top2Label;
- @property (nonatomic,strong)UIView *centerBtns;
- @property (nonatomic,strong)UIButton *withdrawBtn;
- @property (nonatomic,strong)UILabel *leftLabel;
- @property (nonatomic,strong)UIButton *rightBtn;
- @property (nonatomic,strong)UIView *lineView;
- @property (nonatomic,strong)UITextField *textField;
- @property (nonatomic,strong)NSArray *moneyArr;
- @property (nonatomic,strong)UIButton *currentBtn;
- @property (nonatomic,strong)NSNumber *infoNum;
- @end
- @implementation YZMAWithdrawViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.infoNum=@(1);
- [self addUI];
- [self adjustUI];
- [self configNavigationBar];
- [self request];
- }
- - (void)configNavigationBar {
- [self.navigationBar setNavTitle:@"提现"];
- self.navigationBar.backgroundColor = [UIColor changeColor];
- self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
- UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
- [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
- [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
- [self.navigationBar setCustomLeftButtons:@[leftBtn]];
- }
- -(void)request{
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/priceList",BaseURL];
- [YZMAHttp post:url params:nil success:^(id json) {
-
- if (json[@"data"]&&json[@"data"][@"data"]) {
- NSArray *arr=json[@"data"][@"data"];
- if(arr.count==3){
- self.moneyArr=arr;
- for (UIButton *btn in self.centerBtns.subviews) {
- NSInteger index=btn.tag-10000;
- [btn setTitle:[NSString stringWithFormat:@"%@元",arr[index]] forState:UIControlStateNormal];
- }
- }
- NSNumber *flag=json[@"data"][@"flag"];
- self.infoNum=flag;
- if ([flag integerValue]==2) {
- //前往微信绑定
- // if (json[@"data"][@"info"]) {
- // [SVProgressHUD showErrorWithStatus:json[@"data"][@"info"]];
- // [SVProgressHUD dismissWithDelay:1.0f];
- // }
- [self.withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
- }else{
- [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
- }
- }
-
- } failure:^(NSError *error) {
-
- }];
-
-
-
- }
- - (void)backAction {
- [self.navigationController popViewControllerAnimated:YES];
- }
- -(void)addUI{
- [self.view addSubview:self.top1Label];
- [self.view addSubview:self.top2Label];
- [self.view addSubview:self.centerBtns];
- [self.view addSubview:self.withdrawBtn];
- [self.view addSubview:self.leftLabel];
- [self.view addSubview:self.rightBtn];
- [self.view addSubview:self.lineView];
- [self.view addSubview:self.textField];
- }
- -(void)adjustUI{
- [self.top1Label mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FITSIZE(20));
- make.top.mas_equalTo(98);
- }];
- [self.top2Label mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.top1Label.mas_left);
- make.top.equalTo(self.top1Label.mas_bottom).offset(4);
- }];
-
- [self.centerBtns mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.mas_equalTo(0);
- make.top.equalTo(self.top2Label.mas_bottom).offset(35);
- make.height.mas_equalTo(40);
- }];
- [self.leftLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FITSIZE(27));
- make.top.equalTo(self.centerBtns.mas_bottom).offset(15);
- }];
- [self.rightBtn mas_makeConstraints:^(MASConstraintMaker *make) {
- make.right.mas_equalTo(FITSIZE(-27));
- make.centerY.equalTo(self.leftLabel.mas_centerY);
- }];
- [self.lineView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.leftLabel.mas_left);
- make.right.equalTo(self.rightBtn.mas_right);
- make.top.equalTo(self.leftLabel.mas_bottom);
- make.height.mas_equalTo(0.5);
- }];
- [self.withdrawBtn mas_makeConstraints:^(MASConstraintMaker *make) {
- make.centerX.equalTo(self.view.mas_centerX);
- make.top.equalTo(self.lineView.mas_bottom).offset(126);
- make.width.mas_equalTo(FITSIZE(250));
- make.height.mas_equalTo(42);
- }];
- [self.textField mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.leftLabel.mas_right).offset(FITSIZE(5));
- make.right.equalTo(self.rightBtn.mas_left).offset(FITSIZE(5));
- make.height.equalTo(self.rightBtn.mas_height);
- // make.centerY.equalTo(self.leftLabel.mas_centerY);
- make.bottom.equalTo(self.lineView.mas_top).offset(-2);
- }];
- }
- #pragma mark -点击事件
- -(void)changeMoney:(UIButton *)btn{
- if (self.currentBtn) {//把当前的边框和字体颜色变成
- self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
- [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- }
- switch (btn.tag) {
- case 20001:
- {
- self.textField.text=self.moneyStr;
- }
- break;
- case 10000:
- case 10001:
- case 10002:
- self.currentBtn=btn;
- [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
- self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xFF5200].CGColor;
- if (self.moneyArr &&self.moneyArr.count==3) {
- if ([self.moneyArr[btn.tag-10000] integerValue]!=0) {
- self.textField.text=[NSString stringWithFormat:@"%@",self.moneyArr[btn.tag-10000]];
- }
- }
- break;
- default:
- break;
- }
- }
- -(void)withdrawAction{
- float money=[self.textField.text floatValue];
- float maxMoney=[self.moneyStr floatValue];
- if (money>=10) {
- if (money<=maxMoney) {
- if ([self.infoNum integerValue]==2) {
- [[YZMAUMbindWeChat sharedInstance] bindWeChatSuccess:^(UMSocialUserInfoResponse *response) {
- self.infoNum=@(1);
- [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
- YZMAWithdrawNextViewController *vc=[[YZMAWithdrawNextViewController alloc]init];
- vc.moneyStr=self.textField.text;
- [self.navigationController pushViewController:vc animated:YES];
-
- } fail:^(NSError *error) {
-
- }];
- }else{
- YZMAWithdrawNextViewController *vc=[[YZMAWithdrawNextViewController alloc]init];
- vc.moneyStr=self.textField.text;
- [self.navigationController pushViewController:vc animated:YES];
- }
- }else{
-
- [SVProgressHUD dismiss];
- [MBProgressHUD showMessage:@"余额不足,请再接再厉哦"];
- }
-
- }else{
- [MBProgressHUD showMessage:@"提现金额不能少于10元哦"];
- [SVProgressHUD dismiss];
-
- }
- }
- #pragma mark -代理
- - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
- if ([@"" isEqualToString:string]) {
- return YES;
- }
- if ([@"0123456789" rangeOfString:string].location!= NSNotFound) {
- return YES;
- }
- if ([@"." isEqualToString:string]) {
- if ([textField.text rangeOfString:@"."].location==NSNotFound) {
- return YES;
- }
- }
-
- return NO;
- }
- #pragma mark -懒加载
- -(UILabel *)top1Label{
- if (!_top1Label) {
- _top1Label=[[UILabel alloc]init];//NSForegroundColorAttributeName
- NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"当前可提现金额:%@元",self.moneyStr]];
- [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(0, 8)];
- [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:26.0f] range:NSMakeRange(8,self.moneyStr.length)];
- [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(self.moneyStr.length+8,1)];
- [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(0, 8)];
- [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0xFF1E00] range:NSMakeRange(8,self.moneyStr.length)];
- [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(self.moneyStr.length+8,1)];
-
- _top1Label.attributedText = AttributedStr;
- }
- return _top1Label;
- }
- -(UILabel *)top2Label{
- if (!_top2Label) {
- _top2Label=[[UILabel alloc]init];
- _top2Label.font=[UIFont systemFontOfSize:16];
- _top2Label.textColor=[UIColor YHColorWithHex:0x333333];
- _top2Label.text=@"";
- }
- return _top2Label;
- }
- -(UIView *)centerBtns{
- if (!_centerBtns) {
- _centerBtns=[[UIView alloc]init];
- NSInteger btnSun=3;
- float btnWidth=FITSIZE(100);
- float interval=(SCREEN_WIDTH-btnSun*btnWidth)/4.0f;
- for (int i=0; i<btnSun; i++) {
- UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
- [btn setTitle:[NSString stringWithFormat:@"--元"] forState:UIControlStateNormal];
- btn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
- btn.layer.borderWidth=1;
- btn.layer.cornerRadius=4;
- btn.layer.masksToBounds=YES;
- [btn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- btn.tag=10000+i;
- btn.frame=CGRectMake(interval*(i+1)+i*btnWidth, 0, btnWidth, 40);
- [btn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
- [_centerBtns addSubview:btn];
- }
-
- }
- return _centerBtns;
- }
- -(UIButton *)withdrawBtn{
- if(!_withdrawBtn){
- _withdrawBtn=[UIButton buttonWithType:UIButtonTypeCustom];
- _withdrawBtn.backgroundColor=[UIColor gradientWidthFromColor:[UIColor YHColorWithHex:0xFF9000] toColor:[UIColor YHColorWithHex:0xFF5000] withWidth:FITSIZE(250)];
- [_withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
- [_withdrawBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
- [_withdrawBtn addTarget:self action:@selector(withdrawAction) forControlEvents:UIControlEventTouchUpInside];
- _withdrawBtn.titleLabel.font=[UIFont systemFontOfSize:16];
- _withdrawBtn.layer.cornerRadius=21;
- _withdrawBtn.layer.masksToBounds=YES;
- }
- return _withdrawBtn;
- }
- -(UILabel *)leftLabel{
- if (!_leftLabel) {
- _leftLabel=[[UILabel alloc]init];
- _leftLabel.textColor=[UIColor YHColorWithHex:0x333333];
- _leftLabel.font=[UIFont systemFontOfSize:36.0f];
- _leftLabel.text=@"¥";
- }
- return _leftLabel;
- }
- -(UIButton *)rightBtn{
- if (!_rightBtn) {
- _rightBtn=[UIButton buttonWithType:UIButtonTypeCustom];
- _rightBtn.tag=20001;
- [_rightBtn setTitle:@"全部提现" forState:UIControlStateNormal];
- [_rightBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
- [_rightBtn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
- _rightBtn.titleLabel.font=[UIFont systemFontOfSize:14];
- }
- return _rightBtn;
- }
- -(UIView *)lineView{
- if (!_lineView) {
- _lineView=[[UIView alloc]init];
- _lineView.backgroundColor=[UIColor YHColorWithHex:0xD8D8D8];
- }
- return _lineView;
- }
- -(UITextField *)textField{
- if (!_textField) {
- _textField=[[UITextField alloc]init];
- _textField.delegate=self;
- _textField.textAlignment=NSTextAlignmentCenter;
- _textField.keyboardType = UIKeyboardTypeNumberPad;
- }
- return _textField;
- }
- -(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 {
- NSLog(@"CK8ZasDWSNmt3ilbT0eBOqjAg17y2hpcQJ");
- NSLog(@"Sh4P5Lp0w1WA7e6gfQ");
- NSLog(@"wydvW7MkIcYGaJVREDn8zfS1p4Quh2BHLFes");
- NSLog(@"iXazYEKpPfnbcVlhsu0");
- NSLog(@"7syMREFHDwLn");
- NSLog(@"nzh9qEoUVu");
- NSLog(@"t5HfRJTOcIM6");
- NSLog(@"4CU8raYszg5toAqI9QWlcj6Gyn31uwEHbZNeL");
- NSLog(@"zs562Jdqubgre0Z9QL4IS");
- NSLog(@"Pa3bRJSkl5q9WGd8VuZnpTYO");
- NSLog(@"MovAYtmFXbalqxJ4BZh6fncRpSjKVu");
- }
- -(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 {
- NSLog(@"p5x3VhCLYHwFRXGuyJT2BdtNWq6jOmUk");
- NSLog(@"76LMQCqk5dyihvoSpKGeua4A2srgT9mF8XH");
- NSLog(@"b7KfegQ1kzoPT2p0amijvEJcBS");
- NSLog(@"WYZq8pJ0QraxTjhmFcsABoXvL4nM2C");
- NSLog(@"C4Nc6WK5I9hBdk8efXH2o0sr7gVAQ");
- NSLog(@"C9BL8TKoHZpmzO6");
- NSLog(@"kTBQdGqY0pJDP24ezVWlh");
- NSLog(@"OWgF8QP5UREG7xpXCs4kVIN0SeT3AdoZlLrqa2v");
- NSLog(@"krUCaxDKdXZl2jI1");
- NSLog(@"cT1YrzXVf4ytOZ7JwRLSUvmNpaPHghs58kDejb");
- NSLog(@"or5bR1S7IcqVPE8aUm0Au62ZTwg");
- NSLog(@"lrPhQ4oY87czf");
- NSLog(@"bZHY3ukKQxGVc0BvwUltJ6hqMis8fgrdP5o1yA");
- NSLog(@"yYAHhEd8robwQV2l4BepZUMICciJ3Xg10TqGmtv");
- NSLog(@"zxHlapoFhiN5qJuU91rtDIsY7W6");
- NSLog(@"oNajkgviWKPLbzdJCte6ZMTmc7nySVE8Ywh90B2");
- NSLog(@"6b1k3UyLlCNzSmxg4JBEncD9MOa5FrVP2htHXoY");
- NSLog(@"RqB2Q4DjfGlJ95kA6OePyc");
- NSLog(@"hoNd7X2eKwZuYcs0MFBTpybftazJkOVW8E1I");
- NSLog(@"QdORYv4J37GIr");
- }
- -(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 {
- NSLog(@"ocqz03lKfm5");
- NSLog(@"W1Suan7w4Cm");
- NSLog(@"4jn3WOLSewxgBo1sEVDt6Qcu9XrpMbTkC");
- NSLog(@"L948W01Mdat7jXiTfxCOHSRVZ3hIz5qBQFAykYDK");
- NSLog(@"LIiWDZ8s9PV3Ok41oQqanxYydMENc");
- NSLog(@"DI36JKsp7xizf5ZgPvGyklOYHSMmeW10CBnaQ98");
- NSLog(@"xqAnC8NvRXer69BdTEoJWF");
- NSLog(@"bFrsmu2Q4EG91MlxTNi");
- NSLog(@"3NdLfXI54p26");
- NSLog(@"asi9ghnVdNTE6jr1z73FyqWoZGDIH2Op4XYuUel");
- NSLog(@"dcI2MhpEBkHqwxzo8XCRGgW");
- }
- -(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 {
- NSLog(@"dMQvEO6mez42p3u0wrgqI7aU9RhDtLZKVSPclxb");
- NSLog(@"wSqBJ5biRKeAml");
- NSLog(@"aCpd31SJlXRi64YxAmGskLQ0MErNjeoD9q2HO");
- NSLog(@"toKUbFQGOnH9C2I8TZ1mvANrXh7Vl3");
- NSLog(@"qMfk73AylXK8VeDwnR");
- NSLog(@"5FfihE7moBeYkLZDvd1VN8SIjtxqC");
- NSLog(@"3w1rQFA7SP");
- NSLog(@"ApTXogtn01");
- NSLog(@"g34WhtaSQs8qRPL9n1H");
- NSLog(@"gJcSGwF4airDpxtYv9OEk2NhP3HRdoALq8ClIW");
- NSLog(@"AWFpxVvkhRsu3Xtqdi76w45OPeUNrMjJG9Kbml");
- NSLog(@"usLwYMCpXbmxHhdnQ8K6WO9cTDglz2PVBG5Fe7o");
- NSLog(@"ZId2YA4xabzqGBvELHkPc9ryW6");
- NSLog(@"8IoCepJSZU2rftvDQHsh7AyW");
- NSLog(@"LjnJT17yvZxealmKCNBiSVUPpr6WcbQqOg");
- NSLog(@"mtTXAHbuV82Yd");
- NSLog(@"iHQYDFG6sVadmC7WZ4kofuhS3ATpnq8gt");
- }
- -(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 {
- NSLog(@"z6EK4pQG7FstWPSLw5ruJnOxhaV1ke9jHI3Uv");
- NSLog(@"W24zPwVMYxyQ");
- NSLog(@"r8x1mK9qOJH2IeNzkiYLRUctf");
- NSLog(@"7st3MCPOJxzvbEFyQT4uB9Zi");
- NSLog(@"1C0SHRGEJdv4u3f6cnLXZ87bFzaTK");
- NSLog(@"tXOiKU4sVWbx0PHg8YBCMAv5IJcprR");
- NSLog(@"opKhuULnfwGmWvjzbe8ZD5yxT73Rr");
- NSLog(@"LWfT9iYBGISFPk");
- NSLog(@"K6Blb5Oywo0QUpGnDg9CJLEWd7z2IjkN3PxFuM4r");
- NSLog(@"stTZ3AOWBXQ01mgb");
- }
- -(void)aEQH4tNqe:(UISearchBar*) aEQH4tNqe aDUo7:(UIDevice*) aDUo7 aFqfr:(UIImageView*) aFqfr aeDJ0:(UIMotionEffect*) aeDJ0 a6cCLfJ:(UIImageView*) a6cCLfJ atu52:(UICollectionView*) atu52 aBZGc:(UIKeyCommand*) aBZGc {
- NSLog(@"TgOqtWpxkJfhLvR");
- NSLog(@"x3c2aPsp5b4BtyS8X9QA76TWG");
- NSLog(@"3GzRBT1YOSIr7K2Q9Cm0LPDW6o");
- NSLog(@"2tLEjynPIVvJSTGe906fWNXQzKqgHoFxa");
- NSLog(@"hxlWt82VEA46Jms5jBe3aH0CbU9qMcTIK");
- NSLog(@"scxhLICgjiGrln8dbM45QvOqKWP9tVBF3");
- NSLog(@"vACyBnEHcm7YK2698");
- NSLog(@"2uc7Fz51BsWEngkGNf89C");
- NSLog(@"rTvZBhmb8NO472");
- NSLog(@"dluhLsaMOIBWrt4kFHJZwC");
- NSLog(@"FCpy50sVXUd21Nil7zPA8DrhEabBqYmt");
- NSLog(@"uxKP6VEGj3JiSaIQCobFDe8k");
- NSLog(@"JnRKSHZ9Ng17LIvet56h");
- NSLog(@"gbC4aMOd1DjrKAFJfi5PGBYnIHNLo");
- NSLog(@"zyUoDSCrbJ9ti63AEwuvWHLnIOgP2mV0dhRN8q");
- NSLog(@"Mvu9y1gY5zV6HxQpZbntALT8kocO7NS4");
- }
- @end
|