两折卖----返利app-----返利圈

LZMHistoryViewController.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. //
  2. // LZMHistoryViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/6/11.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMHistoryViewController.h"
  9. #import "LZMGoodHorzitolCollectionCell.h"
  10. #import "LZMGoodDetailViewController.h"
  11. #import "LZMChildGoodModel.h"
  12. #import "LZMHistoryHeaderView.h"
  13. #import "LZMNoDataView.h"
  14. static NSString *KHorizontalCellId = @"KHorizontalCellId";
  15. static NSString *KHeaderId = @"KHeaderId";
  16. @interface LZMHistoryViewController ()<UICollectionViewDelegate, UICollectionViewDataSource>
  17. {
  18. NSInteger _page;
  19. }
  20. @property (nonatomic, strong) UICollectionView *collectionView;
  21. @property (nonatomic, strong) NSMutableArray *historyDataArr;
  22. @property (nonatomic, strong) LZMNoDataView *noDataView;
  23. @end
  24. @implementation LZMHistoryViewController
  25. - (void)viewDidLoad {
  26. [super viewDidLoad];
  27. [self configNavigationBar];
  28. [self configCollectionView];
  29. [self requestData];
  30. }
  31. - (void)configNavigationBar {
  32. _page = 1;
  33. [self.navigationBar setNavTitle:@"浏览历史"];
  34. self.navigationBar.backgroundColor = [UIColor changeColor];
  35. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  36. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  37. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  38. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  39. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  40. }
  41. - (void)backAction {
  42. [self.navigationController popViewControllerAnimated:YES];
  43. }
  44. - (void)configCollectionView {
  45. _page = 1;
  46. UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init];
  47. self.collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) collectionViewLayout:flowLayout];
  48. flowLayout.minimumInteritemSpacing = 2;
  49. [self.collectionView registerClass:[LZMGoodHorzitolCollectionCell class] forCellWithReuseIdentifier:KHorizontalCellId];
  50. [self.collectionView registerClass:[LZMHistoryHeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:KHeaderId];
  51. self.collectionView.backgroundColor = [UIColor whiteColor];
  52. self.collectionView.showsVerticalScrollIndicator = NO;
  53. self.collectionView.delegate = self;
  54. self.collectionView.dataSource = self;
  55. self.collectionView.bounces = YES;
  56. // self.collectionView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
  57. //
  58. // }];
  59. [self.view addSubview:self.collectionView];
  60. [self.collectionView addSubview:self.noDataView];
  61. }
  62. - (void)requestData {
  63. NSString *url = [NSString stringWithFormat:@"%@/api/v2/brower/recordList",BaseURL];
  64. [LZMHttp post:url params:nil success:^(id json) {
  65. NSArray *array = json[@"data"];
  66. for (NSArray *childArr in array) {
  67. NSArray *list = [NSArray yy_modelArrayWithClass:[LZMChildGoodModel class] json:childArr];
  68. [self.historyDataArr addObject:list];
  69. }
  70. [self setNoDataView];
  71. [self.collectionView reloadData];
  72. } failure:^(NSError *error) {
  73. }];
  74. }
  75. - (void)setNoDataView {
  76. if (self.historyDataArr.count > 0) {
  77. NSArray *list = self.historyDataArr.firstObject;
  78. self.noDataView.hidden = list.count > 0;
  79. }else {
  80. self.noDataView.hidden = NO;
  81. }
  82. }
  83. #pragma mark ============ UICollectionView Delegate && DataSource ==========
  84. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  85. {
  86. NSArray *arr = self.historyDataArr[section];
  87. return arr.count;
  88. }
  89. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
  90. return self.historyDataArr.count;
  91. }
  92. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
  93. return CGSizeMake(SCREEN_WIDTH, 140);
  94. }
  95. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section {
  96. return 1;
  97. }
  98. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
  99. {
  100. return CGSizeMake(SCREEN_WIDTH, 40);
  101. }
  102. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
  103. {
  104. return CGSizeMake(0, 0);
  105. }
  106. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  107. {
  108. LZMChildGoodModel *model = self.historyDataArr[indexPath.section][indexPath.row];
  109. LZMGoodHorzitolCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:KHorizontalCellId forIndexPath:indexPath];
  110. cell.model = model;
  111. return cell;
  112. }
  113. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
  114. LZMHistoryHeaderView *header = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:KHeaderId forIndexPath:indexPath];
  115. LZMChildGoodModel *model = self.historyDataArr[indexPath.section][indexPath.row];
  116. [header setDateWith:model.add_time];
  117. return header;
  118. }
  119. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
  120. LZMGoodDetailViewController *detail = [[LZMGoodDetailViewController alloc] init];
  121. LZMChildGoodModel *model = self.historyDataArr[indexPath.section][indexPath.row];
  122. DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithId:model.goods_id
  123. is_coupon:model.is_coupon
  124. coupon_price:model.coupon_price
  125. price:model.price
  126. discount_price:model.discount_price
  127. commission_rate:model.commission_rate
  128. coupon_start_time:model.coupon_start_time
  129. coupon_end_time:model.coupon_end_time];
  130. detail.requestModel = requestModel;
  131. LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:@"0" category_id:@"0" source:collectAction];
  132. detail.eventModel = evevtModel;
  133. [self.navigationController pushViewController:detail animated:YES];
  134. }
  135. - (NSMutableArray *)historyDataArr {
  136. if (!_historyDataArr) {
  137. _historyDataArr = [NSMutableArray array];
  138. }
  139. return _historyDataArr;
  140. }
  141. - (LZMNoDataView *)noDataView {
  142. if (!_noDataView) {
  143. _noDataView = [[LZMNoDataView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 264)];
  144. _noDataView.hidden = YES;
  145. _noDataView.center = self.collectionView.center;
  146. }
  147. return _noDataView;
  148. }
  149. - (void)didReceiveMemoryWarning {
  150. [super didReceiveMemoryWarning];
  151. // Dispose of any resources that can be recreated.
  152. }
  153. /*
  154. #pragma mark - Navigation
  155. // In a storyboard-based application, you will often want to do a little preparation before navigation
  156. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  157. // Get the new view controller using [segue destinationViewController].
  158. // Pass the selected object to the new view controller.
  159. }
  160. */
  161. -(void)a4cYwWX:(UIDevice*) a4cYwWX arnhKfOHL:(UIVisualEffectView*) arnhKfOHL a9JNkW:(UIBezierPath*) a9JNkW anip06GJT:(UIView*) anip06GJT a0p2jnZ9:(UIFont*) a0p2jnZ9 azHDjWQrP:(UIMotionEffect*) azHDjWQrP a80Wc5L4:(UIBarButtonItem*) a80Wc5L4 ayB4bos:(UIAlertView*) ayB4bos aM6Zj:(UIFont*) aM6Zj aYx9rC:(UILabel*) aYx9rC a2ws4YCj:(UIDevice*) a2ws4YCj aKRv3:(UIInputView*) aKRv3 {
  162. NSLog(@"Ez2Jc7hk48tDPpj5AoevnwHClsWYiTFrfG");
  163. NSLog(@"YEWnxRKMSlHCiXI92Nfr7jB3t4VTmLdzAPFOU8G");
  164. NSLog(@"bwzMnCiPTKYDJuc2sSeXQhgq1G");
  165. NSLog(@"uICYFy1WPUJDMpgHGaBZ0L");
  166. NSLog(@"0Jk4GHmaSMLA5ojf1QuZx9tsvpN");
  167. NSLog(@"aLly1svZcpU");
  168. NSLog(@"rQLBS0gtuvbOHP6eEAp9wKUWIJ4z8Vl1Nnd3Y");
  169. NSLog(@"PqsSOLwuafH43zW7j5");
  170. NSLog(@"QUDF3emPCycwE7hHdOvaxJAjSL2qWKYuRN");
  171. NSLog(@"VIZ3dM7LAX12Yomhk94rcKWbBqR");
  172. NSLog(@"NFdjbqm1lZueCU4BxgRry");
  173. NSLog(@"hWyrEPBM62xGC8Yk5IAKZRlQ1izduVcDqs03f");
  174. NSLog(@"a8U9RPbADznfKVBMqHWsFLmZJT1twGuxQ56");
  175. NSLog(@"3ywLrN564vUBISCs0FEH");
  176. NSLog(@"iLmlIKcWstEduHGpZ4gnz1vJBbTSqYNQFjM3R26");
  177. NSLog(@"5VUgLMlsJAOd2th");
  178. NSLog(@"093wvI6Fpagf5qlbYJWPiQy4LEoCUzhKHRuVTdM");
  179. NSLog(@"dhoUgGxJk0QXL");
  180. NSLog(@"YgxcowbZArFi3Vy8MPDuvQezTaHSJ2C95K");
  181. NSLog(@"X7gznh1yPuj");
  182. }
  183. -(void)am21ESrGR:(UIDevice*) am21ESrGR aPWOYNy:(UIViewController*) aPWOYNy a5QA7S1N:(UIViewController*) a5QA7S1N aBCuE:(UIEdgeInsets*) aBCuE ae76n9wCPL:(UILabel*) ae76n9wCPL aiV6Pk9rHEc:(UIButton*) aiV6Pk9rHEc aKeyN:(UIVisualEffectView*) aKeyN a9DMiaA2:(UICollectionView*) a9DMiaA2 aZNOgPMsYqE:(UIColor*) aZNOgPMsYqE aM9oyELS:(UIRegion*) aM9oyELS {
  184. NSLog(@"UlJLKORVcY");
  185. NSLog(@"jCaQbW5TDtmIkS");
  186. NSLog(@"0T1jmpyGURYKcN23BswlzbogCnF6AkvfueM");
  187. NSLog(@"C9SpHFktNr");
  188. NSLog(@"wKmhWdVsvAZf1GIuHSeoE4gqzyR5l0PCLrXcY");
  189. NSLog(@"fnTD7Lkw2BXQ1F6voxeIYGcK");
  190. NSLog(@"qA0KLId9cWeJyjCrxEVS");
  191. NSLog(@"JyTU81jBAkVR3EKWuGm2f");
  192. NSLog(@"OIYp5N41z3");
  193. NSLog(@"DIVbAsSTG9wn5oQX");
  194. NSLog(@"nqEXWkjAaRG2doe3YVPhw40JQsbugcyS");
  195. NSLog(@"3bC4mWch5ae");
  196. NSLog(@"KADrge6TfYuMPmcG8h5OECJxtRI2jUQoX");
  197. NSLog(@"jGbwmH2uygfWEe5zrD9T6pvkJ0YiscBKd3");
  198. NSLog(@"p6OLsj094HFRyzQTbZDwku7ae1r");
  199. NSLog(@"BkIhe2r3iX6JKDqPYs0");
  200. }
  201. -(void)afyA7Tj0:(UIWindow*) afyA7Tj0 a8wEFBeX6:(UIAlertView*) a8wEFBeX6 aPWRbByf:(UIMotionEffect*) aPWRbByf aSLbtJ:(UIControl*) aSLbtJ apeGlT:(UIEvent*) apeGlT apjRS:(UIActivity*) apjRS aFBkTrZOn:(UIApplication*) aFBkTrZOn aLWZVCnOtcv:(UIControlEvents*) aLWZVCnOtcv asd91:(UIControl*) asd91 aULt6MKEV:(UIColor*) aULt6MKEV aBSYMfJ9Amj:(UIMotionEffect*) aBSYMfJ9Amj ah504wn9:(UIWindow*) ah504wn9 agy3O9e4aN:(UIControlEvents*) agy3O9e4aN {
  202. NSLog(@"bkEjwCtXoB7fyYP15dK4Jia3gz9");
  203. NSLog(@"HNsmaOlr2Yb7oAjyK3UzX4pP5ZWT");
  204. NSLog(@"icD8UFBn61ueIRk0hLmqbgz3ywSCPs");
  205. NSLog(@"UsHZGtgBSd");
  206. NSLog(@"oiB7zuTjrSKO4cHXtW");
  207. NSLog(@"ku2FSRetmGT7yrfhbJZBLdcCYDI3n8Ux6Xs");
  208. NSLog(@"kiChwQa6dREVqJIfy2nvTWsxL95c8DjHbtON7");
  209. NSLog(@"BQHUFrnPG5t6gp8wevuAEzoIfxZ73dChDLakM");
  210. NSLog(@"vZFMQiV16j7KeJN5RG");
  211. NSLog(@"dPxb9eRvz0UDiSVgknh3Mpw6FXJYI");
  212. NSLog(@"PTYC4y0zruNvOHm8Us");
  213. NSLog(@"QnDzSRox10a");
  214. NSLog(@"30ZnbDugXEVwl1kBUmGLp85dRsovxTHChJiQzW");
  215. NSLog(@"IdeuVOh8jkQ");
  216. NSLog(@"3DRjhKNu4ZUYdBQAnJ");
  217. NSLog(@"Ec71CVP63wOr4Qj");
  218. }
  219. -(void)a5zFd7lEhU4:(UIFontWeight*) a5zFd7lEhU4 am16qVDTn:(UISwitch*) am16qVDTn aP80N5H:(UILabel*) aP80N5H akY9c5:(UIMenuItem*) akY9c5 arlVbxTnkd:(UIBezierPath*) arlVbxTnkd a5d9mUaVnSP:(UIBarButtonItem*) a5d9mUaVnSP a69LvJtcyOl:(UIControl*) a69LvJtcyOl an0cHZO:(UIBarButtonItem*) an0cHZO a9pK7nR:(UISearchBar*) a9pK7nR an21KDALTd:(UIInputView*) an21KDALTd aygXT2YZ:(UIEdgeInsets*) aygXT2YZ aF1Qr:(UIEdgeInsets*) aF1Qr alpI80RfGba:(UICollectionView*) alpI80RfGba a2wIi5:(UIColor*) a2wIi5 {
  220. NSLog(@"FcCUGb0rst3ZIg6mAQfqauXBoRL9pkMT");
  221. NSLog(@"25RbVctgCKP3v6iZeFmI0hLjNJ");
  222. NSLog(@"qT7Bwsl8xfeHgC9QD54LuIrbyht");
  223. NSLog(@"09wcRVGNd4bvi");
  224. NSLog(@"dP5u2ebFrAMQSn68RtKT7UGz");
  225. NSLog(@"lkHELOK7VBmvu0iXqz2t9f");
  226. NSLog(@"WX4NtjlickSqf538ILoFnD6QR");
  227. NSLog(@"7fDIgsAVwCy8u");
  228. NSLog(@"co3RkwuWDjMzHyaFEnGxsSrNKv8UL7hp0lmAXTY");
  229. NSLog(@"ObE8xLh6v327X4peKJ");
  230. NSLog(@"JPF9r4M1GLuqmwONtAdT3oc7VHs");
  231. NSLog(@"iMtj2l7dGCKzFJa");
  232. NSLog(@"BGMZXrTwRSyYJfLPHbvQFs");
  233. NSLog(@"MJ2W4HjINR8kvFKuz");
  234. NSLog(@"2NuqIzvoAs");
  235. NSLog(@"Dod1sPVuBlAkhiw6YzZ");
  236. NSLog(@"xTEK1c5MIdXWFvBmfYbS");
  237. NSLog(@"hpEiMeyx5kQFDlctXSToH98CLdJzZB");
  238. NSLog(@"wipaRqlhkKPDdtO6uXv8noBs4bcQFeGULA");
  239. NSLog(@"F59ptNHkdP2SzDrWZso");
  240. }
  241. -(void)aP03ySYQkm9:(UIImageView*) aP03ySYQkm9 atWyaRGpb:(UIScreen*) atWyaRGpb aNxiDq:(UIBezierPath*) aNxiDq aEQxWXfAN:(UIScreen*) aEQxWXfAN aRhB7nqoP:(UITableView*) aRhB7nqoP av4y50J8if:(UIVisualEffectView*) av4y50J8if aQpx3UDt:(UIBarButtonItem*) aQpx3UDt a9xVgR:(UIWindow*) a9xVgR abjRK58p:(UIScreen*) abjRK58p a5SlCb8c:(UIDevice*) a5SlCb8c {
  242. NSLog(@"5ol8YSEmXaCu2wVAWs3f1c0dBeR7NMkigrZFKI");
  243. NSLog(@"WzRLmXCfGaEKqFcxynMh8D");
  244. NSLog(@"cWjVNL9QeC5");
  245. NSLog(@"ZHnywteXlSBd4E0");
  246. NSLog(@"Msq2U1fWtyDoGgHiPBLIdYVvX");
  247. NSLog(@"jF7aHq2bWm0ZRxDuA");
  248. NSLog(@"CY75t9ly4n6MXi8OHcQW0kjpA");
  249. NSLog(@"LaDb2p7oYFhP");
  250. NSLog(@"IGYriJezVabpvUmOHhx");
  251. NSLog(@"tZvUePNaqFIArJ");
  252. NSLog(@"rWAHZ1GM9xLig7NJYl");
  253. NSLog(@"CQKh5JgGX1jIEy30VPD4829AukYpU6SqiexN");
  254. NSLog(@"iyZP2VHO5ocl1R");
  255. NSLog(@"mz9AVe2xbcd3H6oLYy");
  256. NSLog(@"tcphZsY1PnvUCy3j6rxAk9MWaB");
  257. }
  258. -(void)ayRfWEkYv:(UIRegion*) ayRfWEkYv au2MjhU:(UIMenuItem*) au2MjhU aqNzMU8tyd2:(UIControl*) aqNzMU8tyd2 aWwgP1lyR:(UIWindow*) aWwgP1lyR a812mVv:(UIColor*) a812mVv a3x0Ar:(UIVisualEffectView*) a3x0Ar asc1nOK:(UIRegion*) asc1nOK acDiOFU:(UIView*) acDiOFU aTsnl1HPkbY:(UIUserInterfaceIdiom*) aTsnl1HPkbY aT5iH8e:(UIRegion*) aT5iH8e a7ZsH:(UIBarButtonItem*) a7ZsH akn8BN:(UIWindow*) akn8BN av0HjGIPnB2:(UIInputView*) av0HjGIPnB2 a2TcH6h:(UILabel*) a2TcH6h adFh9n73:(UIInputView*) adFh9n73 aS37Pkp:(UIViewController*) aS37Pkp {
  259. NSLog(@"CyaQKjdEcTGnbLMfp");
  260. NSLog(@"nHxwfUN7d2ZoGyeamcOjv9LCS6JgRQziThlAM4");
  261. NSLog(@"QShp2wBlv37Fqbj5E0JPHzfr1CWVTuZ4UR9cyNK8");
  262. NSLog(@"Aq9xUbcRwXMNjPCHThF");
  263. NSLog(@"mIeq97i0gZkyHdW8NjK3buTL");
  264. NSLog(@"wg0ijGCfaLcMzNB7d");
  265. NSLog(@"AS784hUaQl9PCVD3gefwJYcq");
  266. NSLog(@"wGmLRa2ohX");
  267. NSLog(@"ZIdXnmFBSriqYTjKUMg");
  268. NSLog(@"IDfZhYUARX7Eret");
  269. NSLog(@"D62fRu7Nenj5ZXyTmiW89S");
  270. NSLog(@"6qV52MaPf3wjLHnm4pUhCIdDBxsRWGZ");
  271. NSLog(@"QncLNrGoEmJdFhSTUR2zHeBiZxCI");
  272. NSLog(@"XhyIL0N9gernTaJzo6GUCFWk7wpYP4EAMRmqx");
  273. }
  274. -(void)aYBdhAG:(UIViewController*) aYBdhAG adwx0oV:(UIVisualEffectView*) adwx0oV afhpxZ6w3:(UIBarButtonItem*) afhpxZ6w3 aF0ijMr:(UISearchBar*) aF0ijMr aZ6Shzl:(UIBarButtonItem*) aZ6Shzl ajqM3Gor:(UIBezierPath*) ajqM3Gor {
  275. NSLog(@"ztqAnl4oFJXQcBID6eTu7UMdRyLZ9CO");
  276. NSLog(@"PFKXHoLySUr3RIQA4l02qWnw8bDV6TtZ15Jxe");
  277. NSLog(@"EiKu5oqVbmfj9gv68GeUwLMZrHPzksAnY0aSl");
  278. NSLog(@"ZKrGftBecOanjqPVwbSTyQk42");
  279. NSLog(@"8TtoUuOFqmsxJzMHWifkb1p6PQE3GBrje");
  280. NSLog(@"RAGgHdNhr2ewLpublsDXqc8OBK9");
  281. NSLog(@"4ShQGDnVyA85C");
  282. NSLog(@"yjG1Ya4Ou8KoEJisTPQXcMR2HAp");
  283. NSLog(@"ejItmLbfCHxkNZ");
  284. NSLog(@"Xd3kQtPviZfxF12yNIL0ATpwJrqcEKolCaRn5zB");
  285. }
  286. -(void)aUl182JikW:(UIDocument*) aUl182JikW aioJvBW:(UIDocument*) aioJvBW ab9K0j7ZaH:(UIMotionEffect*) ab9K0j7ZaH azvZAf4Y3:(UIFont*) azvZAf4Y3 aKC8lTQSo:(UIFont*) aKC8lTQSo adwjQz4:(UIBarButtonItem*) adwjQz4 aZfQ92:(UICollectionView*) aZfQ92 aHKc1:(UIBarButtonItem*) aHKc1 aFBYV:(UIWindow*) aFBYV aFdgZ0qRu2:(UIBarButtonItem*) aFdgZ0qRu2 aLYOVm1I:(UIBezierPath*) aLYOVm1I aMSoDq:(UICollectionView*) aMSoDq aB4IXidCo:(UISwitch*) aB4IXidCo {
  287. NSLog(@"F5ItO3KnaWGrx7RpUXM10YTwZfu");
  288. NSLog(@"72DTrV1MpbmcIgK8ydkvwJ4AuEC");
  289. NSLog(@"vQ3F02Wed8UGxoO7iuzawnXN");
  290. NSLog(@"Fgy0jCMOhQrKWuU");
  291. NSLog(@"zRuNxGWKoUi8SA0jsPhltL4M9FB1XO");
  292. NSLog(@"jNOLkQF7WYM");
  293. NSLog(@"IhEUWR6OkuTgSXCbDx7cdFwl");
  294. NSLog(@"8EezPSchwogVnIlx5j");
  295. NSLog(@"q4vPusUDVz3rpEA6HKS");
  296. NSLog(@"VgfDu6KJRYylxir");
  297. NSLog(@"42tjFUKV91plaqdgExvBJ7AmL");
  298. NSLog(@"5PQV1EbJF0YtkNITx6GZzwLfg");
  299. }
  300. @end