口袋版本的一折买

YZMASettingViewController.m 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. //
  2. // YZMASettingViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/25.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMASettingViewController.h"
  9. #import "YZMAAuthorityManager.h"
  10. #import "CCActionSheet.h"
  11. #import <AlibabaAuthSDK/ALBBSession.h>
  12. #import <AlibabaAuthSDK/ALBBSDK.h>
  13. #import "DXAlertView.h"
  14. #import "YZMALoginViewController.h"
  15. #import <StoreKit/StoreKit.h>
  16. #import "YZMAMySuperViewController.h"
  17. @interface YZMASettingViewController ()<UITableViewDelegate,UITableViewDataSource,CCActionSheetDelegate,DXAlertViewDelegate>
  18. @property (nonatomic, strong) UITableView *tableView;
  19. @property (nonatomic, strong) NSArray *dataArr;
  20. @property (nonatomic, strong) NSArray *sexArr;
  21. @end
  22. @implementation YZMASettingViewController
  23. - (void)viewDidLoad {
  24. [super viewDidLoad];
  25. [self configNavigationBar];
  26. [self addObserToController];
  27. }
  28. - (void)configNavigationBar {
  29. self.view.backgroundColor = [UIColor whiteColor];
  30. [self.navigationBar setNavTitle:@"设置"];
  31. self.navigationBar.showNavigationBarBottomLine = YES;
  32. [self.view addSubview:self.tableView];
  33. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  34. [leftBtn setImage:[UIImage imageNamed:@"back"] forState:UIControlStateNormal];
  35. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  36. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  37. UILabel *logOut = [[UILabel alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT-50-BottomMargin, SCREEN_WIDTH, 50)];
  38. logOut.backgroundColor = [UIColor whiteColor];
  39. logOut.textColor = [UIColor homeRedColor];
  40. logOut.textAlignment = NSTextAlignmentCenter;
  41. logOut.font = [UIFont systemFontOfSize:14];
  42. logOut.text = [AccountTool isLogin] ? @"退出登录":@"快速登录";
  43. logOut.userInteractionEnabled = YES;
  44. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(logOutAction)];
  45. [logOut addGestureRecognizer:tap];
  46. [self.view addSubview:logOut];}
  47. - (void)addObserToController {
  48. [[NSNotificationCenter defaultCenter] addObserver:self
  49. selector:@selector(becomActive)
  50. name:UIApplicationDidBecomeActiveNotification object:nil];
  51. }
  52. - (void)becomActive {
  53. [self.tableView reloadData];
  54. }
  55. /**
  56. 返回
  57. */
  58. - (void)backAction {
  59. [self.navigationController popViewControllerAnimated:YES];
  60. }
  61. /**
  62. 退出登录
  63. */
  64. - (void)logOutAction {
  65. if ([AccountTool isLogin]) {
  66. // DXAlertView *alert = [[DXAlertView alloc] initWithTitle:@"温馨提示" message:@"是否要退出登录?" cancelBtnTitle:@"取消" otherBtnTitle:@"确定"];
  67. // alert.clickBlock = ^(NSInteger index) {
  68. // if (index == 1) {
  69. // [self logOutManager];
  70. // }
  71. // };
  72. // [alert show];
  73. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"是否要退出登录?" preferredStyle:UIAlertControllerStyleAlert];
  74. UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  75. }];
  76. UIAlertAction *sure = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  77. [self logOutManager];
  78. }];
  79. [alert addAction:cancel];
  80. [alert addAction:sure];
  81. [self presentViewController:alert animated:YES completion:nil];
  82. }else {
  83. YZMALoginViewController *login = [[YZMALoginViewController alloc] init];
  84. [self presentViewController:login animated:YES completion:nil];
  85. }
  86. }
  87. - (void)logOutManager {
  88. [YZMAHttp post:Logout params:nil success:^(id json) {
  89. [AccountTool deleteAccount];
  90. [[NSNotificationCenter defaultCenter] postNotificationName:ChangeSex object:nil];
  91. [self.navigationController popViewControllerAnimated:YES];
  92. } failure:^(NSError *error) {
  93. }];
  94. }
  95. /**
  96. switch 点击
  97. */
  98. - (void)switchAction {
  99. NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
  100. if([[UIApplication sharedApplication]canOpenURL:url] ) {
  101. if (@available(iOS 10.0, *)) {
  102. [[UIApplication sharedApplication] openURL:url options:@{}completionHandler:^(BOOL success) {
  103. }];
  104. } else {
  105. [[UIApplication sharedApplication]openURL:url];
  106. }
  107. }
  108. }
  109. #pragma mark ------------------
  110. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  111. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  112. [cell setSeparatorInset:UIEdgeInsetsMake(0, 50, 0, 0)];
  113. }
  114. }
  115. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  116. return self.dataArr.count;
  117. }
  118. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  119. return 50;
  120. }
  121. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  122. return 0.1;
  123. }
  124. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  125. UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"];
  126. cell.textLabel.text = self.dataArr[indexPath.row][@"title"];
  127. if (indexPath.row != 0 && indexPath.row != 3) {
  128. cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
  129. }
  130. // if (indexPath.row == 0) {
  131. // NSString *sex = [[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey];
  132. //
  133. // cell.detailTextLabel.text = [sex isEqualToString:@"0"] ? @"女":@"男";
  134. // }
  135. if (indexPath.row == 0) {
  136. UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectMake(SCREEN_WIDTH-60, 10, 50, 30)];
  137. [switchView addTarget:self action:@selector(switchAction) forControlEvents:UIControlEventTouchUpInside]; // 开关事件切换通知
  138. [cell addSubview:switchView];
  139. if ([YZMAAuthorityManager isObtainUserNotificationAuthority]) {
  140. switchView.on = YES;
  141. }else {
  142. switchView.on = NO;
  143. }
  144. }
  145. if (indexPath.row == 1) {
  146. NSUInteger intg = [[SDImageCache sharedImageCache] getSize];
  147. NSString * currentVolum = [NSString stringWithFormat:@"%@",[self fileSizeWithInterge:intg]];
  148. cell.detailTextLabel.text = currentVolum;
  149. }
  150. if (indexPath.row == 2) {
  151. if ([[ALBBSession sharedInstance] isLogin]) {
  152. cell.detailTextLabel.text = @"已授权";
  153. }else {
  154. cell.detailTextLabel.text = @"未授权";
  155. }
  156. }
  157. NSString *imgName = self.dataArr[indexPath.row][@"image"];
  158. cell.imageView.image = [UIImage imageNamed:imgName];
  159. cell.textLabel.font = [UIFont systemFontOfSize:15];
  160. cell.textLabel.textColor = [UIColor YHColorWithHex:0x666666];
  161. cell.detailTextLabel.font = [UIFont systemFontOfSize:15];
  162. cell.detailTextLabel.textColor = [UIColor YHColorWithHex:0x999999];
  163. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  164. if (indexPath.row == 3) {
  165. NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
  166. NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];
  167. cell.detailTextLabel.text = app_Version;
  168. }
  169. return cell;
  170. }
  171. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  172. // if (indexPath.row == 0) {
  173. // //改变性别
  174. // [self changeUserSex];
  175. // }
  176. if (indexPath.row == 1) {
  177. //清理缓存
  178. [self clearCacheWith:indexPath];
  179. }
  180. if (indexPath.row == 2) {
  181. //淘宝授权
  182. [self taobaoAuthor];
  183. }
  184. if (indexPath.row == 4) {
  185. //五星好评
  186. [self commentAndStart];
  187. }
  188. if (indexPath.row == 5) {
  189. if (![AccountTool isLogin]) {
  190. [self goToLoginPage];
  191. return;
  192. }
  193. YZMAMySuperViewController *superV = [[YZMAMySuperViewController alloc] init];
  194. [self.navigationController pushViewController:superV animated:YES];
  195. }
  196. }
  197. #pragma mark ------------ private----------
  198. /**
  199. 五星好评
  200. */
  201. - (void)commentAndStart {
  202. NSString * nsStringToOpen = [NSString stringWithFormat: @"itms-apps://itunes.apple.com/app/id%@?action=write-review",APP_ID];//替换为对应的APPID
  203. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:nsStringToOpen]];
  204. }
  205. /**
  206. 用户登录
  207. */
  208. - (void)goToLoginPage {
  209. YZMALoginViewController *login = [[YZMALoginViewController alloc] init];
  210. [self presentViewController:login animated:YES completion:nil];
  211. }
  212. /**
  213. 改变性别
  214. */
  215. - (void)changeUserSex {
  216. CCActionSheet *actionSheet = [[CCActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:self.sexArr];
  217. [actionSheet showInView:self.view];
  218. }
  219. /**
  220. 清理缓存
  221. */
  222. - (void)clearCacheWith:(NSIndexPath *)indexPath {
  223. [[SDImageCache sharedImageCache] clearMemory];
  224. [[SDImageCache sharedImageCache] clearDiskOnCompletion:^{
  225. NSUInteger intg = [[SDImageCache sharedImageCache] getSize];
  226. NSString * currentVolum = [NSString stringWithFormat:@"%@",[self fileSizeWithInterge:intg]];
  227. UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
  228. cell.detailTextLabel.text = currentVolum;
  229. }];
  230. }
  231. /**
  232. 淘宝授权
  233. */
  234. - (void)taobaoAuthor {
  235. if ([[ALBBSession sharedInstance] isLogin]) {
  236. // DXAlertView *alert = [[DXAlertView alloc] initWithTitle:@"温馨提示" message:@"是否取消淘宝授权?" cancelBtnTitle:@"取消" otherBtnTitle:@"确定"];
  237. // alert.delegate = self;
  238. // [alert show];
  239. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"是否要取消淘宝授权?" preferredStyle:UIAlertControllerStyleAlert];
  240. UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  241. }];
  242. UIAlertAction *sure = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  243. ALBBSDK *albbSDK = [ALBBSDK sharedInstance];
  244. [albbSDK logoutWithCallback:^{
  245. [self.tableView reloadData];
  246. }];
  247. }];
  248. [alert addAction:cancel];
  249. [alert addAction:sure];
  250. [self presentViewController:alert animated:YES completion:nil];
  251. }else {
  252. ALBBSDK *albbSDK = [ALBBSDK sharedInstance];
  253. [albbSDK setAppkey:ALBC_APP_KEY];
  254. [albbSDK setAuthOption:NormalAuth];
  255. [albbSDK auth:self successCallback:^(ALBBSession *session){
  256. // ALBBUser *user = [session getUser];
  257. [self.tableView reloadData];
  258. } failureCallback:^(ALBBSession *session,NSError *error){
  259. NSLog(@"session == %@,error == %@",session,error);
  260. }];
  261. }
  262. }
  263. #pragma mark ---------------- DXAlertView delegate ---------
  264. - (void)dxAlertView:(DXAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
  265. if (buttonIndex == 1) {
  266. ALBBSDK *albbSDK = [ALBBSDK sharedInstance];
  267. [albbSDK logoutWithCallback:^{
  268. [self.tableView reloadData];
  269. }];
  270. }
  271. }
  272. //计算出大小
  273. - (NSString *)fileSizeWithInterge:(NSInteger)size{
  274. // 1k = 1024, 1m = 1024k
  275. if (size < 1024) {// 小于1k
  276. return [NSString stringWithFormat:@"%ld B",(long)size];
  277. }else if (size < 1024 * 1024){// 小于1m
  278. CGFloat aFloat = size/1024;
  279. return [NSString stringWithFormat:@"%.0fK",aFloat];
  280. }else if (size < 1024 * 1024 * 1024){// 小于1G
  281. CGFloat aFloat = size/(1024 * 1024);
  282. return [NSString stringWithFormat:@"%.1fM",aFloat];
  283. }else{
  284. CGFloat aFloat = size/(1024*1024*1024);
  285. return [NSString stringWithFormat:@"%.1fG",aFloat];
  286. }
  287. }
  288. #pragma mark ------------------- CCActionSheet Delegate ---------
  289. - (void)actionSheet:(CCActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
  290. NSDictionary *para = @{@"sex":@(buttonIndex)};
  291. if ([AccountTool isLogin]) {
  292. [YZMAHttp post:MySetting params:para success:^(id json) {
  293. NSInteger localSex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue];
  294. if (buttonIndex != localSex) {
  295. [self saveSexWithButtonIndex:buttonIndex];
  296. [[NSNotificationCenter defaultCenter] postNotificationName:ChangeSex object:nil];
  297. }
  298. } failure:^(NSError *error) {
  299. }];
  300. }else {
  301. [self saveSexWithButtonIndex:buttonIndex];
  302. [[NSNotificationCenter defaultCenter] postNotificationName:ChangeSex object:nil];
  303. }
  304. }
  305. - (void)saveSexWithButtonIndex:(NSInteger)buttonIndex {
  306. if (buttonIndex == 0) {
  307. [[NSUserDefaults standardUserDefaults] setObject:@"0" forKey:UserSexKey];
  308. }else {
  309. [[NSUserDefaults standardUserDefaults] setObject:@"1" forKey:UserSexKey];
  310. }
  311. [[NSUserDefaults standardUserDefaults] synchronize];
  312. [self.tableView reloadData];
  313. }
  314. - (UITableView *)tableView {
  315. if (!_tableView) {
  316. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT) style:UITableViewStylePlain];
  317. _tableView.estimatedSectionHeaderHeight = 0;
  318. _tableView.estimatedSectionFooterHeight = 0;
  319. _tableView.sectionFooterHeight = 0;
  320. _tableView.sectionHeaderHeight = 0;
  321. _tableView.delegate = self;
  322. _tableView.dataSource = self;
  323. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  324. _tableView.backgroundColor = [UIColor yhGrayColor];
  325. _tableView.bounces = YES;
  326. _tableView.showsVerticalScrollIndicator = NO;
  327. [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]];
  328. }
  329. return _tableView;
  330. }
  331. - (NSArray *)dataArr {
  332. if (!_dataArr) {
  333. _dataArr = @[@{@"title":@"推送设置",@"image":@"push_img"},
  334. @{@"title":@"清理缓存",@"image":@"clear_cache"},
  335. @{@"title":@"淘宝授权",@"image":@"taobao_man"},
  336. @{@"title":@"版本信息",@"image":@"verinfo"},
  337. ];
  338. }
  339. return _dataArr;
  340. }
  341. - (NSArray *)sexArr {
  342. if (!_sexArr) {
  343. _sexArr = @[@"女",@"男"];
  344. }
  345. return _sexArr;
  346. }
  347. - (void)dealloc {
  348. [[NSNotificationCenter defaultCenter] removeObserver:self];
  349. }
  350. - (void)didReceiveMemoryWarning {
  351. [super didReceiveMemoryWarning];
  352. // Dispose of any resources that can be recreated.
  353. }
  354. /*
  355. #pragma mark - Navigation
  356. // In a storyboard-based application, you will often want to do a little preparation before navigation
  357. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  358. // Get the new view controller using [segue destinationViewController].
  359. // Pass the selected object to the new view controller.
  360. }
  361. */
  362. -(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 {
  363. NSLog(@"FZS1eI3PER6uzHpOWwQdU9rnvq24kDClfi8xAMV");
  364. NSLog(@"witgGxaOTjspvyU7fuS5K0RAQ6DLZFCre9k");
  365. NSLog(@"rhj9DS6F0HiN2AenV4");
  366. NSLog(@"S8VUOmx5cBjZXitp4eCgsTwMoNP");
  367. NSLog(@"XCkIUtZSxFOeEN6jVwi2q4gP59Mn");
  368. NSLog(@"t8V9c5IHmhOK");
  369. NSLog(@"hZzI8Gu9WHiTeECRtMXf5srA4n0PJBqNg1");
  370. NSLog(@"8R6at4DksL0qBxPndU5ep3yJ");
  371. NSLog(@"RjXeQzM7CDKdinV436abguyxG2A8JqShNU");
  372. NSLog(@"1OxfCIqtlFczkRX8U2BbS3is5aTMG6JA9pdoEY");
  373. NSLog(@"1RQEsStxeyvZYzkbiD2GTd9JIApj");
  374. NSLog(@"4Eow0QqucKU5CHGTIlvepBLsW3g1kYzAJV");
  375. NSLog(@"nzeoaZjNmWLKfOtcID8i");
  376. NSLog(@"aEQDfghtXLKRi9Vxp5kqNnOul80z73eB1Z6CGm2M");
  377. NSLog(@"GhAujJvxzHr");
  378. NSLog(@"hlpGyPD0QEWjXb");
  379. NSLog(@"4Nk3iX6eySKvjlOBVbAW89MwpC7DaHJ");
  380. }
  381. -(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 {
  382. NSLog(@"COaYXVlIsxTwMG7hgrW14HiKBe");
  383. NSLog(@"xfUTHZsFpVO0I4a3uwy8eCWAhimG1Yd2");
  384. NSLog(@"jQzGnyOfIYaFDU3r5");
  385. NSLog(@"gAvdqfxo3nt8S6pTIk1WhOP");
  386. NSLog(@"Zg4PUMqCkzHrWNn");
  387. NSLog(@"YESTIWZevb0qhrkogz6jVAsw1X3GcHCOlaN4uLM");
  388. NSLog(@"qDjCYuFX1BLl");
  389. NSLog(@"bxLNJTqoHhPlX294Yj0C");
  390. NSLog(@"pH3ofPDB6qQUw0v");
  391. NSLog(@"nUuz3kGIKwhHFbDC7oMgEQJvTis1r");
  392. NSLog(@"a2KkcR8MwsFLHgC5WXb6Qfp");
  393. NSLog(@"WhNi2rKaM0BUTbQGEd7sn8vw6glzD");
  394. NSLog(@"KiDaXGm9J1S7lVFhrsdPNQU");
  395. NSLog(@"Bq2gX3nrEt0JbHdhMLv5VoUAlTx4fGQ1s");
  396. NSLog(@"jMio0I5ZNYDvt6wk");
  397. NSLog(@"6VLIbwF4CejxZg");
  398. NSLog(@"vmfVWaEMdujzKYcOtF1kIqsiBln9oCe0ThxX");
  399. NSLog(@"St2h6K8aWvr5CyD3nwIOoiXHEUz9gf0BJkZN");
  400. NSLog(@"SpyT5ExjtcOoaMDe");
  401. NSLog(@"Gsh2FNbotLJVXkIvHm58gAQix");
  402. }
  403. -(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 {
  404. NSLog(@"4rgL2NQ1CAdhoOeciXmwU8n0BVHsfq7J563pyK");
  405. NSLog(@"xL1JR5EMdUpkYw0sA94HBDyq");
  406. NSLog(@"JUot5wQenhFOHDLsB2qc1CjkrKPi");
  407. NSLog(@"N76D2FyadhBzw0gPEunHWrUo4xMCjJkLXA5TvY");
  408. NSLog(@"1o4uRCVKnxZLbTsJM6veDza9Nh0XGigfHFykqES");
  409. NSLog(@"ybZMk9sL7eiO2JUV");
  410. NSLog(@"oUDSaBmPKtHiw");
  411. NSLog(@"HT8OjcbUfn3k0IW2M74LCQuFRVxql");
  412. NSLog(@"0U54oOfCb9PdiTKntVQsqXarylWe8IxAkBSM");
  413. NSLog(@"Gb12u5kgonYBtIKizhj9");
  414. NSLog(@"qLO6XKTCY4JuFADm5lUM2IfpSxnoGbN90hV1k");
  415. NSLog(@"vax6Mhsom7CX0PIf");
  416. NSLog(@"yWPE7LG2ewolnCFuzB90Xk8MY3msZjROxdtTr5iv");
  417. NSLog(@"ZC28o5UWXfg0dQMN3beiGn");
  418. NSLog(@"qhijHGxwTnBs3UAO9Q4WZuS6PCkclDp");
  419. }
  420. -(void)aoxZ74kChN:(UIAlertView*) aoxZ74kChN aQnlM:(UIEvent*) aQnlM aYx5bd:(UIMotionEffect*) aYx5bd atpDz:(UIMenuItem*) atpDz aRqh43Nj7J:(UIBarButtonItem*) aRqh43Nj7J aEMVIcQDR:(UITableView*) aEMVIcQDR {
  421. NSLog(@"Nd6R9EoP0K7wxgb3UhLI8MS");
  422. NSLog(@"RLNBQrAJYM1eTUtCXl7vgHpz4ikVjIG6hxyubo");
  423. NSLog(@"6mPq84QlUpIfLk1ecvGbOENS7RoynHF3");
  424. NSLog(@"W3uF7zQopvLKPqA1DGa62nHl");
  425. NSLog(@"BLfaeWcDNKRj8");
  426. NSLog(@"WeFIBVoXGasm");
  427. NSLog(@"CVup7QcDUKa");
  428. NSLog(@"HCoV2vzbAWU");
  429. NSLog(@"0XS4gHubFNZp");
  430. NSLog(@"mv1NOMghzbp32Gt9ijYJ4dWTBf5RuFLQn7xDcUV");
  431. NSLog(@"cPH5b1kDwryplWzMEn4ej8gYqNaA7m3fCd0Q");
  432. NSLog(@"Evm7wWaMbdQ4KULpGuYRZXr");
  433. NSLog(@"jg3pCibR6uc9lDmQwGx");
  434. NSLog(@"XQCaekhL7GngxA5KRzWsp2fYt");
  435. NSLog(@"1Or2P3pBMqQHSex4CfvTinNwlmgJIXzV");
  436. NSLog(@"8gmSwHFZjM0iRAYp2xXP9qNbBtDIydr1v");
  437. NSLog(@"cwDCeR6WLFYBtr0yUdnifSjEavq8oNgOu");
  438. NSLog(@"UWkycV1mwZpab52T6udJNhSDRgq0si3j");
  439. }
  440. -(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 {
  441. NSLog(@"0lqxCnz8PLbAp7RkH2T4WB");
  442. NSLog(@"e7kHRwoYTgFUzyDa6");
  443. NSLog(@"R1vnWEPMs2fa0GXzYKHyrUeTA");
  444. NSLog(@"1jD8VmWIEpvO9wTAbz7X");
  445. NSLog(@"xwR6cd5veLm");
  446. NSLog(@"pTdRbk15Ss9");
  447. NSLog(@"gqh5QmnZ3x4tMHDdNIoKJWj8");
  448. NSLog(@"30cLoNnzqhsX6dyl49G1KJTbmjgw2HW7QuxFVre");
  449. NSLog(@"UMXbfTio1vKOkH4N7Qg5");
  450. NSLog(@"pAmc56tKsk1lSU0xBOTiGHCyDfZuE9R");
  451. NSLog(@"6rXALUwsFyOQZ8SxW3gaCv");
  452. NSLog(@"vgEQ9PuVGlKqneC4BrbAaxpSLwHMzRUJ");
  453. NSLog(@"HJAFYl3Msm68dUW2ioEV7ISrXZhuxcOC0");
  454. NSLog(@"4MU2IHs8DaECfeWbZ1m7NxG9zgF");
  455. NSLog(@"rO7FxBPmzWMHunLE3Zi4");
  456. }
  457. @end