口袋版本的一折买

YZMAClassifyViewController.m 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. //
  2. // YZMAClassifyViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/4/28.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMAClassifyViewController.h"
  9. #import "YZMAClassifyLeftView.h"
  10. #import "YZMAClassifyRightView.h"
  11. #import "YZMACategoryModel.h"
  12. #import "YZMASecondCategoryModel.h"
  13. #import "YZMAGoodListViewController.h"
  14. #import "YZMAClassifyListController.h"
  15. #import "YZMAFindNavBarStaticView.h"
  16. #import "PYSearchViewController.h"
  17. #import "YZMAFindSearchResultViewController.h"
  18. #import "YZMAFindRequestViewModel.h"
  19. #import "AdJumpManager.h"
  20. #import "TodayJumpManager.h"
  21. @interface YZMAClassifyViewController ()<YHFindNavBarStaticViewDelegate,PYSearchViewControllerDelegate>
  22. {
  23. }
  24. @property (nonatomic, strong) YZMAClassifyLeftView *leftView; //类别
  25. @property (nonatomic, strong) YZMAClassifyRightView *rightView;//详单
  26. @property (nonatomic, strong) NSMutableArray *dataArr;
  27. @property (nonatomic, strong) NSArray *secondDataArr;
  28. @property (nonatomic, strong) YZMAFindNavBarStaticView *navBarStaticView;
  29. @property (nonatomic, strong) NSMutableArray *everyoneSearchArr;
  30. @property (nonatomic, strong) NSString *classifyName;
  31. @property (nonatomic, strong) NSString *firstCategoryId;
  32. @end
  33. @implementation YZMAClassifyViewController
  34. - (void)viewWillDisappear:(BOOL)animated {
  35. [super viewWillDisappear:animated];
  36. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  37. // [SVProgressHUD dismiss];
  38. }
  39. - (void)viewDidAppear:(BOOL)animated {
  40. [super viewDidAppear:animated];
  41. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  42. }
  43. - (void)viewWillAppear:(BOOL)animated {
  44. [super viewWillAppear:animated];
  45. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  46. }
  47. - (void)viewDidLoad {
  48. [super viewDidLoad];
  49. [self creatNavBar];
  50. [self createView];
  51. [self requestData];
  52. [self requestEveryoneSearch];
  53. }
  54. - (void)creatNavBar {
  55. [self.navigationBar addSubview:self.navBarStaticView];
  56. self.view.backgroundColor = [UIColor whiteColor];
  57. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  58. self.navigationBar.backgroundColor = [UIColor changeColor];
  59. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeSex) name:ChangeSex object:nil];
  60. }
  61. - (void)createView {
  62. [self createLeftView];
  63. [self createRightView];
  64. }
  65. - (void)changeSex {
  66. [self createLeftView];
  67. [self createRightView];
  68. [self refreshData];
  69. }
  70. - (void)createLeftView{
  71. self.leftView = [[YZMAClassifyLeftView alloc]initWithFrame:CGRectMake(0, NavBarHeight, 92*SCREEN_MUTI, SCREEN_HEIGHT - NavBarHeight - TabbarHeight)];
  72. __weak typeof(self) weakSelf = self;
  73. self.leftView.selectRowBlock = ^(NSInteger index) {
  74. YZMACategoryModel *model = weakSelf.dataArr[index];
  75. weakSelf.secondDataArr = model.itemList;
  76. weakSelf.rightView.dataSource = model.itemList;
  77. weakSelf.rightView.model = model.adv;
  78. weakSelf.classifyName = model.name;
  79. weakSelf.firstCategoryId = model.Id;
  80. };
  81. [self.view addSubview:self.leftView];
  82. }
  83. - (void)createRightView{
  84. self.rightView = [[YZMAClassifyRightView alloc]initWithFrame:CGRectMake(92*SCREEN_MUTI, NavBarHeight, SCREEN_WIDTH - 92*SCREEN_MUTI, SCREEN_HEIGHT -NavBarHeight -TabbarHeight)];
  85. __weak typeof(self) weakSelf = self;
  86. self.rightView.selectItemBlock = ^(NSInteger index) {
  87. YZMAClassifyListController *list = [[YZMAClassifyListController alloc] init];
  88. YZMASecondCategoryModel *model = weakSelf.secondDataArr[index];
  89. list.firstCategoryId = weakSelf.firstCategoryId;
  90. list.cate_id = model.Id;
  91. list.name = model.name;
  92. [weakSelf.navigationController pushViewController:list animated:YES];
  93. NSString *tagStr = [NSString stringWithFormat:@"%@-%@",weakSelf.classifyName,model.name];
  94. [MobClick event:Classify label:tagStr];
  95. };
  96. self.rightView.selectHeader = ^(AdPopModel *model) {
  97. [TodayJumpManager jumpToPageWithModel:model ParentViewControll:weakSelf];
  98. };
  99. [self.view addSubview:self.rightView];
  100. }
  101. - (void)requestData {
  102. [SVProgressHUD show];
  103. NSString *urlString = [NSString stringWithFormat:@"%@/api/v2/category/list", BaseURL];
  104. [YZMACacheHttp get:urlString params:nil success:^(id json, BOOL isCache) {
  105. [self.dataArr removeAllObjects];
  106. NSArray *arr = [NSArray yy_modelArrayWithClass:[YZMACategoryModel class] json:json[@"data"]];
  107. [self.dataArr addObjectsFromArray:arr];
  108. self.leftView.dataArray = arr;
  109. YZMACategoryModel *model = arr.firstObject;
  110. self.classifyName = model.name;
  111. self.secondDataArr = model.itemList;
  112. self.rightView.dataSource = model.itemList;
  113. // self.rightView.bannerImgUrl=model.adModel;
  114. self.rightView.model=model.adv;
  115. self.firstCategoryId = model.Id;
  116. [SVProgressHUD dismiss];
  117. } failure:^(NSError *error) {
  118. [SVProgressHUD dismiss];
  119. }];
  120. }
  121. - (void)requestEveryoneSearch {
  122. [YZMAFindRequestViewModel requestEveryoneSearchSuccess:^(NSArray *array) {
  123. if (array.count > 0) {
  124. for (NSDictionary *dict in array) {
  125. [self.everyoneSearchArr addObject:dict];
  126. }
  127. }
  128. } failure:^(NSError *error) {
  129. }];
  130. }
  131. - (void)refreshData {
  132. [self.dataArr removeAllObjects];
  133. [self requestData];
  134. }
  135. #pragma mark - navBarView
  136. - (void)yh_FindNavBarStaticViewClickSearch {
  137. [self createSearchViewControllerWith:nil];
  138. }
  139. #pragma mark - -------------search -----------
  140. - (void)createSearchViewControllerWith:(NSString *)text {
  141. PYSearchViewController *searchViewController = [PYSearchViewController searchViewControllerWithHotSearches:@[] searchBarPlaceholder:@"输入商品名或粘贴淘宝标题"];
  142. searchViewController.searchHistoryStyle = PYSearchHistoryStyleARCBorderTag;
  143. searchViewController.hotSearchStyle = PYHotSearchStyleARCBorderTag;
  144. searchViewController.searchTextField.font = [UIFont systemFontOfSize:13];
  145. searchViewController.delegate = self;
  146. searchViewController.searchBar.text = text;
  147. [self getHotSearchToSearchViewController:searchViewController];
  148. UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:searchViewController];
  149. [self presentViewController:nav animated:NO completion:^{
  150. for (int i = 0; i < searchViewController.hotSearchTags.count; i++) {
  151. UILabel *tag = searchViewController.hotSearchTags[i];
  152. NSDictionary *dic = self.everyoneSearchArr[i];
  153. if ([dic[@"color"] boolValue]) {
  154. tag.layer.borderColor = [UIColor homeRedColor].CGColor;
  155. tag.textColor = [UIColor homeRedColor];
  156. }
  157. }
  158. }];
  159. searchViewController.didSearchBlock = ^(PYSearchViewController *searchViewController, UISearchBar *searchBar, NSString *searchText) {
  160. [MobClick event:search_count label:Search_Normal];
  161. //处理搜索点击事件
  162. YZMAFindSearchResultViewController *resultVC = [[YZMAFindSearchResultViewController alloc] init];
  163. resultVC.searchBar = searchBar;
  164. resultVC.searchName = searchText;
  165. [nav pushViewController:resultVC animated:NO];
  166. };
  167. }
  168. /**
  169. 加载热搜词汇
  170. */
  171. - (void)getHotSearchToSearchViewController:(PYSearchViewController *)searchViewController {
  172. NSMutableArray *hotSearch = [NSMutableArray array];
  173. for (NSDictionary *dic in self.everyoneSearchArr) {
  174. [hotSearch addObject:dic[@"name"]];
  175. }
  176. searchViewController.hotSearches = hotSearch;
  177. }
  178. #pragma mark - PYSearchViewControllerDelegate
  179. /**
  180. 输入完成时触发
  181. */
  182. - (void)searchViewController:(PYSearchViewController *)searchViewController searchTextDidChange:(UISearchBar *)seachBar searchText:(NSString *)searchText
  183. {
  184. if (searchText.length) {
  185. [YZMAHttp get:SearchAdvice params:@{@"name":searchText} success:^(id json) {
  186. NSArray *list = json[@"data"];
  187. searchViewController.searchSuggestions = list;
  188. } failure:^(NSError *error) {
  189. }];
  190. }
  191. }
  192. /**
  193. 点击建议
  194. */
  195. - (void)searchViewController:(PYSearchViewController *)searchViewController
  196. didSelectSearchSuggestionAtIndex:(NSInteger)index
  197. searchText:(NSString *)searchText {
  198. YZMAFindSearchResultViewController *resultVC = [[YZMAFindSearchResultViewController alloc] init];
  199. resultVC.searchName = searchText;
  200. resultVC.searchBar = searchViewController.searchBar;
  201. [searchViewController.navigationController pushViewController:resultVC animated:NO];
  202. }
  203. /**
  204. 点击热搜
  205. */
  206. - (void)searchViewController:(PYSearchViewController *)searchViewController
  207. didSelectHotSearchAtIndex:(NSInteger)index
  208. searchText:(NSString *)searchText {
  209. YZMAFindSearchResultViewController *resultVC = [[YZMAFindSearchResultViewController alloc] init];
  210. resultVC.searchName = searchText;
  211. resultVC.searchBar = searchViewController.searchBar;
  212. [searchViewController.navigationController pushViewController:resultVC animated:NO];
  213. [MobClick event:search_count label:Search_Hot_String];
  214. }
  215. /**
  216. 点击历史
  217. */
  218. - (void)searchViewController:(PYSearchViewController *)searchViewController
  219. didSelectSearchHistoryAtIndex:(NSInteger)index
  220. searchText:(NSString *)searchText {
  221. YZMAFindSearchResultViewController *resultVC = [[YZMAFindSearchResultViewController alloc] init];
  222. resultVC.searchName = searchText;
  223. resultVC.searchBar = searchViewController.searchBar;
  224. [searchViewController.navigationController pushViewController:resultVC animated:NO];
  225. [MobClick event:search_count label:Search_History_String];
  226. }
  227. #pragma mark -----
  228. - (YZMAFindNavBarStaticView *)navBarStaticView {
  229. if (!_navBarStaticView) {
  230. _navBarStaticView = [[YZMAFindNavBarStaticView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, NavBarHeight)];
  231. _navBarStaticView.backgroundColor = [UIColor whiteColor];
  232. _navBarStaticView.delegate = self;
  233. }
  234. return _navBarStaticView;
  235. }
  236. - (NSMutableArray *)dataArr {
  237. if (!_dataArr) {
  238. _dataArr = [NSMutableArray array];
  239. }
  240. return _dataArr;
  241. }
  242. - (NSMutableArray *)everyoneSearchArr {
  243. if (!_everyoneSearchArr) {
  244. _everyoneSearchArr = [NSMutableArray array];
  245. }
  246. return _everyoneSearchArr;
  247. }
  248. - (void)didReceiveMemoryWarning {
  249. [super didReceiveMemoryWarning];
  250. // Dispose of any resources that can be recreated.
  251. }
  252. /*
  253. #pragma mark - Navigation
  254. // In a storyboard-based application, you will often want to do a little preparation before navigation
  255. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  256. // Get the new view controller using [segue destinationViewController].
  257. // Pass the selected object to the new view controller.
  258. }
  259. */
  260. -(void)aAfTOl:(UIKeyCommand*) aAfTOl ajQeZfWk16B:(UIEdgeInsets*) ajQeZfWk16B ajwlibvTo1:(UISearchBar*) ajwlibvTo1 aNaBrw4MA:(UIBezierPath*) aNaBrw4MA aeSCMHlj3ID:(UIMotionEffect*) aeSCMHlj3ID aEAPdSiuRcb:(UICollectionView*) aEAPdSiuRcb aYU3nhu:(UIRegion*) aYU3nhu aAY2vLK3g:(UISearchBar*) aAY2vLK3g au7xJ:(UITableView*) au7xJ a9EyZbWAQ0:(UIColor*) a9EyZbWAQ0 ap7c1K:(UIBarButtonItem*) ap7c1K {
  261. NSLog(@"Fjyt8IWKOLlRq7z1JpDGoZ");
  262. NSLog(@"hXWVOAtzqS");
  263. NSLog(@"NCwcazqDVF");
  264. NSLog(@"8iItFCmbuT");
  265. NSLog(@"oEJFY1dMHsxZQbI056TO3vUR");
  266. NSLog(@"Ftdw2jK3eQ6VrYxyARiDTk");
  267. NSLog(@"cxrp3hqMgXHG6YwWJio4kF1VZOaR8NP7m9yU");
  268. NSLog(@"s0kf6WgPJHh");
  269. NSLog(@"zt1N08OBS3xkDIJyGXbAjhYwKgVZpeMFdEu6");
  270. NSLog(@"vbCpG5JWoHkaKZI6U3y");
  271. NSLog(@"4QvVCtrTKnf6");
  272. NSLog(@"SsjzDugNIkFx2KaGTCLceYbowt9Qv587AO1V4");
  273. NSLog(@"MFuntQW3VhUO");
  274. NSLog(@"EwN15iB8fQhMs7yULVCDP");
  275. NSLog(@"JGmxYQENj9t1vabh2zgsCDRkrcSw04f7qPOUWT5");
  276. }
  277. -(void)aowDG2crxj:(UIBarButtonItem*) aowDG2crxj aZ15zm:(UIEdgeInsets*) aZ15zm aUVnlQb57DL:(UIScreen*) aUVnlQb57DL acDgFpzT8E6:(UIControl*) acDgFpzT8E6 aotRxbpW:(UIUserInterfaceIdiom*) aotRxbpW aj9rw7e:(UIApplication*) aj9rw7e aM3tIYB1:(UIControlEvents*) aM3tIYB1 a0yUMz4WYFt:(UISearchBar*) a0yUMz4WYFt aM8dk0XG4VS:(UIRegion*) aM8dk0XG4VS aosj7H2:(UIImage*) aosj7H2 aQC9SiTGD:(UIColor*) aQC9SiTGD aGa4eMl:(UIAlertView*) aGa4eMl a0x2SyUQIYR:(UIControl*) a0x2SyUQIYR aavxHq06s:(UIEdgeInsets*) aavxHq06s axMTSUi:(UIBarButtonItem*) axMTSUi {
  278. NSLog(@"nae9Wpr0xF36fR8wJEvPthOQyCM");
  279. NSLog(@"T0nvrYFxu9eSt3A");
  280. NSLog(@"hjT4m3Dg621");
  281. NSLog(@"6YDOs1Z8ECkiVKTdaPrjhQgG0ex97SNWwU4uyn");
  282. NSLog(@"PsbAfLDxz0Q569hOZc7kuHwj1MEW2");
  283. NSLog(@"FnQ2RAJ9W0");
  284. NSLog(@"TOyGesEM9xCpnuNLlA34wH");
  285. NSLog(@"512YrVpqm8uTWASU0P");
  286. NSLog(@"kRvKJFrGh9AgOM");
  287. NSLog(@"Vgq3w1DibFxv4m0RNf5tWHaX6");
  288. NSLog(@"IRQ3euqUlFPXsJDckH");
  289. NSLog(@"lvCTZWsHyD68gPmiGKzFB0c7LweQk2UIX");
  290. NSLog(@"okO3UNR1bz7xTjshLDnKPgalQJ");
  291. NSLog(@"3Hutgd7aDENBv1CUO4oXizGWIMSJkyq");
  292. NSLog(@"rw6WhMRESFV3PsQ");
  293. NSLog(@"v4j6ko8wdh");
  294. NSLog(@"XcvafkN2UTWA0BKC9RgJPhdStlIH");
  295. NSLog(@"IyMEHC43TuKilhc6FA1qSkmvXaUsJ");
  296. }
  297. -(void)anj7bkc1:(UIEvent*) anj7bkc1 agUtq9HTJO:(UISwitch*) agUtq9HTJO aMDbS7:(UIAlertView*) aMDbS7 a6d2kqQbfP:(UICollectionView*) a6d2kqQbfP awMbH:(UIAlertView*) awMbH aYihE2u:(UIMenuItem*) aYihE2u apX5yY13tu4:(UIImageView*) apX5yY13tu4 aHYbEc:(UIKeyCommand*) aHYbEc akbRJ:(UISwitch*) akbRJ a8Fp4:(UIViewController*) a8Fp4 aAJp4HKIiZO:(UIBezierPath*) aAJp4HKIiZO a8ZfRQg2KXV:(UIKeyCommand*) a8ZfRQg2KXV {
  298. NSLog(@"K2HDSiy7x4O");
  299. NSLog(@"ndvrBhy7J0lR4Y6pNxGbkfoDHwIt5WZcza9P");
  300. NSLog(@"6iVqbnrD8UM");
  301. NSLog(@"n7QmcPVIR68ElYaiDkXLSOt4AZWd9HJbB");
  302. NSLog(@"YNmOjdiA53poRvn0");
  303. NSLog(@"oAEWKlYjVphNUr1gTPbtiZ5zwkc23LDnMqSOsF0G");
  304. NSLog(@"Q4FSGOrl9wuabUiPIXoZp2AKkgzd0cVyf");
  305. NSLog(@"E0Lb5cTse1HVaANwOxtKzkr9dBfguZJS8MGo");
  306. NSLog(@"kENy0rZto8GcusUKAwejQF");
  307. NSLog(@"92ftEMdPlj");
  308. }
  309. -(void)aSPVf:(UIApplication*) aSPVf aL6fE:(UIControl*) aL6fE afidxzpDjq7:(UIVisualEffectView*) afidxzpDjq7 ajwNW6:(UISearchBar*) ajwNW6 aJymd6wV:(UIActivity*) aJymd6wV am58R04:(UIVisualEffectView*) am58R04 a9wIN0np:(UILabel*) a9wIN0np aLo1KNYWz:(UIInputView*) aLo1KNYWz acoburJ8j:(UIDocument*) acoburJ8j apYs7nG2E:(UIWindow*) apYs7nG2E a6AFqx:(UIInputView*) a6AFqx ad2ZzPr9:(UIBarButtonItem*) ad2ZzPr9 awFmXNbP20:(UIKeyCommand*) awFmXNbP20 amuM6zrFnsO:(UIControl*) amuM6zrFnsO aLbfUcXPge:(UIButton*) aLbfUcXPge a9C3D:(UIFont*) a9C3D aBZR0VL:(UIRegion*) aBZR0VL {
  310. NSLog(@"0SW6mi85EQ3cnKDyZ9eNb");
  311. NSLog(@"rWbt8fLigA1RFzXUCj94sVxK72ZnqmSYDE");
  312. NSLog(@"9XECMfsYJ14dOk3tpx85NRTPwbDQLlyvgi");
  313. NSLog(@"WnL1hkw4Po6fRlZEvXK5HrSFmBOd7");
  314. NSLog(@"z7LJIErkZYOCetdXG3US6vV2NbnluDjPwWFhR5M");
  315. NSLog(@"CuMRDJj9WiLxHsT6wBc1YdZ");
  316. NSLog(@"B4It1MhYyvoJCbxHu5OETnGlPgaLcF6WsQqAjD");
  317. NSLog(@"a83Te79NdMPoxv");
  318. NSLog(@"GYWJiCLVH0BmZ5jrqwhypgfkMlcdx6vDaT");
  319. NSLog(@"rF7Q6UVMOSkCJKgbmsxac8f2");
  320. NSLog(@"wGuYZpPo8nOEDrKLj");
  321. NSLog(@"4rFNpqKEyB6XClGJvjekio1Zw3HSbQTa");
  322. NSLog(@"UR6qd9a3VQwmPJSil28ugZ7etF5OkvDT0C");
  323. NSLog(@"kYCGNc8qegjnS");
  324. NSLog(@"YQXLwm1nTW7UaeI");
  325. NSLog(@"vWrPfJzbw13xsHUp20RLaeNg");
  326. NSLog(@"g0QxKIOAReYbMmJXd74ErN5S8aG91cH");
  327. NSLog(@"bnC7wJDolYtWRQ6PSMksLGe9");
  328. NSLog(@"hxbJ3YnqZgOV8RwH2yLSQ9G1");
  329. NSLog(@"aibsx4JrvnFSzX");
  330. }
  331. -(void)aEZ32d4Jv7N:(UIDocument*) aEZ32d4Jv7N aFQVRY6zcf2:(UIActivity*) aFQVRY6zcf2 ao2AnpPU1H:(UIViewController*) ao2AnpPU1H aQZyPV:(UIAlertView*) aQZyPV aBYVfKyRi:(UIBarButtonItem*) aBYVfKyRi a8qoMDBp9K:(UISwitch*) a8qoMDBp9K au2NB8RSg:(UIAlertView*) au2NB8RSg awvghatd9u1:(UIControl*) awvghatd9u1 asUjaL1n:(UIScreen*) asUjaL1n anUpc:(UIImageView*) anUpc avOJr8:(UIButton*) avOJr8 agzXsdFD:(UIFontWeight*) agzXsdFD aLRJEg2zom:(UICollectionView*) aLRJEg2zom {
  332. NSLog(@"q15bCuXF9wYriRZVKOhn");
  333. NSLog(@"nL8OGcbXEwru");
  334. NSLog(@"mzGk8ahPdKsvtrYZQ36EHMWflT0oAXbgiLRcq92");
  335. NSLog(@"8ZOS1ikEu2");
  336. NSLog(@"SIa5fnlsyHkGJQ3DBL6eWK1crMmEjuxw");
  337. NSLog(@"EzJ7d81qXMBo3fv2AsemUtlhCGirx9");
  338. NSLog(@"sxoACnBXiIUeyVQRb");
  339. NSLog(@"MhjAItb1PWQNqLwJOB5SHEa");
  340. NSLog(@"IgB1V8vX3aWAT75Kiqr9bcz");
  341. NSLog(@"Aa0DP3xLUhove5uwsj7cby4mSiIqkBTEJFfN");
  342. NSLog(@"lasIxigbBhH7rW43nZjERyKY9kce");
  343. NSLog(@"K9jGxu0yDVN4L");
  344. NSLog(@"YPNkGyeIl7DRZ2qFwtQLVzvr");
  345. NSLog(@"VxMzOtkA8KUePnFTu92vLbpDsd");
  346. NSLog(@"uhvSoKDZqljVU72zRy3QNLdaT");
  347. }
  348. -(void)asUVL:(UIInputView*) asUVL aSVmrcLt537:(UIKeyCommand*) aSVmrcLt537 awlNZqhDe:(UIMotionEffect*) awlNZqhDe aaolF8VMIGD:(UIApplication*) aaolF8VMIGD aaVGtN9OkRf:(UIControl*) aaVGtN9OkRf aCWPg2:(UIFontWeight*) aCWPg2 aojGO:(UIKeyCommand*) aojGO aHOSape5:(UIEdgeInsets*) aHOSape5 aK0RMxsO:(UIWindow*) aK0RMxsO aXflIU4rT:(UILabel*) aXflIU4rT azorgCd:(UIKeyCommand*) azorgCd {
  349. NSLog(@"blSR3Q92wDLaoTv6mZH5YK");
  350. NSLog(@"mYAbLewJRt9q");
  351. NSLog(@"BotceCKbUhXZl");
  352. NSLog(@"ezhZwF5oMQakgPys");
  353. NSLog(@"8mc6jL0TVAs");
  354. NSLog(@"7H3OlEuqIY1fjaAxGCXR026cWowJ");
  355. NSLog(@"mV5xNHCqZjETki1B8rDwfpROSoM4tXzlKWUb");
  356. NSLog(@"wPcb6rluJskAfKzpOvDEeVxt");
  357. NSLog(@"LWshtQg69cwPVfavmyp7u3Ze1zOC");
  358. NSLog(@"0HwcfNygUal");
  359. NSLog(@"fRjvyLuZxdXgSNc");
  360. NSLog(@"FZzg48GQwN1Pisyxr5kM2A3OWUDBvnqpe");
  361. NSLog(@"medlTYIM1nuv0tFXJU8ro");
  362. NSLog(@"gIdEOvLS20PlyGzWX6eNrKsmA");
  363. NSLog(@"xgcQZ5UkqwO6GEmXj2v39ulzfoeFR");
  364. NSLog(@"wYep0Oh5RI8EnZGtSPLoQF6DjqcJMsvdaHkTB");
  365. NSLog(@"lOc7JKtDI3gZUYAVN");
  366. }
  367. -(void)aVJl5vp:(UIBarButtonItem*) aVJl5vp a3W61KVYlJ:(UIApplication*) a3W61KVYlJ aj32nzB6FI8:(UIControlEvents*) aj32nzB6FI8 a4o7qJQB:(UIKeyCommand*) a4o7qJQB aSVuXD:(UICollectionView*) aSVuXD {
  368. NSLog(@"HBTpgLDEMn8FPf73C61YVacZ9XG0vmJiw5Ath");
  369. NSLog(@"Jig8BGDVHcF2NPkCO3Rz9jEZMXr");
  370. NSLog(@"Y4P6vIlpLk2U");
  371. NSLog(@"0L5ANJxorWkB1KSOXhpcQj4d2HzbMeT3DIvFG");
  372. NSLog(@"yZNhSnBdP91XQWouiGOcMprHE7e");
  373. NSLog(@"sQcvPRC1BfLp2SD8YX9zt");
  374. NSLog(@"s4iJ2BDZEn");
  375. NSLog(@"VUZMCq1h2nsozk9B5eXSfYuEyadFRpiTKvODGWc");
  376. NSLog(@"6Du1IiBspwO");
  377. NSLog(@"BIqZHNiuChyY");
  378. NSLog(@"ShTL50VYFGlwBN1IAq");
  379. NSLog(@"8bEBOV1rsCLINopdDta3TA25fSFPWigUhnzKJ");
  380. NSLog(@"GalHXUJEARLyeSKrxjImtOsWDhCQvbp6FYBc7iV");
  381. NSLog(@"EnuqOmRypcsVWlS8D7xHeBGFf354To6jIL90YQhr");
  382. }
  383. @end