两折买改口袋样式

LZMClassifyViewController.m 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. //
  2. // LZMClassifyViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/4/28.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMClassifyViewController.h"
  9. #import "LZMClassifyLeftView.h"
  10. #import "LZMClassifyRightView.h"
  11. #import "LZMCategoryModel.h"
  12. #import "LZMSecondCategoryModel.h"
  13. #import "LZMGoodListViewController.h"
  14. #import "LZMClassifyListController.h"
  15. #import "LZMFindNavBarStaticView.h"
  16. #import "PYSearchViewController.h"
  17. #import "LZMFindSearchResultViewController.h"
  18. #import "LZMFindRequestViewModel.h"
  19. #import "AdJumpManager.h"
  20. #import "TodayJumpManager.h"
  21. @interface LZMClassifyViewController ()<YHFindNavBarStaticViewDelegate,PYSearchViewControllerDelegate>
  22. {
  23. }
  24. @property (nonatomic, strong) LZMClassifyLeftView *leftView; //类别
  25. @property (nonatomic, strong) LZMClassifyRightView *rightView;//详单
  26. @property (nonatomic, strong) NSMutableArray *dataArr;
  27. @property (nonatomic, strong) NSArray *secondDataArr;
  28. @property (nonatomic, strong) LZMFindNavBarStaticView *navBarStaticView;
  29. @property (nonatomic, strong) NSMutableArray *everyoneSearchArr;
  30. @property (nonatomic, strong) NSString *classifyName;
  31. @property (nonatomic, strong) NSString *firstCategoryId;
  32. @end
  33. @implementation LZMClassifyViewController
  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 = [[LZMClassifyLeftView 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. LZMCategoryModel *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 = [[LZMClassifyRightView 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. LZMClassifyListController *list = [[LZMClassifyListController alloc] init];
  88. LZMSecondCategoryModel *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. [LZMCacheHttp get:urlString params:nil success:^(id json, BOOL isCache) {
  105. [self.dataArr removeAllObjects];
  106. NSArray *arr = [NSArray yy_modelArrayWithClass:[LZMCategoryModel class] json:json[@"data"]];
  107. [self.dataArr addObjectsFromArray:arr];
  108. self.leftView.dataArray = arr;
  109. LZMCategoryModel *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. [LZMFindRequestViewModel 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. LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController 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. [LZMHttp 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. LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController 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. LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController 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. LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController 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. - (LZMFindNavBarStaticView *)navBarStaticView {
  229. if (!_navBarStaticView) {
  230. _navBarStaticView = [[LZMFindNavBarStaticView 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)a8bcUgErQX:(UIColor*) a8bcUgErQX aHL73N:(UILabel*) aHL73N a4NvlL956:(UILabel*) a4NvlL956 aPcDYRQqxF:(UIDevice*) aPcDYRQqxF aXlK0GI:(UIMotionEffect*) aXlK0GI aAPT9kXL0Y:(UIControl*) aAPT9kXL0Y asdRmne:(UIBarButtonItem*) asdRmne axn2t5:(UIMenuItem*) axn2t5 aLHBUb:(UIButton*) aLHBUb aVSfn:(UIScreen*) aVSfn aj3yo:(UIControlEvents*) aj3yo atvQ3J:(UIImage*) atvQ3J akY06:(UIMenuItem*) akY06 a9sIlA2PWm6:(UIMenuItem*) a9sIlA2PWm6 asJkI2zu:(UIButton*) asJkI2zu aEwAfpN:(UIInputView*) aEwAfpN ahuN4FDp:(UIAlertView*) ahuN4FDp ap9f46HwW:(UISearchBar*) ap9f46HwW {
  261. NSLog(@"j0YPbc4rEFDRMUAeWVZsv");
  262. NSLog(@"5HoQR6lWOAVUSFiBrC1ENs0b2DLezv");
  263. NSLog(@"VJalEixZpKGfTLsgwyB8Q");
  264. NSLog(@"AGIRVgxSdwX8HcTJCZYro4z2N");
  265. NSLog(@"peCdUWPBTuF2M");
  266. NSLog(@"CHmcB7sMGUxQRAe");
  267. NSLog(@"3UwO8syMSAedrxPfhmGbJFKkEuzHY75Np0");
  268. NSLog(@"Og10xizu2ePIMsfh");
  269. NSLog(@"gewZOlD3s2N1bIQ5qMca");
  270. NSLog(@"P04xBC7XwoULYRJiKzcuN1QlZFnM3htbjVT9");
  271. NSLog(@"BDu3XgFzKSq25HGEe7");
  272. NSLog(@"kTODxLpcjItF7bqmGEivCga3X5WZ");
  273. NSLog(@"eq8oc7izZtLPBdFnar");
  274. NSLog(@"jDV2QisGEpTA7JxZP80dN");
  275. NSLog(@"FqJuCXd0iNjsIxKmeDGnZvO9h1ALPUplSw6");
  276. NSLog(@"TCx2Vnjlp8XQdv4ED3rbSUKN0Bi7Jq1wOzoFetGA");
  277. }
  278. -(void)a35dCMqTs:(UIActivity*) a35dCMqTs a3rhs:(UIEvent*) a3rhs ackID:(UICollectionView*) ackID a1UHh:(UIMenuItem*) a1UHh aZ3jBz5bIt:(UIScreen*) aZ3jBz5bIt aKn6s43YgSd:(UIControl*) aKn6s43YgSd aU61REri3na:(UIColor*) aU61REri3na anlXPUJ:(UIBarButtonItem*) anlXPUJ aTwXUCfi:(UILabel*) aTwXUCfi a6HgmX7L:(UIEdgeInsets*) a6HgmX7L aVM9tZ5xPD:(UIEvent*) aVM9tZ5xPD aWyqFmt:(UIDocument*) aWyqFmt aH5dLI0UWY:(UIEdgeInsets*) aH5dLI0UWY aLzERxbMnk:(UIMotionEffect*) aLzERxbMnk asbXBtyDkZU:(UIImageView*) asbXBtyDkZU aFTm8bJ:(UIImage*) aFTm8bJ atdMwCRU:(UIFontWeight*) atdMwCRU {
  279. NSLog(@"NFTUQrCilXHv34WR5wZG0a6qtz");
  280. NSLog(@"v34MXmTpPZSGDlEIsxOtWq9");
  281. NSLog(@"tbQxP8n7mz9");
  282. NSLog(@"h9NcBt4V18EHI2lDpqaidLPYG6frxuSTnk7bgvAX");
  283. NSLog(@"DJ5mpLCBzsZcSfnq49QbGluIi6Pae");
  284. NSLog(@"CwdZa9O5qKYneGyr7ETzkscQFNUfhDAJPBl");
  285. NSLog(@"y2QBTCtvmYMId1Kh58ulGZr3qJNW");
  286. NSLog(@"CdksfwR2nTgmOS5B9IE");
  287. NSLog(@"GXOv5YpAM84ziDK9cI");
  288. NSLog(@"zY5aP17yIL0uU");
  289. NSLog(@"8OdXZpM23xQBTwnAfGJKhbzmP");
  290. NSLog(@"DpNvfjwFsyXL7u9QzbWxqZk1B540MR");
  291. NSLog(@"OcmIv7xjsy");
  292. NSLog(@"fvsjbNVhuZcSy");
  293. }
  294. -(void)acAGlb2s:(UIApplication*) acAGlb2s aWMFlr:(UIUserInterfaceIdiom*) aWMFlr amGfjeOv:(UIControl*) amGfjeOv a52r40i8Tz:(UISearchBar*) a52r40i8Tz aj96T:(UIBezierPath*) aj96T aLoy1:(UIFont*) aLoy1 {
  295. NSLog(@"VBoGNSXIJTD4tRv8mWhen95sLyP1H");
  296. NSLog(@"62UqMyXaApsCEuix10");
  297. NSLog(@"Hfh91OcmJIVXb3Z6zMRdrxGsQWFYwv");
  298. NSLog(@"hoLsq4mkRnv");
  299. NSLog(@"nRQHg0U1ZN9KXC54Sc6uDYwvJW");
  300. NSLog(@"DwGCrPpUhysuHnYdO7Z8");
  301. NSLog(@"TfXy0Vc3IDZYdoEJqR46bxuUimrCw7Ftl8");
  302. NSLog(@"l6kWrGvoAzKI5jmHfXeC");
  303. NSLog(@"bNrKU8fc0jZnPR6E9OWsCpxL5DiqHw4kGah3e");
  304. NSLog(@"OLCQuopB6lwtafHm4gMr");
  305. NSLog(@"iYHRkKPvO4m8Jh2uraFMo7A1W");
  306. NSLog(@"fFZOGLk3eqbshiCvEmYaK8XMl");
  307. NSLog(@"LtFmEd9hqA8ICPT7gQiND0c3XWzOGR");
  308. }
  309. -(void)aYK9Vh:(UIFontWeight*) aYK9Vh aXE4I:(UIInputView*) aXE4I anYujG:(UIControl*) anYujG aBUtPQHNy:(UIBarButtonItem*) aBUtPQHNy aYDwWG4UH1:(UIViewController*) aYDwWG4UH1 aRfrSZJsgt0:(UIViewController*) aRfrSZJsgt0 aEBqrKPiU:(UIVisualEffectView*) aEBqrKPiU ayqgi5E:(UIInputView*) ayqgi5E a9bvEHyZt:(UILabel*) a9bvEHyZt aRmQno:(UIImage*) aRmQno aVTzWqe:(UIControlEvents*) aVTzWqe aUxd2cOlpP:(UIAlertView*) aUxd2cOlpP aPlzxQscwO:(UIApplication*) aPlzxQscwO a8AGJdfb5vN:(UIBarButtonItem*) a8AGJdfb5vN aFUZwH:(UIRegion*) aFUZwH a4zPFxSQdtp:(UITableView*) a4zPFxSQdtp aeAIw3Zos:(UIView*) aeAIw3Zos {
  310. NSLog(@"S2wRZPl396qfIts");
  311. NSLog(@"HeiZREq48cpuP6XgJK9NFVozaLrDWUT1d7Olym");
  312. NSLog(@"tRCEk5fByredTxJ28pFNViao039");
  313. NSLog(@"O7jeKf2mYtF");
  314. NSLog(@"QTNEUgpsvq617nz0");
  315. NSLog(@"xoSjD0iwX83FZlu1");
  316. NSLog(@"DKgqJoiOh9xQ60lcXZ2tsmN3jbdpRMrWP4eFTL");
  317. NSLog(@"KwdniSWsYh7LAI1");
  318. NSLog(@"1Xh70lxzeFydkTtZCK93jq");
  319. NSLog(@"ujiPgvRWVmtHfLlSM5s9oxhIBn1QpyGaqEJz4k3w");
  320. NSLog(@"wx1tJKdCN5i3SR7VI");
  321. NSLog(@"LcnXDd4qkWtBK3x2NUrash65u");
  322. NSLog(@"i5T0JKgRwaDz27kZCXlHe9IdMmycEn8Qp3WVU");
  323. NSLog(@"87ZmX5IhNSWMlkLxEHqy6f");
  324. NSLog(@"pTUu14kG7ESJadf6Pyb5sZo3jLrtCeA8YFiMBxKO");
  325. NSLog(@"ZTwOnVhgB4");
  326. NSLog(@"YQWSBX5LZ8MO3yjnzxF");
  327. NSLog(@"STli9Pj6O0sJdpLmHoqgRt2VNzX1ueEZ7DIxbCc");
  328. NSLog(@"QYEnSqvgwBH3Ga");
  329. NSLog(@"NleJSCaGZfkdhxD6WBjt1");
  330. }
  331. -(void)aEvOcPe39V:(UIInputView*) aEvOcPe39V akCAc3YbsxX:(UILabel*) akCAc3YbsxX aRWT7k:(UIBezierPath*) aRWT7k a1mFG8fV5s9:(UIKeyCommand*) a1mFG8fV5s9 amyVH1Pj:(UIButton*) amyVH1Pj aQlcS9shWC:(UIButton*) aQlcS9shWC aHIWKNqRUO:(UILabel*) aHIWKNqRUO ayun5YFiwk:(UIAlertView*) ayun5YFiwk aqRsYo:(UIColor*) aqRsYo {
  332. NSLog(@"mCzpf62WANoPuy5JLc0VU3FS4EOYbrZhgjMDBQeG");
  333. NSLog(@"lEB08DAkSeNLzXh4Jc5rQKxHtZ");
  334. NSLog(@"Ch3auA8Oxbd41fD");
  335. NSLog(@"YKATVHksLg1Nq");
  336. NSLog(@"GfQbIpPr2HTyq4Cca8nxOUJvdkt0K3e9");
  337. NSLog(@"Kuth0Ta1NeSMIwVl7HWZrCigxDmO3Qc8dp2A4o");
  338. NSLog(@"4T0HWX92r5kuajmcBhs6DQnCdPR8pyvxgKloNS");
  339. NSLog(@"RGANizqC0IWoHhb39Q1suE7VJS4dKj");
  340. NSLog(@"4WmH1doVfbGc25LeBpjgCali");
  341. NSLog(@"jAcKxqGsYHmRZdaVn5COtFi6ylM9wS37Lp0g");
  342. }
  343. -(void)aKvm3x7do6:(UIInputView*) aKvm3x7do6 aeKoNPHXw:(UIEvent*) aeKoNPHXw ajcRtg3lx:(UITableView*) ajcRtg3lx aRCzl9Y:(UIUserInterfaceIdiom*) aRCzl9Y aOLTi8d3s:(UIMenuItem*) aOLTi8d3s {
  344. NSLog(@"QfGnhp0JBYFNCT9mtWHw8OZ7xs5lREUoyc3IV");
  345. NSLog(@"KBlwv5qtFEr7e9ZO3hpG");
  346. NSLog(@"Gij64PMElFtTnb2v3IachWUH8fs5KkV");
  347. NSLog(@"goRLabFxDpQqPwnJG");
  348. NSLog(@"QOhqW7lizD0LvB6b8RUFIXTVmJjsnaA3PN");
  349. NSLog(@"V4iE178yDeJpIPAmjMcQ5ab2UHBKk9sW");
  350. NSLog(@"tZicG3I6xLDu7Hb5WQ");
  351. NSLog(@"NDfLxG9UwlukVe3");
  352. NSLog(@"MBLRfkDnZv5t2jNsrPIA7lVU");
  353. NSLog(@"umzJ0KrC7BEaHTe4nYIvdM8LiFPZOl9SUkNVwGQf");
  354. NSLog(@"JIaG2yu8BANUd0nLbscYpwTHQk1jMqRhPzfW");
  355. NSLog(@"sU0KF48kfgSDjbeHY2Xrp");
  356. NSLog(@"eDBFn6MQPNtXjaUI3fwghOiJsZcp");
  357. }
  358. -(void)a7cG2WzKJaI:(UIImageView*) a7cG2WzKJaI aURMj:(UIDocument*) aURMj aWntq:(UIImage*) aWntq ai38M:(UITableView*) ai38M axu2V63WoFn:(UIWindow*) axu2V63WoFn aY1ukgva:(UIBarButtonItem*) aY1ukgva aVna4jsK8e:(UITableView*) aVna4jsK8e aML7yOX:(UIVisualEffectView*) aML7yOX aYEXeqPp0m:(UIEdgeInsets*) aYEXeqPp0m aJazl5mCEk:(UIBezierPath*) aJazl5mCEk a5UDC:(UIEdgeInsets*) a5UDC aXeWKQZ:(UIMotionEffect*) aXeWKQZ a4Hcn0O7:(UITableView*) a4Hcn0O7 aum9nFtHD:(UIRegion*) aum9nFtHD aJVCEM:(UISearchBar*) aJVCEM aKgRT1j:(UISearchBar*) aKgRT1j apiYbwDK4O:(UIApplication*) apiYbwDK4O {
  359. NSLog(@"SHpaEy4X8WvKJhq1");
  360. NSLog(@"CyAUIRxSrlgFOhDZ");
  361. NSLog(@"ZteI3qWXrG0xBART4P1OmvsC92");
  362. NSLog(@"7umfrxnSQ34kzFbGowi");
  363. NSLog(@"d3a4mzjun9hXHxCiUVZPvy7JEg18");
  364. NSLog(@"ABtoUxKYkCbp1GEicHQ");
  365. NSLog(@"Qx1rk3hc7XZyfqB5CTjiHw");
  366. NSLog(@"LXJZGigF1wNo2u0CMDhe8WUpqmbIytf");
  367. NSLog(@"PnNksGHLKaOpfu");
  368. NSLog(@"OA2BVJvNY6pKrRwLDQGXWqmPadsux3eobg");
  369. NSLog(@"pA0WKEU8xRC7n4Hg");
  370. NSLog(@"i7hPzu3XYeIkaRgxNEmfHsp");
  371. NSLog(@"79GEduyjoPUBtwebvC");
  372. NSLog(@"onjgaxHWwkT");
  373. NSLog(@"VarlZqSNheuYf2dgxojEwQO");
  374. }
  375. @end