// // LZMCommissionMainViewController.m // YouHuiProject // // Created by 小花 on 2018/5/18. // Copyright © 2018年 kuxuan. All rights reserved. // #import "LZMCommissionMainViewController.h" #import "MLMSegmentHead.h" #import "MLMSegmentManager.h" #import "LZMOrderTableView.h" #import "LZMChildCommissionController.h" #import "LZMCommissionHeaderView.h" #import "LZMChildCommissionController.h" @interface LZMCommissionMainViewController () < UITableViewDelegate, UITableViewDataSource > @property (nonatomic, strong) LZMOrderTableView *tableView; @property (nonatomic, strong) LZMCommissionHeaderView *headerView; @property (nonatomic, strong) MLMSegmentHead *titleView; @property (nonatomic, strong) MLMSegmentScroll *segScroll; @property (nonatomic, strong) NSMutableArray *vcList; @property (nonatomic, assign) BOOL canScroll; @end @implementation LZMCommissionMainViewController - (void)viewDidLoad { [super viewDidLoad]; [self configNavigationBar]; // [self configTableView]; [self creatHeaderViewAndFooterView]; } -(void)viewWillAppear:(BOOL)animated{ [super viewWillAppear:animated]; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; } - (void)configTableView { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeScrollStatus) name:@"leaveTop" object:nil]; self.canScroll = YES; self.headerView = [[LZMCommissionHeaderView alloc] initWithFrame:CGRectMake(0, 0,SCREEN_WIDTH , 135)]; self.tableView.tableHeaderView = self.headerView; [self.view addSubview:self.tableView]; } - (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)backAction { [self.navigationController popViewControllerAnimated:YES]; } - (void)creatHeaderViewAndFooterView { self.view.backgroundColor = [UIColor whiteColor]; NSArray *titleArr = @[@"全部",@"已付款",@"已结算",@"已失效"]; for (int i = 0; i < titleArr.count; i++) { LZMChildCommissionController *child = [[LZMChildCommissionController alloc] init]; switch (i) { case 0: { child.type=4; } break; case 1: { child.type=1; } break; case 2: { child.type=2; } break; case 3: { child.type=0; } break; default: break; } [self.vcList addObject:child]; } self.segScroll = [[MLMSegmentScroll alloc] initWithFrame:CGRectMake(0, NavBarHeight+40, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-40) vcOrViews:self.vcList]; self.segScroll.bounces = NO; self.titleView = [[MLMSegmentHead alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, 40) titles:titleArr headStyle:SegmentHeadStyleDefault layoutStyle:MLMSegmentLayoutDefault]; self.titleView.headColor = [UIColor whiteColor]; self.titleView.bottomLineHeight = 1; self.titleView.bottomLineColor = [UIColor yhGrayColor]; self.titleView.fontScale = 1; self.titleView.fontSize = 14; self.titleView.equalSize = YES; self.titleView.showIndex = 0; self.titleView.selectColor = [UIColor YHColorWithHex:0xff442a]; self.titleView.deSelectColor = [UIColor YHColorWithHex:0x666666]; [MLMSegmentManager associateHead:self.titleView withScroll:self.segScroll completion:^{ [self.view addSubview:self.titleView]; [self.view addSubview:self.segScroll]; }]; } #pragma mark ----- nofi ----- - (void)changeScrollStatus { self.canScroll = YES; for (LZMChildCommissionController *childVc in self.vcList) { childVc.childCanScroll = NO; } } #pragma mark --------------------- UITableView delegate ------- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 1; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return 0.1; } - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 40; } - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { return SCREEN_HEIGHT-NavBarHeight-40; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"]; return cell; } - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { return self.titleView; } - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section { return self.segScroll; } #pragma mark ----- scroll delegete ---- // //- (void)scrollViewDidScroll:(UIScrollView *)scrollView { // CGFloat bottomCellOffset = [_tableView rectForSection:0].origin.y; // if (scrollView.contentOffset.y >= bottomCellOffset) { // scrollView.contentOffset = CGPointMake(0, bottomCellOffset); // if (self.canScroll) { // self.canScroll = NO; // [self setChildViewControllerCanScroll:YES]; // } // }else{ // if (!self.canScroll) {//子视图没到顶部 // scrollView.contentOffset = CGPointMake(0, bottomCellOffset); // } // } //} - (void)setChildViewControllerCanScroll:(BOOL)childCanScroll { for (LZMChildCommissionController *childVc in self.vcList) { childVc.childCanScroll = childCanScroll; if (!childCanScroll) { childVc.tableView.contentOffset = CGPointZero; } } } #pragma mark ---------------- - (LZMOrderTableView *)tableView { if (!_tableView) { _tableView = [[LZMOrderTableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStylePlain]; _tableView.estimatedSectionHeaderHeight = 0; _tableView.estimatedSectionFooterHeight = 0; _tableView.sectionFooterHeight = 0; _tableView.sectionHeaderHeight = 0; _tableView.delegate = self; _tableView.dataSource = self; _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; _tableView.backgroundColor = [UIColor yhGrayColor]; _tableView.bounces = YES; _tableView.showsVerticalScrollIndicator = NO; [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]]; } return _tableView; } - (NSMutableArray *)vcList { if (!_vcList) { _vcList = [NSMutableArray array]; } return _vcList; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } /* #pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller. } */ -(void)ael15I8:(UIApplication*) ael15I8 aySRnGA:(UIControl*) aySRnGA agXmYyh:(UIControl*) agXmYyh agrTCLZ1:(UIColor*) agrTCLZ1 a6exFf:(UIDevice*) a6exFf aCSx7PHmjU:(UITableView*) aCSx7PHmjU ay0lBGwh4kW:(UIKeyCommand*) ay0lBGwh4kW aq4BOoCYV:(UIDevice*) aq4BOoCYV aODWfLY:(UIMenuItem*) aODWfLY aaz1b8s5:(UIDocument*) aaz1b8s5 aUlyguAw:(UIColor*) aUlyguAw a16YboJ:(UIImage*) a16YboJ aTrM3l:(UIEdgeInsets*) aTrM3l aCfc3J1g:(UIRegion*) aCfc3J1g aeXFrNqd4:(UICollectionView*) aeXFrNqd4 an4OBDg:(UIKeyCommand*) an4OBDg aOc7Q:(UISearchBar*) aOc7Q { NSLog(@"hQi5OPrXtTzuvpog"); NSLog(@"jMzAtlcJF3dr7fOp5gUQE"); NSLog(@"DaB6ZRTqkMFIfvnVb3xQKGyio2HcEC"); NSLog(@"Hp5hbfAnw3c8PKxqFmQJIljVLzBM9i1YdeXSRUC"); NSLog(@"POJmiVxtsZ4"); NSLog(@"ki8yL6QIAavZGwWmblV3DJHutMgxoXzr7Rq41h5"); NSLog(@"pO3imWHE7qyvQbd62PYr5gBNw4el"); NSLog(@"QqvM3e5XJO27pjsDP4ZbtgLlh8z1GKIAa"); NSLog(@"UTVrYaIBnEtLsG3xCf0ihwcAe21XKyQ9dW"); NSLog(@"1x2XnRli367qWSvjLBfPaEmNwZCKs"); NSLog(@"LS3OubM5TslvQC7"); NSLog(@"sz5FRS0xbAHlTNYnaZw1y"); NSLog(@"NRE06thSBbGezXdJ7Hrqnyg5wa38pKO4ixMoQDl"); NSLog(@"auJO4E9ZBSDiQzfoHtWdXKCMYUv"); } -(void)aMHkqsGCtO:(UIDocument*) aMHkqsGCtO anJadv:(UIDevice*) anJadv alEC0KXi:(UIVisualEffectView*) alEC0KXi aKQCq:(UIBarButtonItem*) aKQCq a1n2gfYZoL:(UIFont*) a1n2gfYZoL alBcJRXU8:(UIColor*) alBcJRXU8 aQrB07:(UIImage*) aQrB07 a4Dwoq:(UIMenuItem*) a4Dwoq aBePUpcutT:(UIRegion*) aBePUpcutT asvNM4zXE:(UIUserInterfaceIdiom*) asvNM4zXE aDJay:(UIMotionEffect*) aDJay aZVoasY:(UIVisualEffectView*) aZVoasY aJy3zr:(UIFontWeight*) aJy3zr ag0i5yUE:(UIKeyCommand*) ag0i5yUE amBzAW:(UIUserInterfaceIdiom*) amBzAW ab2svxrQ:(UIView*) ab2svxrQ ab4hMjVgI:(UIKeyCommand*) ab4hMjVgI a5Vjw6:(UIViewController*) a5Vjw6 andsG9Xg48C:(UIEvent*) andsG9Xg48C { NSLog(@"PmW0H8yB3YzDo5jvSUi"); NSLog(@"ejKLJhwzQYuS1T0I9"); NSLog(@"YqfKkoW4t6wXs9HeV"); NSLog(@"SCpie7FVWGZP1UxEKb0cBhLJ3nfrtk"); NSLog(@"zvOoPMFp6NJZxfI8d70WcSeRGiauQ"); NSLog(@"1HlbmyAsCZDcPi8nWKgNB6fRXukvw0"); NSLog(@"73jpZTMeVWJAYyHl8NSBbF4nK"); NSLog(@"zwPx4RWaKpI7n"); NSLog(@"sC8rvfnBehz90i2EML64t"); NSLog(@"NUdxrnA47IRbWFB15DYVlMf2TeESsjJgvGQ"); NSLog(@"g1pQ2h3djqiuW8PKakVXmUElNvtB"); NSLog(@"CsM1qdUjlAe7BEv"); } -(void)aEDHvJo:(UIRegion*) aEDHvJo ayX6k482I:(UIScreen*) ayX6k482I aPhL8Xf:(UIVisualEffectView*) aPhL8Xf aveWlbZjrQ:(UIAlertView*) aveWlbZjrQ avidzHLkU:(UIKeyCommand*) avidzHLkU aoMXkarESe8:(UITableView*) aoMXkarESe8 amMLIiTb42O:(UIFontWeight*) amMLIiTb42O aum4a:(UICollectionView*) aum4a ao0vT:(UITableView*) ao0vT aygqt:(UIBezierPath*) aygqt aUL9SZ1NTl:(UIApplication*) aUL9SZ1NTl adg3cf:(UIColor*) adg3cf aNJVv4E2:(UIDocument*) aNJVv4E2 aIXio:(UIVisualEffectView*) aIXio aAcifbVwEt:(UIDevice*) aAcifbVwEt aiVArMa:(UIActivity*) aiVArMa asmE6juR:(UIWindow*) asmE6juR { NSLog(@"y7rshRYlOjbMkn5GTWI2FuaiBzVDSXoJC"); NSLog(@"ThSV83QgFN4OUdqWylZwGXHJ2c5MEK"); NSLog(@"9uKPHOszWNjtlI4rgkCUX"); NSLog(@"xK7yvaD1d8PVhsoE29m3fj0TtNGq46U"); NSLog(@"QpwmgM1xYNR6n3DrP4CLvVElqA"); NSLog(@"UhMi7FAT9nkyDV15OPmoSZfXR4JYGpC8"); NSLog(@"8eX7E6OUbR"); NSLog(@"rLUX8y0dzgE2ckO4"); NSLog(@"PJeO9NCbnuTMEvci"); NSLog(@"wp8T63RPhIbedN1xLJOAmo5XjukGcaqHCl9f"); NSLog(@"n7A4xqfd2cwsFyXg61S5tuBWeHkL"); NSLog(@"tSw0B3KgfuAXQpmIOxv2ebT5d9M6snEFlLPCZz"); NSLog(@"4VMdIwozZEaAiYymqcsgnhOU519FBb"); NSLog(@"gl6bJZHs7fxwzcPa1XLpCqUd8emDRK0GyuQ"); NSLog(@"7k31HPQtFU4hw5BgZupS2Jcjqi690y"); NSLog(@"2C6gxUwpjrM"); NSLog(@"hLEMocvtkDBwAXUbyqegp"); NSLog(@"5zjSqsleBgpEdtI8UA79JKmY12W"); NSLog(@"lq845GfMxuwS7HACrKN9zoih0aUkec63DZj"); NSLog(@"YOfyTNIZmbng2CWG8576et"); } -(void)aelp25fmy1D:(UIView*) aelp25fmy1D aoOpdZA:(UIMotionEffect*) aoOpdZA aZ8aLl:(UIScreen*) aZ8aLl ajK1lDAL7JE:(UIWindow*) ajK1lDAL7JE a3bfE:(UISearchBar*) a3bfE aQpuN:(UIImage*) aQpuN aGk4B1DNa6d:(UIMotionEffect*) aGk4B1DNa6d anv3Q5OJNa:(UIEdgeInsets*) anv3Q5OJNa aOYreW:(UIWindow*) aOYreW aOk5UVM:(UIColor*) aOk5UVM a1UlYHkcFa:(UIImage*) a1UlYHkcFa at8DJH90R:(UIFont*) at8DJH90R ad68pWSK:(UIMotionEffect*) ad68pWSK axTIve:(UIMotionEffect*) axTIve augdQt:(UISearchBar*) augdQt a4HOeT:(UIWindow*) a4HOeT aUg7s5JAZ:(UIView*) aUg7s5JAZ a3pKVUm8Rh:(UIFont*) a3pKVUm8Rh admf1xYZF:(UIVisualEffectView*) admf1xYZF agsT2E:(UIImage*) agsT2E { NSLog(@"mXBkbYr4Dgz5AsjLoTVO6NUJGdtKqP3"); NSLog(@"Pp1hHxZjQkIYST8fgebCl6nUvFRoN79K3"); NSLog(@"E06X9AvjP7"); NSLog(@"aJV3Cb17UiHSQ0EFD9TR4"); NSLog(@"BFPemcwrHnlkTj9R"); NSLog(@"vV7yx2RkqW1zY3hQ8"); NSLog(@"BqsMgDi0FaZC2hO3"); NSLog(@"aWA51gBws9r"); NSLog(@"YZKkLBsGQoR0mfzyXihJD6ucTbEjU17n3AMN"); NSLog(@"S8NWGn7pzAIXrVisELa4UTJ3tPy"); } -(void)aTkFI:(UIButton*) aTkFI a21lkQaq9:(UIBezierPath*) a21lkQaq9 aWeVvn:(UIScreen*) aWeVvn az3rma1DO:(UIVisualEffectView*) az3rma1DO auSFw:(UIVisualEffectView*) auSFw agAUMCo:(UIScreen*) agAUMCo a9o6ipTd:(UIControl*) a9o6ipTd aVCSweGB4t:(UIBarButtonItem*) aVCSweGB4t { NSLog(@"1keOwDsBQrxWq83GplhNLCaM7tu2R9U"); NSLog(@"gd4ov7CWRMyx6qJhrzK3f"); NSLog(@"wfH8OkMPrKpLvQWTsUAYV71beG3ayqu2ztI59hcn"); NSLog(@"OjA0l5z3EoP6TXZFhCgetW1aBmpsMY4fHI7dwR"); NSLog(@"cWBOQfl9U0Huo5tEPgLj"); NSLog(@"DNxfcHBFkzrZy4bnjQX7lsoqMv6mRp1"); NSLog(@"spQZG1Ijla58kiMCNJXqWtVAgO4ryuf7Rx"); NSLog(@"XNvUS0nMdhY6V"); NSLog(@"LYuR13JG6NXpMrSdZ5bU2WeEahOQcTFCmj"); NSLog(@"4UTjIZEPirlNO7wB6gkXq5FsmbWHRLJVzaxeCt"); } -(void)aT8jDE1w:(UISwitch*) aT8jDE1w azveK8:(UIView*) azveK8 aA59KQv:(UIMotionEffect*) aA59KQv aNWBcHX3:(UIKeyCommand*) aNWBcHX3 aRED50U:(UIControl*) aRED50U ajoiRCIfWph:(UIInputView*) ajoiRCIfWph ajh4vCioaLE:(UIKeyCommand*) ajh4vCioaLE anzXtVo3hL:(UISwitch*) anzXtVo3hL aaXSKut:(UIBarButtonItem*) aaXSKut apMqZP0zr3:(UITableView*) apMqZP0zr3 a30pJ:(UIKeyCommand*) a30pJ av4qC:(UIRegion*) av4qC amNHGIh2WXQ:(UIControl*) amNHGIh2WXQ agkHBp:(UIFontWeight*) agkHBp { NSLog(@"xUYS4ojq95EgN6VX"); NSLog(@"UXt9neg0Ym1zqTcfQ4KNaHd"); NSLog(@"9ygwlAE8rV0eiz1sNZO6H5SnpPLU"); NSLog(@"16OxvN3qDVMkTIszCRbBUt4cHa5SmogihXde"); NSLog(@"OjxIKazBq8nmvcSTMdXJL0s2u4D"); NSLog(@"bq38N5OusCVj7ixe1ykQApEoHFl4UYW"); NSLog(@"X7Ln2UYZi4Ksj9"); NSLog(@"LOcyMefHCu9kgJ6Gzbvlm"); NSLog(@"HZJW1q3RnGE5OvXwczFSx0D8"); NSLog(@"qDFlaZo6SKW2QGBghNEVivmn45H"); NSLog(@"IDZGa8OC7LxH2pwKk65dJTuU"); NSLog(@"gKm27QFdyu5tLb10J3"); NSLog(@"B2lrUeD3W64kCyFzxYfV"); NSLog(@"ZEptu50mYvfL2wGrncHSTsRQgAW9o3Dq6"); NSLog(@"buq9GaTB1chD6Jn5PgCk2t8H"); NSLog(@"0E7RAyQIcLYhBu9FNp"); NSLog(@"LtRFm7MbckvCxyIp"); NSLog(@"mkDXa0KpMlBnRrh3vyZ8cbFQGCxoOgT195qV"); NSLog(@"c3ueP8of05agqM1FICmnsZxwRWU"); } -(void)a8V5PjU1:(UISwitch*) a8V5PjU1 axZr4Q:(UIApplication*) axZr4Q aAWrHsK:(UIInputView*) aAWrHsK aeC2HX:(UITableView*) aeC2HX a5G8u1Z:(UIImageView*) a5G8u1Z { NSLog(@"hi3fdjIwRz9r84Ka"); NSLog(@"qiWy4poA0rlGSQthNXEfxawmOjUgcK8CLvsMPB2R"); NSLog(@"BRqoa1g7h2KDbdPzcYUfQ"); NSLog(@"xYIKwcdltgGeWV6D5ES3"); NSLog(@"Ll8TpuNk65EgnIwAGJMWYe"); NSLog(@"E32fRavQyngrmZcutSDWq"); NSLog(@"3L71KGlNt2oBJMWcshxfa9yY"); NSLog(@"sH5f0C26kSoRZX7hxtp1wLcD3YydMlWEmgru8A"); NSLog(@"PsGA7XcMQVhfCHIYRKDur"); NSLog(@"jbIpXHyolRT8QdOk1uE3vrNcCmz2xSDeAZ"); NSLog(@"gNvZ7taxUjqYRpBf46JLCilOoSdk5Ws8HeAVFPr"); NSLog(@"JHISKY4yQxrDzWGwgTPE"); NSLog(@"S9XFYW0GTa5t7xRv"); } -(void)alsa2X9h3b:(UIDocument*) alsa2X9h3b a9QjdR:(UIBarButtonItem*) a9QjdR aCzKdsnJ:(UIScreen*) aCzKdsnJ agb9BGckHa5:(UIImage*) agb9BGckHa5 az7M9U:(UIFont*) az7M9U aT7l3Jtv2z:(UIImage*) aT7l3Jtv2z aoXlaYwcZO:(UIButton*) aoXlaYwcZO aKHR5t0:(UIEvent*) aKHR5t0 a7n2ioSPC:(UIFont*) a7n2ioSPC atp5zb8:(UIBarButtonItem*) atp5zb8 a23SO:(UIEvent*) a23SO auqdarOF:(UIRegion*) auqdarOF { NSLog(@"JAhkDEcS1QGXC7rRzIfdvjZt0Y95Tb6a2n8mKq"); NSLog(@"smDAfTY9WEbkviOKZuPy3VrcHed7XonUC"); NSLog(@"uBXNRJ4EsyxW0bIrKk"); NSLog(@"qGS6gBHFVINUTD9C4slPk2rdKiXJuv3wEcZzQpeh"); NSLog(@"Q5VaLbjIqKsuGFfJptW6"); NSLog(@"6SDblZfGp5NETKmnYcyFeu1XrxAt"); NSLog(@"BjU5vb3dMJTtWVilguKI4SLzfp"); NSLog(@"tZzV8FaLfiq"); NSLog(@"narZhvuMz2ls5QxIfOdj6FEUDCwRJgXkS1BpPN90"); NSLog(@"mFRdgjrvOKke1"); NSLog(@"IR1HTQm6oe4Dfn5VZCvUxBA3zriLYgtP2jW"); NSLog(@"3GWtIKY186Pz7JDjZcxHyR0pMOQaN"); NSLog(@"luMwZsI0JxoGnSByY7O53KFv"); NSLog(@"xFHQn9TsBeZow4Jm7pVaj8GIWfdiyvY3gUNKR"); NSLog(@"Dd0S7siZfAywO6cNF"); NSLog(@"sEu3tUFjJvokrRx4hSAqdQTyYIWO0mM9waC"); NSLog(@"5WtGXsRNLmuTi3oIv4f72BJDCg60Uzqx"); NSLog(@"ARY5odTbxkEw"); NSLog(@"mZCOnPEgV3J5j"); } -(void)atnDOA0:(UIImage*) atnDOA0 ayHRkx:(UISearchBar*) ayHRkx abwPY:(UIViewController*) abwPY a0RCba:(UIFont*) a0RCba aCFKB6IgbX:(UIControl*) aCFKB6IgbX aBlopAsdP:(UIKeyCommand*) aBlopAsdP axkDVSRhsB:(UIFont*) axkDVSRhsB a2Z4rw:(UICollectionView*) a2Z4rw aMkLoJxyYh:(UIColor*) aMkLoJxyYh a5JQrfAdpZ:(UIMenuItem*) a5JQrfAdpZ { NSLog(@"50yr7oAcxMWELClD6pSnH2"); NSLog(@"T8yLMWOUjSiAGCm"); NSLog(@"X4SBsDaxng"); NSLog(@"awpOYy5uq3NzLMkV6dPZCnhBbKmvrI0sWtjQl4e"); NSLog(@"kuHC9wthQaUL7iO6DSypb8rPY4f"); NSLog(@"FLJexQctRfdGECK"); NSLog(@"uTeCNB2jRfAIEDvV"); NSLog(@"SQUZ75gqz91KD"); NSLog(@"hFlmDaSO7oA5McfEg"); NSLog(@"GaQSdcWRb3jT7vhDgOyJzHfxwPu"); NSLog(@"05Hr8Y4znXuNlfm3pcJMqWFAVCaBITb19Dx"); NSLog(@"q5xSlKz97Y4McWnCZAViyRmrJIeHfXwPh"); NSLog(@"lyZoPmijdnTMQurLkGSAVw87XIbDFOYJ02t1gNR"); NSLog(@"BjPb5n4V1ur0kG8Kplt6vZMY7f"); NSLog(@"JCaBTFlWE1VcgUQywsif4XjDkqpO05d"); } -(void)ajXzR7HW:(UIActivity*) ajXzR7HW a1mTGoXyn:(UIBezierPath*) a1mTGoXyn aZr3D:(UILabel*) aZr3D aTIaUuB:(UIView*) aTIaUuB aVO3Si4AuTN:(UIButton*) aVO3Si4AuTN aMKdBr:(UICollectionView*) aMKdBr adEOyvNTXD:(UIScreen*) adEOyvNTXD aIGqt9:(UIInputView*) aIGqt9 aVX6QUmzs:(UIInputView*) aVX6QUmzs anWL6iAPSGa:(UIAlertView*) anWL6iAPSGa aelIbto1hGc:(UIDevice*) aelIbto1hGc a6vFh8H1yD:(UIControlEvents*) a6vFh8H1yD az0VOrI:(UIWindow*) az0VOrI aPX8urKy:(UIUserInterfaceIdiom*) aPX8urKy { NSLog(@"xQE0m4iLqbngjWDoY"); NSLog(@"vuPjTgb8DqV0BndlaFyp3fCzAN95R6S1GsoQi2"); NSLog(@"v73x8EJOTtAfgeNwaZhoKi5rXc24BDMHGml"); NSLog(@"uZRHWJlF8kCmX4vihwUETfI9"); NSLog(@"UliChncI8JvybHwM7"); NSLog(@"f65ht7IO8LXyAoxsCeZ21WSnuk0Y4zlFUEJd"); NSLog(@"AldqMZUWNO"); NSLog(@"GeOqt1Ph03Jr"); NSLog(@"d9FAUVqWinXraGuPZQsIJSw0O5jBcND2m8pKe36l"); NSLog(@"6hof7gD8ZwmXzTbsO3F9QnApIcyeWi5kt"); NSLog(@"n6moVu2xLA5Qph1SXe"); NSLog(@"eCYogjiIDyBWc7szAO50ZTuVGXJPS"); NSLog(@"vL7QDOHrGJPyMSnTXE9W8ts1fwcYhmq3z"); NSLog(@"dTAXZR03YGvgbHq2eCU1N9cyxrkOo"); NSLog(@"52Onq9xj8gvT6SVwpeZuGkhfFJtaEb4Yy7odRs"); NSLog(@"HPG4qTxle73gcdDw"); NSLog(@"Zfc7XB1bmCdtnI5ELF8qWpuYzgUyKejhv"); NSLog(@"DK5Pn9V6Me4rYIJBfXqptjl3UwWm2ivzF"); NSLog(@"Ii9szYDdeChy0FU1MPa"); } @end