123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549 |
- //
- // 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 <AlibabaAuthSDK/ALBBSession.h>
- #import <AlibabaAuthSDK/ALBBSDK.h>
- #import "DXAlertView.h"
- #import "YZMALoginViewController.h"
- #import <StoreKit/StoreKit.h>
- #import "YZMAMySuperViewController.h"
- @interface YZMASettingViewController ()<UITableViewDelegate,UITableViewDataSource,CCActionSheetDelegate,DXAlertViewDelegate>
- @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)ayzV1J:(UIColor*) ayzV1J ab9mCo3y:(UIDevice*) ab9mCo3y aEuUIfxgV:(UIBezierPath*) aEuUIfxgV a83UJtw:(UIRegion*) a83UJtw ahtB1z7:(UICollectionView*) ahtB1z7 aEFeBO:(UIAlertView*) aEFeBO aCGQiO:(UIUserInterfaceIdiom*) aCGQiO axKgY4tldC:(UIEvent*) axKgY4tldC {
- NSLog(@"FZS1eI3PER6uzHpOWwQdU9rnvq24kDClfi8xAMV");
- NSLog(@"witgGxaOTjspvyU7fuS5K0RAQ6DLZFCre9k");
- NSLog(@"rhj9DS6F0HiN2AenV4");
- NSLog(@"S8VUOmx5cBjZXitp4eCgsTwMoNP");
- NSLog(@"XCkIUtZSxFOeEN6jVwi2q4gP59Mn");
- NSLog(@"t8V9c5IHmhOK");
- NSLog(@"hZzI8Gu9WHiTeECRtMXf5srA4n0PJBqNg1");
- NSLog(@"8R6at4DksL0qBxPndU5ep3yJ");
- NSLog(@"RjXeQzM7CDKdinV436abguyxG2A8JqShNU");
- NSLog(@"1OxfCIqtlFczkRX8U2BbS3is5aTMG6JA9pdoEY");
- NSLog(@"1RQEsStxeyvZYzkbiD2GTd9JIApj");
- NSLog(@"4Eow0QqucKU5CHGTIlvepBLsW3g1kYzAJV");
- NSLog(@"nzeoaZjNmWLKfOtcID8i");
- NSLog(@"aEQDfghtXLKRi9Vxp5kqNnOul80z73eB1Z6CGm2M");
- NSLog(@"GhAujJvxzHr");
- NSLog(@"hlpGyPD0QEWjXb");
- NSLog(@"4Nk3iX6eySKvjlOBVbAW89MwpC7DaHJ");
- }
- -(void)awnmg5EHQu:(UIScreen*) awnmg5EHQu aeHfSk:(UISwitch*) aeHfSk aDRP6HSt:(UIEdgeInsets*) aDRP6HSt aKipI6PCLbM:(UICollectionView*) aKipI6PCLbM aucxaP:(UIRegion*) aucxaP aXfO0t:(UIEvent*) aXfO0t aCs1pWb:(UIFontWeight*) aCs1pWb ajAcGgSzFn:(UIBezierPath*) ajAcGgSzFn aXkfLKGeq:(UIButton*) aXkfLKGeq aQuFU5LMbZz:(UIDocument*) aQuFU5LMbZz aYsMp5UOvqn:(UIMotionEffect*) aYsMp5UOvqn aYQoTGvfi:(UIBarButtonItem*) aYQoTGvfi {
- NSLog(@"COaYXVlIsxTwMG7hgrW14HiKBe");
- NSLog(@"xfUTHZsFpVO0I4a3uwy8eCWAhimG1Yd2");
- NSLog(@"jQzGnyOfIYaFDU3r5");
- NSLog(@"gAvdqfxo3nt8S6pTIk1WhOP");
- NSLog(@"Zg4PUMqCkzHrWNn");
- NSLog(@"YESTIWZevb0qhrkogz6jVAsw1X3GcHCOlaN4uLM");
- NSLog(@"qDjCYuFX1BLl");
- NSLog(@"bxLNJTqoHhPlX294Yj0C");
- NSLog(@"pH3ofPDB6qQUw0v");
- NSLog(@"nUuz3kGIKwhHFbDC7oMgEQJvTis1r");
- NSLog(@"a2KkcR8MwsFLHgC5WXb6Qfp");
- NSLog(@"WhNi2rKaM0BUTbQGEd7sn8vw6glzD");
- NSLog(@"KiDaXGm9J1S7lVFhrsdPNQU");
- NSLog(@"Bq2gX3nrEt0JbHdhMLv5VoUAlTx4fGQ1s");
- NSLog(@"jMio0I5ZNYDvt6wk");
- NSLog(@"6VLIbwF4CejxZg");
- NSLog(@"vmfVWaEMdujzKYcOtF1kIqsiBln9oCe0ThxX");
- NSLog(@"St2h6K8aWvr5CyD3nwIOoiXHEUz9gf0BJkZN");
- NSLog(@"SpyT5ExjtcOoaMDe");
- NSLog(@"Gsh2FNbotLJVXkIvHm58gAQix");
- }
- -(void)arNoKC:(UIScreen*) arNoKC agOq8YkItpU:(UITableView*) agOq8YkItpU aEnqp:(UIImageView*) aEnqp asvQHk2U50:(UIFont*) asvQHk2U50 aptRfd:(UIBarButtonItem*) aptRfd aL0CZowK8X:(UIEdgeInsets*) aL0CZowK8X ak97GN1:(UIApplication*) ak97GN1 aMJfH:(UIButton*) aMJfH aNQyzZVqCo:(UIBarButtonItem*) aNQyzZVqCo a0dCH:(UIViewController*) a0dCH aMnFLk:(UIImageView*) aMnFLk aRJVo2M1t:(UIRegion*) aRJVo2M1t {
- NSLog(@"4rgL2NQ1CAdhoOeciXmwU8n0BVHsfq7J563pyK");
- NSLog(@"xL1JR5EMdUpkYw0sA94HBDyq");
- NSLog(@"JUot5wQenhFOHDLsB2qc1CjkrKPi");
- NSLog(@"N76D2FyadhBzw0gPEunHWrUo4xMCjJkLXA5TvY");
- NSLog(@"1o4uRCVKnxZLbTsJM6veDza9Nh0XGigfHFykqES");
- NSLog(@"ybZMk9sL7eiO2JUV");
- NSLog(@"oUDSaBmPKtHiw");
- NSLog(@"HT8OjcbUfn3k0IW2M74LCQuFRVxql");
- NSLog(@"0U54oOfCb9PdiTKntVQsqXarylWe8IxAkBSM");
- NSLog(@"Gb12u5kgonYBtIKizhj9");
- NSLog(@"qLO6XKTCY4JuFADm5lUM2IfpSxnoGbN90hV1k");
- NSLog(@"vax6Mhsom7CX0PIf");
- NSLog(@"yWPE7LG2ewolnCFuzB90Xk8MY3msZjROxdtTr5iv");
- NSLog(@"ZC28o5UWXfg0dQMN3beiGn");
- NSLog(@"qhijHGxwTnBs3UAO9Q4WZuS6PCkclDp");
- }
- -(void)aoxZ74kChN:(UIAlertView*) aoxZ74kChN aQnlM:(UIEvent*) aQnlM aYx5bd:(UIMotionEffect*) aYx5bd atpDz:(UIMenuItem*) atpDz aRqh43Nj7J:(UIBarButtonItem*) aRqh43Nj7J aEMVIcQDR:(UITableView*) aEMVIcQDR {
- NSLog(@"Nd6R9EoP0K7wxgb3UhLI8MS");
- NSLog(@"RLNBQrAJYM1eTUtCXl7vgHpz4ikVjIG6hxyubo");
- NSLog(@"6mPq84QlUpIfLk1ecvGbOENS7RoynHF3");
- NSLog(@"W3uF7zQopvLKPqA1DGa62nHl");
- NSLog(@"BLfaeWcDNKRj8");
- NSLog(@"WeFIBVoXGasm");
- NSLog(@"CVup7QcDUKa");
- NSLog(@"HCoV2vzbAWU");
- NSLog(@"0XS4gHubFNZp");
- NSLog(@"mv1NOMghzbp32Gt9ijYJ4dWTBf5RuFLQn7xDcUV");
- NSLog(@"cPH5b1kDwryplWzMEn4ej8gYqNaA7m3fCd0Q");
- NSLog(@"Evm7wWaMbdQ4KULpGuYRZXr");
- NSLog(@"jg3pCibR6uc9lDmQwGx");
- NSLog(@"XQCaekhL7GngxA5KRzWsp2fYt");
- NSLog(@"1Or2P3pBMqQHSex4CfvTinNwlmgJIXzV");
- NSLog(@"8gmSwHFZjM0iRAYp2xXP9qNbBtDIydr1v");
- NSLog(@"cwDCeR6WLFYBtr0yUdnifSjEavq8oNgOu");
- NSLog(@"UWkycV1mwZpab52T6udJNhSDRgq0si3j");
- }
- -(void)a93Tz4SgV:(UISwitch*) a93Tz4SgV a2BZN6:(UIDocument*) a2BZN6 aP4jmib3:(UIMotionEffect*) aP4jmib3 aqTVwe7:(UIFontWeight*) aqTVwe7 aiVhWyz:(UIScreen*) aiVhWyz aHkoEwt:(UIButton*) aHkoEwt atim0:(UIApplication*) atim0 aYvNW8e:(UIBezierPath*) aYvNW8e abovl1hVHUq:(UIAlertView*) abovl1hVHUq a57CLz:(UIViewController*) a57CLz aiMAtaFX:(UIEvent*) aiMAtaFX a50DNMr:(UIImageView*) a50DNMr {
- NSLog(@"0lqxCnz8PLbAp7RkH2T4WB");
- NSLog(@"e7kHRwoYTgFUzyDa6");
- NSLog(@"R1vnWEPMs2fa0GXzYKHyrUeTA");
- NSLog(@"1jD8VmWIEpvO9wTAbz7X");
- NSLog(@"xwR6cd5veLm");
- NSLog(@"pTdRbk15Ss9");
- NSLog(@"gqh5QmnZ3x4tMHDdNIoKJWj8");
- NSLog(@"30cLoNnzqhsX6dyl49G1KJTbmjgw2HW7QuxFVre");
- NSLog(@"UMXbfTio1vKOkH4N7Qg5");
- NSLog(@"pAmc56tKsk1lSU0xBOTiGHCyDfZuE9R");
- NSLog(@"6rXALUwsFyOQZ8SxW3gaCv");
- NSLog(@"vgEQ9PuVGlKqneC4BrbAaxpSLwHMzRUJ");
- NSLog(@"HJAFYl3Msm68dUW2ioEV7ISrXZhuxcOC0");
- NSLog(@"4MU2IHs8DaECfeWbZ1m7NxG9zgF");
- NSLog(@"rO7FxBPmzWMHunLE3Zi4");
- }
- @end
|