// // YZMASettingViewController.m // YouHuiProject // // Created by 小花 on 2018/1/25. // Copyright © 2018年 kuxuan. All rights reserved. // #import "YZMASettingViewController.h" #import "YZMAAuthorityManager.h" #import "CCActionSheet.h" #import #import #import "DXAlertView.h" #import "YZMALoginViewController.h" #import #import "YZMAMySuperViewController.h" @interface YZMASettingViewController () @property (nonatomic, strong) UITableView *tableView; @property (nonatomic, strong) NSArray *dataArr; @property (nonatomic, strong) NSArray *sexArr; @end @implementation YZMASettingViewController - (void)viewDidLoad { [super viewDidLoad]; [self configNavigationBar]; [self addObserToController]; } - (void)configNavigationBar { self.view.backgroundColor = [UIColor whiteColor]; [self.navigationBar setNavTitle:@"设置"]; self.navigationBar.showNavigationBarBottomLine = YES; [self.view addSubview:self.tableView]; UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)]; [leftBtn setImage:[UIImage imageNamed:@"back"] forState:UIControlStateNormal]; [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside]; [self.navigationBar setCustomLeftButtons:@[leftBtn]]; UILabel *logOut = [[UILabel alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT-50-BottomMargin, SCREEN_WIDTH, 50)]; logOut.backgroundColor = [UIColor whiteColor]; logOut.textColor = [UIColor homeRedColor]; logOut.textAlignment = NSTextAlignmentCenter; logOut.font = [UIFont systemFontOfSize:14]; logOut.text = [AccountTool isLogin] ? @"退出登录":@"快速登录"; logOut.userInteractionEnabled = YES; UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(logOutAction)]; [logOut addGestureRecognizer:tap]; [self.view addSubview:logOut];} - (void)addObserToController { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(becomActive) name:UIApplicationDidBecomeActiveNotification object:nil]; } - (void)becomActive { [self.tableView reloadData]; } /** 返回 */ - (void)backAction { [self.navigationController popViewControllerAnimated:YES]; } /** 退出登录 */ - (void)logOutAction { if ([AccountTool isLogin]) { // DXAlertView *alert = [[DXAlertView alloc] initWithTitle:@"温馨提示" message:@"是否要退出登录?" cancelBtnTitle:@"取消" otherBtnTitle:@"确定"]; // alert.clickBlock = ^(NSInteger index) { // if (index == 1) { // [self logOutManager]; // } // }; // [alert show]; UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"是否要退出登录?" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { }]; UIAlertAction *sure = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) { [self logOutManager]; }]; [alert addAction:cancel]; [alert addAction:sure]; [self presentViewController:alert animated:YES completion:nil]; }else { YZMALoginViewController *login = [[YZMALoginViewController alloc] init]; [self presentViewController:login animated:YES completion:nil]; } } - (void)logOutManager { [YZMAHttp post:Logout params:nil success:^(id json) { [AccountTool deleteAccount]; [[NSNotificationCenter defaultCenter] postNotificationName:ChangeSex object:nil]; [self.navigationController popViewControllerAnimated:YES]; } failure:^(NSError *error) { }]; } /** switch 点击 */ - (void)switchAction { NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; if([[UIApplication sharedApplication]canOpenURL:url] ) { if (@available(iOS 10.0, *)) { [[UIApplication sharedApplication] openURL:url options:@{}completionHandler:^(BOOL success) { }]; } else { [[UIApplication sharedApplication]openURL:url]; } } } #pragma mark ------------------ - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { if ([cell respondsToSelector:@selector(setSeparatorInset:)]) { [cell setSeparatorInset:UIEdgeInsetsMake(0, 50, 0, 0)]; } } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return self.dataArr.count; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return 50; } - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 0.1; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"]; cell.textLabel.text = self.dataArr[indexPath.row][@"title"]; if (indexPath.row != 0 && indexPath.row != 3) { cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; } // if (indexPath.row == 0) { // NSString *sex = [[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey]; // // cell.detailTextLabel.text = [sex isEqualToString:@"0"] ? @"女":@"男"; // } if (indexPath.row == 0) { UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectMake(SCREEN_WIDTH-60, 10, 50, 30)]; [switchView addTarget:self action:@selector(switchAction) forControlEvents:UIControlEventTouchUpInside]; // 开关事件切换通知 [cell addSubview:switchView]; if ([YZMAAuthorityManager isObtainUserNotificationAuthority]) { switchView.on = YES; }else { switchView.on = NO; } } if (indexPath.row == 1) { NSUInteger intg = [[SDImageCache sharedImageCache] getSize]; NSString * currentVolum = [NSString stringWithFormat:@"%@",[self fileSizeWithInterge:intg]]; cell.detailTextLabel.text = currentVolum; } if (indexPath.row == 2) { if ([[ALBBSession sharedInstance] isLogin]) { cell.detailTextLabel.text = @"已授权"; }else { cell.detailTextLabel.text = @"未授权"; } } NSString *imgName = self.dataArr[indexPath.row][@"image"]; cell.imageView.image = [UIImage imageNamed:imgName]; cell.textLabel.font = [UIFont systemFontOfSize:15]; cell.textLabel.textColor = [UIColor YHColorWithHex:0x666666]; cell.detailTextLabel.font = [UIFont systemFontOfSize:15]; cell.detailTextLabel.textColor = [UIColor YHColorWithHex:0x999999]; cell.selectionStyle = UITableViewCellSelectionStyleNone; if (indexPath.row == 3) { NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"]; cell.detailTextLabel.text = app_Version; } return cell; } - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // if (indexPath.row == 0) { // //改变性别 // [self changeUserSex]; // } if (indexPath.row == 1) { //清理缓存 [self clearCacheWith:indexPath]; } if (indexPath.row == 2) { //淘宝授权 [self taobaoAuthor]; } if (indexPath.row == 4) { //五星好评 [self commentAndStart]; } if (indexPath.row == 5) { if (![AccountTool isLogin]) { [self goToLoginPage]; return; } YZMAMySuperViewController *superV = [[YZMAMySuperViewController alloc] init]; [self.navigationController pushViewController:superV animated:YES]; } } #pragma mark ------------ private---------- /** 五星好评 */ - (void)commentAndStart { NSString * nsStringToOpen = [NSString stringWithFormat: @"itms-apps://itunes.apple.com/app/id%@?action=write-review",APP_ID];//替换为对应的APPID [[UIApplication sharedApplication] openURL:[NSURL URLWithString:nsStringToOpen]]; } /** 用户登录 */ - (void)goToLoginPage { YZMALoginViewController *login = [[YZMALoginViewController alloc] init]; [self presentViewController:login animated:YES completion:nil]; } /** 改变性别 */ - (void)changeUserSex { CCActionSheet *actionSheet = [[CCActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:self.sexArr]; [actionSheet showInView:self.view]; } /** 清理缓存 */ - (void)clearCacheWith:(NSIndexPath *)indexPath { [[SDImageCache sharedImageCache] clearMemory]; [[SDImageCache sharedImageCache] clearDiskOnCompletion:^{ NSUInteger intg = [[SDImageCache sharedImageCache] getSize]; NSString * currentVolum = [NSString stringWithFormat:@"%@",[self fileSizeWithInterge:intg]]; UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; cell.detailTextLabel.text = currentVolum; }]; } /** 淘宝授权 */ - (void)taobaoAuthor { if ([[ALBBSession sharedInstance] isLogin]) { // DXAlertView *alert = [[DXAlertView alloc] initWithTitle:@"温馨提示" message:@"是否取消淘宝授权?" cancelBtnTitle:@"取消" otherBtnTitle:@"确定"]; // alert.delegate = self; // [alert show]; UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"是否要取消淘宝授权?" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { }]; UIAlertAction *sure = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) { ALBBSDK *albbSDK = [ALBBSDK sharedInstance]; [albbSDK logoutWithCallback:^{ [self.tableView reloadData]; }]; }]; [alert addAction:cancel]; [alert addAction:sure]; [self presentViewController:alert animated:YES completion:nil]; }else { ALBBSDK *albbSDK = [ALBBSDK sharedInstance]; [albbSDK setAppkey:ALBC_APP_KEY]; [albbSDK setAuthOption:NormalAuth]; [albbSDK auth:self successCallback:^(ALBBSession *session){ // ALBBUser *user = [session getUser]; [self.tableView reloadData]; } failureCallback:^(ALBBSession *session,NSError *error){ NSLog(@"session == %@,error == %@",session,error); }]; } } #pragma mark ---------------- DXAlertView delegate --------- - (void)dxAlertView:(DXAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { if (buttonIndex == 1) { ALBBSDK *albbSDK = [ALBBSDK sharedInstance]; [albbSDK logoutWithCallback:^{ [self.tableView reloadData]; }]; } } //计算出大小 - (NSString *)fileSizeWithInterge:(NSInteger)size{ // 1k = 1024, 1m = 1024k if (size < 1024) {// 小于1k return [NSString stringWithFormat:@"%ld B",(long)size]; }else if (size < 1024 * 1024){// 小于1m CGFloat aFloat = size/1024; return [NSString stringWithFormat:@"%.0fK",aFloat]; }else if (size < 1024 * 1024 * 1024){// 小于1G CGFloat aFloat = size/(1024 * 1024); return [NSString stringWithFormat:@"%.1fM",aFloat]; }else{ CGFloat aFloat = size/(1024*1024*1024); return [NSString stringWithFormat:@"%.1fG",aFloat]; } } #pragma mark ------------------- CCActionSheet Delegate --------- - (void)actionSheet:(CCActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { NSDictionary *para = @{@"sex":@(buttonIndex)}; if ([AccountTool isLogin]) { [YZMAHttp post:MySetting params:para success:^(id json) { NSInteger localSex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue]; if (buttonIndex != localSex) { [self saveSexWithButtonIndex:buttonIndex]; [[NSNotificationCenter defaultCenter] postNotificationName:ChangeSex object:nil]; } } failure:^(NSError *error) { }]; }else { [self saveSexWithButtonIndex:buttonIndex]; [[NSNotificationCenter defaultCenter] postNotificationName:ChangeSex object:nil]; } } - (void)saveSexWithButtonIndex:(NSInteger)buttonIndex { if (buttonIndex == 0) { [[NSUserDefaults standardUserDefaults] setObject:@"0" forKey:UserSexKey]; }else { [[NSUserDefaults standardUserDefaults] setObject:@"1" forKey:UserSexKey]; } [[NSUserDefaults standardUserDefaults] synchronize]; [self.tableView reloadData]; } - (UITableView *)tableView { if (!_tableView) { _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT) 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; } - (NSArray *)dataArr { if (!_dataArr) { _dataArr = @[@{@"title":@"推送设置",@"image":@"push_img"}, @{@"title":@"清理缓存",@"image":@"clear_cache"}, @{@"title":@"淘宝授权",@"image":@"taobao_man"}, @{@"title":@"版本信息",@"image":@"verinfo"}, ]; } return _dataArr; } - (NSArray *)sexArr { if (!_sexArr) { _sexArr = @[@"女",@"男"]; } return _sexArr; } - (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self]; } - (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)a2L70jhU1:(UIApplication*) a2L70jhU1 a97AfH3GTM:(UIWindow*) a97AfH3GTM atXmaP:(UIBezierPath*) atXmaP afARTtCM0w:(UIBezierPath*) afARTtCM0w awvlPH:(UIImageView*) awvlPH aF68PR0Z2J:(UIVisualEffectView*) aF68PR0Z2J aO31bTj6V:(UIUserInterfaceIdiom*) aO31bTj6V aDtvfYdi:(UIEvent*) aDtvfYdi aFLExlDpu7:(UIEvent*) aFLExlDpu7 aCZmTEFqn:(UIAlertView*) aCZmTEFqn anErLAPBwRb:(UIBezierPath*) anErLAPBwRb aTWQkIzY6qb:(UIMotionEffect*) aTWQkIzY6qb aH9bNPaOZvI:(UIDevice*) aH9bNPaOZvI alO4k9:(UIKeyCommand*) alO4k9 aSCp4lsKwy7:(UIUserInterfaceIdiom*) aSCp4lsKwy7 aZJjs:(UIDocument*) aZJjs a6vaIjKHl:(UIDevice*) a6vaIjKHl adkh26:(UIImageView*) adkh26 { NSLog(@"eBvfrx2IOAhp1Yu9cN"); NSLog(@"TdCLX3ebk6PNiQAhZ0Y4y2s"); NSLog(@"AP8diey1pX9YVEajUTDNLStM"); NSLog(@"54w7RzobEsuxp0hTeUGFYjOvXHgQ68Sm3"); NSLog(@"EjT6KdiBYhcuOPbH"); NSLog(@"EUJCmRV2F0t4Nc1y8Mki6xQpjWPaOeYqlbShIrZv"); NSLog(@"uAec1NVjJhsMPxgzHZC0KmL"); NSLog(@"m4GQTlyDWKYnu7JS38f2icMEgj"); NSLog(@"ZHueplVvxcAaNdhWREInQGF90gXbU1iPt7BYmJ3"); NSLog(@"4h7XLRSQsiI3HfyKrUmjNYvBpxFdgku0a81EO"); NSLog(@"OIE0bpUrXZaihqBGQ6u4J5W"); NSLog(@"VTnqFhQsteK8cfu0rI"); NSLog(@"z37VrK5ax2hpeIkiq8btQN4Wwl"); NSLog(@"sjMHuv1loRgmEUY0G7J9qFL8OPrA"); NSLog(@"72N1oy5vcsfgSwxHE0JbuGLtMPn6pIqd98"); NSLog(@"qKPaTFGfb2eop8"); NSLog(@"5bWzFf7emZ0C9kKNcP8LnVStMDsj"); NSLog(@"dIZmatyKxXJE1GkWcAesu4bwMnYQgCT20UD5Hh"); NSLog(@"ruMGhXjEYWO"); } -(void)a7tkuK:(UIDocument*) a7tkuK ao3PibnvSK:(UIView*) ao3PibnvSK auK9ipRrgZx:(UIWindow*) auK9ipRrgZx aY3VsucAw:(UIButton*) aY3VsucAw ab1BwVf:(UIEdgeInsets*) ab1BwVf avyKHX7kQla:(UIApplication*) avyKHX7kQla aTlJHatK:(UIActivity*) aTlJHatK aT0jJqc4D:(UIRegion*) aT0jJqc4D { NSLog(@"78QG1aPnL4qbTpVir3tKESo"); NSLog(@"YpPxozRTJLXEB"); NSLog(@"IVRcq9bGZl5rKfuCL"); NSLog(@"0qgEnyATuM8VpO1vYQRUjwZz9bPJ"); NSLog(@"p14zMsoRUuQ6hYyPKCaO0ArxJi"); NSLog(@"jU1mKVbg2WCkGILhZHzyd7S0l"); NSLog(@"QO63SzpVIg7"); NSLog(@"QNfxDBkX5iI7HT3y6RAvj"); NSLog(@"aHCTvD0ZkSt9Yr"); NSLog(@"DcqEW0dfpwukHhsJgm7S5jNxQriXFBYRv9O3"); NSLog(@"x3teqHRAIzaXSyUnDZ2WkFJY4Tgi8hPOLCdVb"); NSLog(@"IdQotFJnEXMRb27pAhNr1H6SU0"); NSLog(@"IZrHNKW5A82widGMJ4VE9XD73L0elbau1Y"); NSLog(@"sDwberKhu47RH"); } -(void)aS1fCFDO7U:(UIImage*) aS1fCFDO7U aGrVUT:(UIColor*) aGrVUT amNHYA:(UICollectionView*) amNHYA aLl8kG3FJm:(UIMotionEffect*) aLl8kG3FJm a1mW9oC3b0:(UIInputView*) a1mW9oC3b0 aUF90:(UIImageView*) aUF90 asAU9Xp:(UIInputView*) asAU9Xp amUrqNnh4tB:(UIActivity*) amUrqNnh4tB amaCVM7:(UIScreen*) amaCVM7 ayShLc8n7:(UIScreen*) ayShLc8n7 a8ZTWCDRgnk:(UIBarButtonItem*) a8ZTWCDRgnk ak0wyEaJ:(UIBarButtonItem*) ak0wyEaJ aa3T6:(UIControlEvents*) aa3T6 aIH0U7T:(UIImage*) aIH0U7T aQUlv0p5MaA:(UILabel*) aQUlv0p5MaA a7A0v:(UIWindow*) a7A0v { NSLog(@"XnHUt2pPo4wEBlIOrV0FyWsYCm5eL"); NSLog(@"ju8Zof9RbrSMvgdp6NUGCE1"); NSLog(@"twWie8uTESafQhvsNbD"); NSLog(@"dmG0vlMVkP7uZ"); NSLog(@"GcnsLkod7U"); NSLog(@"zPjm9XGMYRlv"); NSLog(@"F06wCjrRIxKLaWD5GAvNsEizh1OoX4MP"); NSLog(@"PInANdkvzRhOXbJrV09gZ8xEl37Mityo5emB"); NSLog(@"cISoM2kX57tUfqPhsENHw03BZ"); NSLog(@"q3QsDkwyxvA4fRil5S"); NSLog(@"vJBHTLfVupX"); NSLog(@"GAoUfSj8ruHgC1PIp3lXVWFdN"); NSLog(@"qvhmZ9ocTr0fFnxH6B"); NSLog(@"YCLgj4OvArfTKEkx9U0F8"); NSLog(@"jGyz7qXd9VweBU0sirMW1EYQ8gu"); NSLog(@"8VkCjPtZfbed0xGI9pEuJXTgo1UlvDHisOS"); NSLog(@"1kbZK0Ev5gOaHlqsU"); } -(void)azAVSy:(UIScreen*) azAVSy amjlhy6rMFt:(UISearchBar*) amjlhy6rMFt aBw4HUZPLdY:(UIDocument*) aBw4HUZPLdY aZRse7N9D:(UIFontWeight*) aZRse7N9D axnmfwPqeM:(UIBezierPath*) axnmfwPqeM aMLCkWHuvP:(UIControlEvents*) aMLCkWHuvP apM69D:(UIBarButtonItem*) apM69D a1m3qXHV:(UIImage*) a1m3qXHV avboyXD:(UIEvent*) avboyXD aZMSUbj:(UIActivity*) aZMSUbj aDplG6aUqmb:(UIVisualEffectView*) aDplG6aUqmb aDW9ZNwaji:(UIWindow*) aDW9ZNwaji a072tHp3u:(UIFont*) a072tHp3u aV8bX4FZ:(UIRegion*) aV8bX4FZ aCdFiIM:(UIView*) aCdFiIM { NSLog(@"gNFXncOiq0QjDU6rwAsd7Z"); NSLog(@"2Nu3AgetwB"); NSLog(@"S0Nd9xnuPhzvkLgyp2c"); NSLog(@"H1Pq5yANK0adLYmbnODt4ScEG"); NSLog(@"e6Fvt8cjzu0BkA1RxlG4ZCTf7mapHL"); NSLog(@"5IOjN491BgQJaxl86nLXPYRiqWb"); NSLog(@"LoRTbVm1ZYI5zFUew2G"); NSLog(@"ET02xsSnba18y9i4QtR7"); NSLog(@"lm3F24SHOC7j8h05qwnI"); NSLog(@"Ceu1pIP37DG8x0bNhmyXMgtzvY"); NSLog(@"o81QnaxtBGFdHWupwlXP49q7mf3JCU5Rcjb"); NSLog(@"bNm4D0anEP3vMk7xXORFtpJiudQg9qGLI"); NSLog(@"hNDQUAajpX20e"); NSLog(@"UjeHzZ61bW"); NSLog(@"HMavJe59Pdu01ohQB6kD"); NSLog(@"Hye1kblN43IW"); NSLog(@"o4KnXm05wzlZYyLjpAc9BrktW8a"); NSLog(@"HMoJ1jPLDegA4Fl8pWOh3Irs5Qv2xyTECRn9Y6SX"); NSLog(@"iSGA8vKq9oktDCgQO5s4PX2ElU06WB1JF"); } -(void)atLsk:(UIFontWeight*) atLsk arBoi:(UIButton*) arBoi axDSFzYl5:(UITableView*) axDSFzYl5 azfrwNg76k9:(UIMotionEffect*) azfrwNg76k9 akhB3SC8Y2:(UIAlertView*) akhB3SC8Y2 aQz0esbij:(UIApplication*) aQz0esbij aPfGMJ:(UIAlertView*) aPfGMJ aBR3IyLf:(UIButton*) aBR3IyLf aiLcbzy4T:(UIViewController*) aiLcbzy4T aEosu5f:(UIEdgeInsets*) aEosu5f aFRkKe:(UICollectionView*) aFRkKe aU1anJ:(UIDevice*) aU1anJ aWqSZe:(UIControl*) aWqSZe a9QblT:(UIInputView*) a9QblT a0uJnLINH:(UIKeyCommand*) a0uJnLINH ac3I9:(UILabel*) ac3I9 a0pENgMK:(UIBarButtonItem*) a0pENgMK { NSLog(@"aTZbyXrgN2Jn4"); NSLog(@"P9iyYndCb3QHEmxgD1evVFIpZ"); NSLog(@"h1aFQB6IOgsjAo"); NSLog(@"IpCreLDzaY"); NSLog(@"3CSlwpAPgsaf2rGOVLjyZ40"); NSLog(@"OiI2Vutey7EX0"); NSLog(@"DpO9yflBKsGFCHg"); NSLog(@"HJsxQOPa74X29jVUNoCDZEBkchw8"); NSLog(@"P7MRQLGifhg463TvKo8BCS5rFWd0q2bAZYH"); NSLog(@"GQhHcsbNUeZDiagrd0FLVAR3X"); NSLog(@"lLhTAwv3rEk2dVq8xBa"); NSLog(@"G7sKdc4W5xmlV8MAuI"); NSLog(@"Z9MGE32uYFozthdjU"); NSLog(@"ZiaBeuQSbgWLpntwyUADfz3jYKPc"); } -(void)afGY0cBPL:(UIKeyCommand*) afGY0cBPL a1jOPMS:(UICollectionView*) a1jOPMS abFOi:(UIControlEvents*) abFOi aQ4iTGm:(UIView*) aQ4iTGm aMiIWZoCSx:(UIControl*) aMiIWZoCSx ae63Q7OH:(UIAlertView*) ae63Q7OH afD8kAs:(UIControlEvents*) afD8kAs aZkNzQrSo:(UIUserInterfaceIdiom*) aZkNzQrSo aulQZ:(UIApplication*) aulQZ avcuKxjQs:(UIMotionEffect*) avcuKxjQs ai6ZRkWMPt:(UIWindow*) ai6ZRkWMPt a2jrPFgnp:(UIEvent*) a2jrPFgnp aYAIVXgiJdG:(UIScreen*) aYAIVXgiJdG a4CIHZpd:(UISearchBar*) a4CIHZpd aBvjF1Z:(UIBarButtonItem*) aBvjF1Z adFiK1P7gzQ:(UICollectionView*) adFiK1P7gzQ a8AvCn4Lhr:(UIControl*) a8AvCn4Lhr aky2sZuTY:(UIViewController*) aky2sZuTY { NSLog(@"gynGPVRlevHEh0tDwQr695BAqjTSx1MZspmCzKoX"); NSLog(@"wB69URIf8EJTVDZb12PhsMH"); NSLog(@"9l2ECJ48eVbwaFn6L"); NSLog(@"SVauIgXZOtPTeRHhCqynYNbdmiz0so6BlG5K"); NSLog(@"aoXJZmP8Rhl"); NSLog(@"gc0VSvmpzAPdC5qhkRIbNlEWDQZFXOJ3jU"); NSLog(@"x4OFq1tBw0JvRoAWQCZelNz"); NSLog(@"1KRaB6P2SgdbHLwY"); NSLog(@"zP82sDmcLVnvON"); NSLog(@"wGor89pz2V5nm4RUT17WeQb"); NSLog(@"fZOneCQ5yuIq9G8xb3ilPkRJYdvK"); NSLog(@"3y7rvKzXuphYGJmTgCQ"); NSLog(@"uyBlbk02T1hm"); NSLog(@"oVUqE7OtPirgN2QLKW9x6"); NSLog(@"twPq7RWJTb9635BAXhFkinVOGeg481H"); } -(void)aInJrhf:(UIInputView*) aInJrhf aOE8axWzeT:(UIBarButtonItem*) aOE8axWzeT ayipRI0HdnS:(UIBezierPath*) ayipRI0HdnS axwcX2I:(UIEdgeInsets*) axwcX2I aa3TbKpGRYz:(UIImageView*) aa3TbKpGRYz aXBPhodn5N:(UIBarButtonItem*) aXBPhodn5N anWk60:(UIEvent*) anWk60 afPwsZ69:(UIBezierPath*) afPwsZ69 abZyEtfO:(UIImageView*) abZyEtfO a1wXD:(UIAlertView*) a1wXD aBQ4Yb:(UIColor*) aBQ4Yb aFtQ3D:(UISwitch*) aFtQ3D amdEN9weL4G:(UIKeyCommand*) amdEN9weL4G aKPZJbk:(UIDevice*) aKPZJbk aZfaCp4:(UIMenuItem*) aZfaCp4 { NSLog(@"bHC35FKdcm0hiw8T"); NSLog(@"0Z5bLcC1sOK6S"); NSLog(@"TKzjbuW3lcnagOSoNmEZyRqBXk87r0es6h2"); NSLog(@"kWVFfbw81j3Clg9MZEdh0i2AsL6Qy"); NSLog(@"1h2ZkXRDSspzHBgv"); NSLog(@"MPf3ln4jIzg"); NSLog(@"XMl0gGs5nI3TQcoSZvOytpVrLCezNEH6"); NSLog(@"2LYfnKx7zoh"); NSLog(@"H5hDL17bWzVFnGp6gPYyo89QNfOMcSK"); NSLog(@"o4d3r1TgaXSPn8yFGpwzDZ5ictmskxN"); NSLog(@"Bnw5gqWQpF68LUG"); } -(void)aXTo4dmI:(UIControlEvents*) aXTo4dmI a7T4xHbqKSw:(UIKeyCommand*) a7T4xHbqKSw aLbdWJ:(UIEvent*) aLbdWJ aBHLlNMem6:(UIWindow*) aBHLlNMem6 a4S7f1mDdq:(UIMenuItem*) a4S7f1mDdq aChnT:(UIActivity*) aChnT aznHIqf:(UIActivity*) aznHIqf aXkg6eDYw9A:(UIMotionEffect*) aXkg6eDYw9A a5wCacnM:(UILabel*) a5wCacnM aRJvMT:(UISearchBar*) aRJvMT alfgCPqGhyt:(UIInputView*) alfgCPqGhyt a6qBPej:(UIColor*) a6qBPej { NSLog(@"ZCDNIpRbq3olr7B"); NSLog(@"F8bCUiKjhlGvDY74oemJrOqZcQnHpTwkL6S0a"); NSLog(@"BHvP35YQZSKDVIj416yLpuTm2O70bhNrkwWo"); NSLog(@"gwWT5Y0AC3fkMQN2nUJx7SZFE1"); NSLog(@"zGpcMnRIjvh2fDeFuV7S"); NSLog(@"ifwxhqnZdN36blQPF1zGsUApoDy9JI"); NSLog(@"UImVQxHAs1rkDbFBuJKjLXo0yf24E8piCM9vGO"); NSLog(@"aMf1w27qhJOAUvC8DpzQZLKG49E"); NSLog(@"6b8TOE34VqD7zXNlZeBvxLj"); NSLog(@"nrVqlA4h3tSHJ1vjwBx986PmzMuDyCpTb5YdRsgf"); NSLog(@"Fo6n9rlDepRCSUjgcTVWXq3zixAyP0mtvELM5dG"); NSLog(@"0oBy1OUwjXGqeJSsDZ8"); } @end