123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- //
- // KXMainWebView2ViewController.m
- // CAISHEN
- //
- // Created by jikaipeng on 2017/10/17.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "KXMainWebView2ViewController.h"
- #import "KXLogginViewController.h"
- #import "KXSelectTableViewCell.h"
- #import <MobileCoreServices/MobileCoreServices.h>
- #import <AVFoundation/AVFoundation.h>
- #import <MediaPlayer/MediaPlayer.h>
- @interface KXMainWebView2ViewController ()<UITableViewDataSource,UITableViewDelegate,UITextFieldDelegate,UIGestureRecognizerDelegate,UIImagePickerControllerDelegate,UINavigationControllerDelegate>
- {
- UIView *_selectView;
- BOOL _selected;
- }
- @property (nonatomic,strong)UITableView *selectTableView;
- @property (nonatomic,strong)NSArray *careerArray;
- @property (nonatomic,strong)NSArray *incomellArray;
- @property (nonatomic,copy)NSString *Id;
- @property (nonatomic,strong)UIImageView *imageview;
- @property (nonatomic,assign)NSUInteger tag;
- @property (nonatomic,strong)UIImagePickerController *picker;
- @property (nonatomic,assign)BOOL haveImageA;
- @property (nonatomic,assign)BOOL haveImageB;
- @property (nonatomic,strong) NSDictionary *params;
- @end
- @implementation KXMainWebView2ViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- [self addLeftBarButtonItemWithImageName:@"main_back" title:nil target:self selector:@selector(beforeAction)];
- self.name = @"贷款申请";
- [self initUI];
- [self createviewSelectView];
- }
- - (void)initUI{
- WS(weakSelf);
- UIView *whiteView=[[UIView alloc]init];
- whiteView.backgroundColor=[UIColor grayColor];
- whiteView.tag = 5000;
- whiteView.backgroundColor=[UIColor whiteColor];
- UIView *topview = [[UIView alloc] init];
- topview.backgroundColor = [UIColor baseColor];
- self.imageview = [[UIImageView alloc] init];
- self.imageview.image = [UIImage imageNamed:@"main_detail_info"];
- self.imageview.tag = 3000;
- [self.view addSubview:whiteView];
- [whiteView addSubview:topview];
- [whiteView addSubview:self.imageview];
- [whiteView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(weakSelf.view.mas_top).offset(SCREEN_MUTI*14);
- // make.size.equalTo(CGSizeMake(SCREEN_WIDTH-(2*14)*SCREEN_MUTI, SCREEN_MUTI*450));
- make.centerX.equalTo(weakSelf.view.mas_centerX);
- make.bottom.mas_equalTo(self.view.mas_bottom).offset(-10);
- make.width.equalTo(self.view.mas_width).multipliedBy(0.95);
- }];
- [topview mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(whiteView.mas_left);
- make.top.equalTo(whiteView.mas_top);
- make.right.equalTo(whiteView.mas_right);
- make.height.equalTo(SCREEN_MUTI*16);
- }];
- [self.imageview mas_makeConstraints:^(MASConstraintMaker *make) {
- make.centerX.equalTo(whiteView.mas_centerX);
- make.top.equalTo(topview.mas_bottom).offset(22);
- make.size.equalTo(CGSizeMake(SCREEN_MUTI*150, SCREEN_MUTI*39));
- }];
-
- UIView *backview2 = [[UIView alloc] init];
- backview2.tag = 4000;
- [whiteView addSubview:backview2];
- [backview2 mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(self.imageview.mas_bottom).offset(SCREEN_MUTI*10);
- make.left.equalTo(whiteView.mas_left).offset(SCREEN_MUTI*14);
- make.right.equalTo(whiteView.mas_right).offset(-SCREEN_MUTI*14);
- make.height.equalTo(@305);
- }];
- NSArray *infoArray=@[@"name",@"age",@"phone",@"work",@"income"];
- NSArray *titleArray=@[@"真实姓名",@"年 龄",@"联系方式",@"职 业",@"月 收 入"];
- NSArray *placeholderArray=@[@"请输入真实姓名",@"请输入年龄",@"请输入联系方式"];
- CGFloat width=0;
- NSDictionary *attributes = @{NSFontAttributeName:[UIFont systemFontOfSize:16],};
- for(NSString* title in titleArray){
- CGFloat width1=[title boundingRectWithSize:CGSizeMake(0, 0) options:NSStringDrawingTruncatesLastVisibleLine attributes:attributes context:nil].size.width;
- if(width1>width){
- width=width1;
- }
- }
-
- for (int i=0; i<5; i++) {
- float tempDevHeight=50;
- float tempDevHeight2=15;
- if ([@"iPad" isEqualToString:[UIDevice currentDevice].localizedModel]) {
- tempDevHeight=44;
- tempDevHeight2=8;
- }
- UIImageView *imageView2=[[UIImageView alloc]initWithFrame:CGRectMake(10, (tempDevHeight*i+tempDevHeight2), 22*SCREEN_MUTI, 22*SCREEN_MUTI)];
- imageView2.image=[UIImage imageNamed:[NSString stringWithFormat:@"userinfo_%@",infoArray[i]]];
- [backview2 addSubview:imageView2];
-
- UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(38*SCREEN_MUTI, (50*i+1)*SCREEN_MUTI, width,50*SCREEN_MUTI)];
- label.text=titleArray[i];
- label.textColor=[UIColor titleColor];
- label.font=FONT_SYS(SCREEN_MUTI*16);
- [backview2 addSubview:label];
- UILabel *lineLabel=[[UILabel alloc]initWithFrame:CGRectMake(0, (50*(i+1)+1)*SCREEN_MUTI, (SCREEN_WIDTH-56)*SCREEN_MUTI, 1)];
- lineLabel.backgroundColor=[UIColor lineColor];
- [backview2 addSubview:lineLabel];
- }
-
- for (int i=0; i<3; i++) {
- UITextField *tf=[[UITextField alloc]initWithFrame:CGRectMake( (12+width+34)*SCREEN_MUTI, (50*i+1)*SCREEN_MUTI, SCREEN_WIDTH-(32+width+34)*SCREEN_MUTI, 50*SCREEN_MUTI)];
- tf.tag=666+i;
- tf.textColor=[UIColor detailTitleColor];
- tf.placeholder=placeholderArray[i];
- tf.font=FONT_SYS(SCREEN_MUTI*16);
- if(i!=0){
- tf.keyboardType = UIKeyboardTypeNumberPad;
- tf.delegate=self;
- }
- [backview2 addSubview:tf];
- }
-
- NSArray *buttonArray=@[@"请选择职业身份",@"请选择月收入"];
- for (int i=0; i<2; i++) {
- UIButton *button=[UIButton buttonWithType:UIButtonTypeCustom];
- button.frame=CGRectMake((12+width+34)*SCREEN_MUTI, 50*(i+3)*SCREEN_MUTI, SCREEN_WIDTH-(86+width)*SCREEN_MUTI, 50*SCREEN_MUTI);
- [button setTitle:buttonArray[i] forState:UIControlStateNormal];
- button.titleLabel.font=FONT_SYS(SCREEN_MUTI*16);
- button.tag=2000+i;
- [button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];
- button.contentHorizontalAlignment=UIControlContentHorizontalAlignmentLeft;
- [button setTitleColor:[UIColor titleColor] forState:UIControlStateNormal];
- [backview2 addSubview:button];
- }
-
- UIButton *next=[UIButton buttonWithType:UIButtonTypeCustom];
- next.layer.cornerRadius=3;
- next.tag=999;
- next.enabled = YES;
- next.layer.masksToBounds=YES;
- next.backgroundColor=[UIColor KXColorWithHex:0xcccccc];
- next.titleLabel.font=FONT_SYS(SCREEN_MUTI*22);
- [next setTitle:@"下一步" forState:UIControlStateNormal];
- [next setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
- [next addTarget:self action:@selector(nextllAction) forControlEvents:UIControlEventTouchUpInside];
- [whiteView addSubview:next];
-
- [next mas_makeConstraints:^(MASConstraintMaker *make) {
- make.centerX.equalTo(whiteView.mas_centerX);
- make.bottom.equalTo(whiteView.mas_bottom).offset(-10*SCREEN_MUTI);
- make.size.equalTo(CGSizeMake(SCREEN_MUTI*306, SCREEN_MUTI*44));
- }];
- }
- -(void)buttonAction:(UIButton *)btn
- {
- switch (btn.tag) {
- case 2000:
- {
- _selected=YES;
- [self.selectTableView reloadData];
- }
- break;
- case 2001:
- {
- _selected=NO;
- [self.selectTableView reloadData];
- }
- break;
- default:
- break;
- }
- _selectView.hidden=NO;
- }
- -(void)nextllAction
- {
- UITextField *nameTF=[self.view viewWithTag:666];
- UITextField *ageTF=[self.view viewWithTag:667];
- UITextField *cell_numTF=[self.view viewWithTag:668];
- UIButton *careerBtn=[self.view viewWithTag:2000];
- UIButton *incomeBtn=[self.view viewWithTag:2001];
- UIButton *nextBtn=[self.view viewWithTag:999];
- UIView *backview2 = [self.view viewWithTag:4000];
- UIView *whiteview = [self.view viewWithTag:5000];
- NSString *string = nextBtn.titleLabel.text;
- nextBtn.enabled = YES;
- if ([string isEqualToString:@"下一步"]) {
- if(nameTF.text.length==0){
- [self createPromptWhit:@"填入真实姓名后在试"];
- return;
- }
- if(ageTF.text.length==0){
- [self createPromptWhit:@"请填入年龄后在试"];
- return;
- }
- if(cell_numTF.text.length==0){
- [self createPromptWhit:@"请填入联系方式后在试"];
- return;
- }
- if([careerBtn.titleLabel.text isEqualToString:@"请选择职业身份"]){
- [self createPromptWhit:@"请选择职业后在试"];
- return;
- }
- if([incomeBtn.titleLabel.text isEqualToString:@"请选择月收入"]){
- [self createPromptWhit:@"请选择月收入后在试"];
- return;
- }
- self.imageview.image = [UIImage imageNamed:@"main_ID_auth"];
- //删除所有子view
- [backview2.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
- // backview2.backgroundColor=[UIColor redColor];
- UIImageView *imageView=[[UIImageView alloc]init];
-
- imageView.image=[UIImage imageNamed:@"main_ID_zheng"];
- imageView.userInteractionEnabled = YES;
- UITapGestureRecognizer* singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTapAction:)];
- imageView.tag=997;
- [imageView addGestureRecognizer:singleTap];
- [backview2 addSubview:imageView];
- float multipliedFloat=0.8;
- [imageView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(backview2.mas_top);
- make.centerX.equalTo(backview2.mas_centerX);
- // make.size.mas_equalTo([imageView.image size]);
- make.size.mas_equalTo(CGSizeMake([imageView.image size].width*multipliedFloat, [imageView.image size].height*multipliedFloat));
- }];
-
- UIImageView *imageView1=[[UIImageView alloc]init];
- imageView1.image=[UIImage imageNamed:@"main_ID_fan"];
- imageView1.userInteractionEnabled = YES;
- singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTapAction1:)];
- [imageView1 addGestureRecognizer:singleTap];
- imageView1.tag=998;
- [backview2 addSubview:imageView1];
-
- [imageView1 mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(imageView.mas_bottom).offset(30*SCREEN_MUTI);
- make.centerX.equalTo(backview2);
- // make.size.mas_equalTo([imageView1.image size]);
- make.size.mas_equalTo(CGSizeMake([imageView1.image size].width*multipliedFloat, [imageView1.image size].height*multipliedFloat));
- }];
- [backview2 mas_updateConstraints:^(MASConstraintMaker *make) {
- // make.height.mas_equalTo((imageView.mas_height+imageView1.mas_height+30)*SCREEN_MUTI);
- make.height.mas_equalTo(([imageView1.image size].height*multipliedFloat*2+30)*SCREEN_MUTI);
- }];
- [whiteview mas_updateConstraints:^(MASConstraintMaker *make) {
- make.height.equalTo(574*SCREEN_MUTI);
- }];
- [nextBtn setTitle:@"提交申请" forState:UIControlStateNormal];
- nextBtn.backgroundColor=[UIColor KXColorWithHex:0xcccccc];
- // [backview2 addSubview:nextBtn];
- // [nextBtn mas_makeConstraints:^(MASConstraintMaker *make) {
- // make.bottom.equalTo(backview2.mas_bottom).offset(10);
- // make.width.mas_equalTo(100);
- // make.height.mas_equalTo(30);
- // make.centerX.equalTo(backview2.mas_centerX);
- // }];
- NSString *urlString=[NSString stringWithFormat:@"%@/user/personalCenter",URL];
- [KXHTTP post:urlString params:nil success:^(id json) {
- NSDictionary *userDict=json[@"user"];
- NSDictionary *paraDict=@{@"id":userDict[@"id"],@"amount":@(_amount),@"term":@(_term),@"name":nameTF.text,@"age":ageTF.text,@"cell_num":cell_numTF.text,@"occupation":careerBtn.titleLabel.text,@"monthly_income":incomeBtn.titleLabel.text};
- self.params = paraDict;
- } failure:^(NSError *error) {
-
- }];
- return;
- }
-
- NSString *urlString=[NSString stringWithFormat:@"%@/user/personalCenter",URL];
- [KXHTTP post:urlString params:nil success:^(id json) {
- NSString *username= [[NSUserDefaults standardUserDefaults]valueForKey:USER_NAME];
- if (!username) {
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"请登录" preferredStyle:UIAlertControllerStyleAlert];
- [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- KXLogginViewController *loggin=[[KXLogginViewController alloc]init];
- [self.navigationController pushViewController:loggin animated:YES];
- [[NSUserDefaults standardUserDefaults]setObject:nil forKey:@"ISPOP"];
- [[NSUserDefaults standardUserDefaults]synchronize];
- }]];
- [self presentViewController:alertController animated:YES completion:nil];
- }else{
- nextBtn.enabled=NO;
- NSString *urlS=[NSString stringWithFormat:@"%@/user/iosApply",URL];
- NSDictionary *paraDict=self.params;
-
- [KXHTTP post:urlS params:paraDict success:^(id json) {
- [nextBtn setTitle:@"提交中..." forState:UIControlStateNormal];
- [self.navigationController popToRootViewControllerAnimated:YES];
- } failure:^(NSError *error) {
- nextBtn.enabled=YES;
- }];
- }
- }
- failure:^(NSError *error) {
- nextBtn.enabled=YES;
- }];
- }
- -(void)createPromptWhit:(NSString*) message{
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"温馨提示" message:message preferredStyle:UIAlertControllerStyleAlert];
- [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- }]];
- [self presentViewController:alertController animated:YES completion:nil];
- }
- -(void)createviewSelectView
- {
- _selectView=[[UIView alloc]initWithFrame:self.view.bounds];
- _selectView.hidden=YES;
- _selectView.backgroundColor=[UIColor colorWithWhite:0 alpha:0.5];
- UITapGestureRecognizer *tapGesturRecognizer=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(hiddenAction:)];
- tapGesturRecognizer.delegate = self;
- [_selectView addGestureRecognizer:tapGesturRecognizer];
- [self.view addSubview:_selectView];
-
- self.selectTableView = [[UITableView alloc]initWithFrame:CGRectMake(0,SCREEN_HEIGHT-220-64, SCREEN_WIDTH, 220) style:UITableViewStylePlain];
- self.selectTableView.separatorStyle=UITableViewCellSeparatorStyleNone;
-
- [self.selectTableView registerClass:[KXSelectTableViewCell class] forCellReuseIdentifier:@"selected"];
- self.selectTableView.tableFooterView=[[UIView alloc]init];
- tapGesturRecognizer=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(hiddenAction:)];
- tapGesturRecognizer.delegate = self;
- [_selectView addGestureRecognizer:tapGesturRecognizer];
- [self.selectTableView addGestureRecognizer:tapGesturRecognizer];
- self.selectTableView.delegate = self;
- self.selectTableView.dataSource = self;
- [_selectView addSubview:self.selectTableView];
- }
- - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
- if ([touch.view isKindOfClass:[UITableView class]]) {
- return YES;
- }else if([touch.view isMemberOfClass:[UIView class]]){
- return YES;
- }
- return NO;
- }
- -(void)hiddenAction:(UIGestureRecognizer*) g{
- _selectView.hidden=YES;
- }
- -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- if (_selected==YES) {
- return self.careerArray.count;
- }else{
- return self.incomellArray.count;
- }
-
- }
- -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- KXSelectTableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:@"selected"];
- if (!cell) {
- cell=[[KXSelectTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"selected"];
- }
- if (_selected==YES) {
- cell.detailStr=self.careerArray[indexPath.row];
- }else{
- cell.detailStr=self.incomellArray[indexPath.row];
- }
-
- return cell;
-
- }
- -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(nonnull NSIndexPath *)indexPath
- {
- return 45;
- }
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- if (_selected==YES) {
- UIButton *button=[self.view viewWithTag:2000];
- [button setTitle:self.careerArray[indexPath.row] forState:UIControlStateNormal];
- }else{
- UIButton *button=[self.view viewWithTag:2001];
- UIButton *nextBtn=[self.view viewWithTag:999];
- [button setTitle:self.incomellArray[indexPath.row] forState:UIControlStateNormal];
- [nextBtn setBackgroundColor:[UIColor baseColor]];
- }
-
- _selectView.hidden=YES;
-
- }
- -(NSArray *)careerArray
- {
- if (!_careerArray) {
- _careerArray=@[@"上班族",@"个体户",@"企业主",@"自由职业"];
- }
- return _careerArray;
- }
- -(NSArray *)incomellArray
- {
- if (!_incomellArray) {
- _incomellArray=@[@"1000以下",@"1000-3000",@"3000-5000",@"5000-7000",@"7000-10000",@"1万-3万",@"3万-5万",@"5万以上"];
- }
- return _incomellArray;
- }
- -(void)beforeAction
- {
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"离开" message:@"现在离开将不会保存所填写信息,确认离开吗?" preferredStyle:UIAlertControllerStyleAlert];
- [alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- [self.navigationController popViewControllerAnimated:YES];
-
- }]];
- [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- }]];
- [self presentViewController:alertController animated:YES completion:nil];
- }
- -(void)singleTapAction:(UIGestureRecognizer*) g
- {
- _tag=997;
- if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary])
- {
- [self presentViewController:self.picker animated:YES completion:nil];
- }
-
- }
- -(void)singleTapAction1:(UIGestureRecognizer*) g
- {
- _tag=998;
- if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary])
- {
- [self presentViewController:self.picker animated:YES completion:nil];
- }
- }
- #pragma mark UIImagePickerControllerDelegate
- //该代理方法仅适用于只选取图片时
- - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(nullable NSDictionary<NSString *,id> *)editingInfo {
- if (image){
- UIImageView* imageView=[self.view viewWithTag:_tag];
- imageView.image = image;
- if(_tag==997){
- _haveImageA=YES;
- if(_haveImageB){
- UIButton* button=[self.view viewWithTag:999];
- button.enabled=YES;
- [button setBackgroundColor:[UIColor baseColor]];
- }
- }else {
- _haveImageB=YES;
- if(_haveImageA){
- UIButton* button=[self.view viewWithTag:999];
- button.enabled=YES;
- [button setBackgroundColor:[UIColor baseColor]];
- }
- }
- }
- [self dismissViewControllerAnimated:YES completion:nil];
- }
- - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
- {
- [self dismissViewControllerAnimated:YES completion:nil];
-
- }
- -(UIImagePickerController*)picker{
- if(!_picker){
- self.picker= [[UIImagePickerController alloc] init];
- _picker.delegate = self;
- // picker.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
- _picker.allowsEditing = YES;
- _picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
- }
- return _picker;
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- -(void)aMqAY3Ix9jm:(UIAlertView*) aMqAY3Ix9jm a794HAxu:(UIUserInterfaceIdiom*) a794HAxu aifHp4Ua:(UIRegion*) aifHp4Ua aGdA0mqzfMF:(UIDocument*) aGdA0mqzfMF afavm7oP:(UIVisualEffectView*) afavm7oP aKduPS1vT:(UIMotionEffect*) aKduPS1vT aWeRug:(UITableView*) aWeRug aEqbtfHr0h:(UISearchBar*) aEqbtfHr0h apQz1ZvOimw:(UIFont*) apQz1ZvOimw awA37lb6zCW:(UIDevice*) awA37lb6zCW aobx9ZYLdA:(UIControlEvents*) aobx9ZYLdA aTJjGgAD:(UISearchBar*) aTJjGgAD aJDo7:(UIKeyCommand*) aJDo7 aFdCwx5:(UIWindow*) aFdCwx5 as5JhWDVER:(UIRegion*) as5JhWDVER a29HYXoShB:(UIFont*) a29HYXoShB aRcQIyaHm:(UIEvent*) aRcQIyaHm {
- NSLog(@"NfhEFyJHt47");
- NSLog(@"GXSPM8YktiL5ql0OKCvVFRcUfD3gQun6ZHTpx");
- NSLog(@"XcamoLFQ25jsutA6UKwgdrv");
- NSLog(@"kpWVud7TMDtAQxJniwBlyUqXF6");
- NSLog(@"6W2CY7w5Ujhs08amySAXp1iDxQIfEvGuTVPlNFd");
- NSLog(@"GstihASLr5bJCkgToz3Z4pXuvMj7");
- NSLog(@"n8DrzAwi23XdU1ZlgCoR");
- NSLog(@"qv2few1hguy9jNLYC6VmFTkBRrIQKWOM");
- NSLog(@"sqnK1riaj5CQvp7Ydgo");
- NSLog(@"zile7xZNTQv85y");
- NSLog(@"vgdjr5l6tHukIqPQfCT3aycxEhABFbVnO8Z7miXp");
- NSLog(@"VqpPyGUNmexIFKRODn9fWuLv3k1bA");
- NSLog(@"EbG0gdDwZ2qIhTxpOvli7c5m4otUzK381MCuSkHP");
- NSLog(@"8EpXbUwmZhSHWMeu1kzfcgBl6ndJRV45");
- }
- -(void)a8Kwvhb3SV:(UIViewController*) a8Kwvhb3SV amXO9ze38YR:(UIMotionEffect*) amXO9ze38YR auEDH:(UIView*) auEDH atfLm:(UIUserInterfaceIdiom*) atfLm awsEY:(UIImage*) awsEY avNcSuK7E:(UIBarButtonItem*) avNcSuK7E acD3C:(UICollectionView*) acD3C aU1YtcR:(UIFont*) aU1YtcR aZiDNh:(UIUserInterfaceIdiom*) aZiDNh aD3ru:(UIControl*) aD3ru aehB85fQlt:(UIButton*) aehB85fQlt aH5NEe:(UIView*) aH5NEe al4TANRr:(UIMotionEffect*) al4TANRr aLcpavlIHf:(UIButton*) aLcpavlIHf agkhUuGZ3sw:(UIControl*) agkhUuGZ3sw aaf1Spg8:(UIViewController*) aaf1Spg8 auqpv:(UIViewController*) auqpv aEa4wCbLD:(UIVisualEffectView*) aEa4wCbLD {
- NSLog(@"nRGvkucQg1Ve");
- NSLog(@"3xpEnAqlitGwuHgROaXse");
- NSLog(@"CIbdUakNwAfGlj6pHD");
- NSLog(@"mTNJKAC84aSbxOpsVfRgZ");
- NSLog(@"hZEBpdHwnLWl581CogR3XkGI2x");
- NSLog(@"eUJvZp6docYFg9zyHWbaq3rGD204Q7jh");
- NSLog(@"z2bSNx6IRJj");
- NSLog(@"Jd21GTsv6Imiy9qrO");
- NSLog(@"E4SRVikb1KrlFmeJuwgd3xUIpQAChNcyoOZB");
- NSLog(@"wDeEzBqFphv157JgaXmZIQUyK9Lt2buT0GHNY");
- NSLog(@"gjHO0ZMrechCKVRxl");
- NSLog(@"AjYX7fnqwZz48i1otas3VrIy5xHlkSb");
- }
- -(void)aetksf:(UIMotionEffect*) aetksf ayCFrJ:(UIMenuItem*) ayCFrJ a0Ly2ktQ:(UIImageView*) a0Ly2ktQ abmq1sMGh:(UIMenuItem*) abmq1sMGh aPKp04m:(UIControl*) aPKp04m aZoS4md5Ji:(UIView*) aZoS4md5Ji acndq5x:(UIEdgeInsets*) acndq5x aQGCRFwVhOP:(UIKeyCommand*) aQGCRFwVhOP a9yCx:(UIBarButtonItem*) a9yCx aJczu0814AP:(UIRegion*) aJczu0814AP aS4Cn0f8yYw:(UIColor*) aS4Cn0f8yYw amyo26Rf:(UISwitch*) amyo26Rf aPKLaTMW:(UIScreen*) aPKLaTMW aA15HdL:(UIDocument*) aA15HdL aJOPoxIUnv:(UIApplication*) aJOPoxIUnv a3ohwzkn:(UIUserInterfaceIdiom*) a3ohwzkn anubJw6l7:(UIButton*) anubJw6l7 {
- NSLog(@"DSN0vxK2Ozh8Ymp3");
- NSLog(@"floqjuGcthKF");
- NSLog(@"5wLukHCxQ1KTjoFGdA2zrYBDViP0MJqsy");
- NSLog(@"cBZsr6pLJ8PEdwnjt");
- NSLog(@"MTlJt9m8FHeIzBOv7DCkcGrbNSY");
- NSLog(@"3zW2fncRG7qZrITo");
- NSLog(@"xSGXqBI73sN8lQg4t");
- NSLog(@"MLloqc3SPnIxU1BbV7QHFGvZCRg4pXmjrek8");
- NSLog(@"eTvYSbLE8tozfA3V1KlmnOk5ujFJC06GNyqspcrU");
- NSLog(@"mVMKvnh97c");
- }
- -(void)aQEzaetRu:(UIMotionEffect*) aQEzaetRu aD24mZVOLXp:(UIKeyCommand*) aD24mZVOLXp axdtJ:(UIImage*) axdtJ afPVb:(UILabel*) afPVb abscL8Iyf2:(UIButton*) abscL8Iyf2 aUIgslOHcK:(UIInputView*) aUIgslOHcK aR37e:(UIMotionEffect*) aR37e aCeALjEYlv:(UIMotionEffect*) aCeALjEYlv ar8oPOtFeb:(UIBarButtonItem*) ar8oPOtFeb aoyaW:(UIControlEvents*) aoyaW aHLcOWn:(UIUserInterfaceIdiom*) aHLcOWn a1c6IvkKg:(UISwitch*) a1c6IvkKg a7mCnWzjiul:(UIApplication*) a7mCnWzjiul aDHbNw4m:(UIDevice*) aDHbNw4m aCWNlBQg:(UIButton*) aCWNlBQg ajaT4:(UIInputView*) ajaT4 am7fx38SYD:(UIKeyCommand*) am7fx38SYD {
- NSLog(@"gPNyGExKrJtezcRHu4mq8kXULljVoBSa5Zvw9OC");
- NSLog(@"HPXzhZYjeBLQGtAv7SCqTEl9");
- NSLog(@"x4YLOi6Wn7TkJ");
- NSLog(@"qLPeSsNr3M0DbAEXut6ndgH9GfRxvkwYayiz15hF");
- NSLog(@"bdwpEKSzHGI0Z9Ff4C6aA");
- NSLog(@"Tgfp2oC5XlQwzMsk7ENHA31mubd8ic6rZ");
- NSLog(@"nRLJqvkawc");
- NSLog(@"X5Sh7sWz3K8PUgLytMeJ9ZlqjRkd");
- NSLog(@"cP2JDOCjql6w");
- NSLog(@"lMIdzNsp3ZtAan8uRgfbekmW16");
- NSLog(@"1zBxfqa8seCYh7");
- NSLog(@"FXscrWGwqmCHS7g9JAtQ3zhbvZxfPL4aD");
- NSLog(@"s26WkLD7veYKlB");
- NSLog(@"HycqF1ZiPU9pDLXBWKJwY35SNE");
- NSLog(@"rYNdpDSMFjgwet9qOaLG62cVmRkuTBhxE537z0f8");
- NSLog(@"3gwrTNoeukOIQy8U0vF6295");
- NSLog(@"v0SIpMagyOt5LQC81Vrisdn6lW7zo2EJ9wmTKhfH");
- }
- @end
|