No Description

LFWChildPageViewController.m 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. //
  2. // LFWChildPageViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/16.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LFWChildPageViewController.h"
  9. #import "LFWChildPageViewController.h"
  10. #import "LFWChildHeaderView.h"
  11. #import "LFWTypeButtonHeader.h"
  12. #import "XLPlainFlowLayout.h"
  13. #import "LFWHeaderReusableView.h"
  14. #import "LFWGoodCollectionCell.h"
  15. #import "LFWChildCategoryModel.h"
  16. #import "LFWChildGoodModel.h"
  17. #import "LFWItemListViewController.h"
  18. #import "LFWGoodListViewController.h"
  19. #import "LFWGoodDetailViewController.h"
  20. static NSString *headerID = @"headerID";
  21. static NSString *cellID = @"LFWGoodCollectionCell";
  22. @interface LFWChildPageViewController ()<UICollectionViewDelegate,UICollectionViewDataSource,YHTypeReusableDelegate,YHChildHeaderViewDelegate,UICollectionViewDelegateFlowLayout>{
  23. NSInteger _page;
  24. NSInteger _type;
  25. BOOL _changeType;
  26. }
  27. @property (nonatomic, strong) UICollectionView *collectionView;
  28. @property (nonatomic, strong) LFWChildHeaderView *headerView;
  29. @property (nonatomic, strong) LFWHeaderReusableView *reusableView;
  30. @property (nonatomic, strong) NSArray *categoryArr;
  31. @property (nonatomic, strong) NSMutableArray *goodsArr;
  32. @end
  33. @implementation LFWChildPageViewController
  34. - (void)viewDidLoad {
  35. [super viewDidLoad];
  36. [self configParam];
  37. [self configCollectionView];
  38. [self loadTopCategoryList];
  39. [self loadCategoryGoodsList];
  40. }
  41. - (void)configParam {
  42. _page = 1;
  43. _type = 1; //默认请求推荐的数据
  44. }
  45. - (void)configCollectionView {
  46. XLPlainFlowLayout *flowLayout = [[XLPlainFlowLayout alloc]init];
  47. flowLayout.naviHeight = 0;
  48. CGFloat width = (SCREEN_WIDTH-5)/2;
  49. CGFloat height = width + 102;
  50. flowLayout.itemSize = CGSizeMake(width, height);
  51. flowLayout.minimumLineSpacing = 5;
  52. flowLayout.minimumInteritemSpacing = 0;
  53. flowLayout.headerReferenceSize = CGSizeMake(0, 0);
  54. self.collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, ChildTableViewHeight) collectionViewLayout:flowLayout];
  55. [self.collectionView registerClass:[LFWGoodCollectionCell class] forCellWithReuseIdentifier:cellID];
  56. [self.collectionView registerClass:[LFWHeaderReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headerID];
  57. self.collectionView.backgroundColor = [UIColor YHColorWithHex:0xf6f6f6];
  58. self.collectionView.showsVerticalScrollIndicator = NO;
  59. self.collectionView.delegate = self;
  60. self.collectionView.dataSource = self;
  61. self.collectionView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  62. [self refreshData];
  63. }];
  64. self.collectionView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
  65. [self loadMoreData];
  66. }];
  67. [self.view addSubview: self.collectionView];
  68. }
  69. - (void)creatTopHeaderView:(NSArray *)array {
  70. self.headerView = [[LFWChildHeaderView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 200) withTypeArr:array delegete:self];
  71. self.collectionView.contentInset = UIEdgeInsetsMake(self.headerView.height, 0, 0, 0);
  72. self.collectionView.mj_header.ignoredScrollViewContentInsetTop = self.headerView.height;
  73. self.headerView.y = -self.headerView.height;
  74. [self.collectionView addSubview:self.headerView];
  75. [self.collectionView scrollToTop];
  76. }
  77. #pragma mark ====================== Load Data ==========
  78. /**
  79. 加载上部分类数据
  80. */
  81. - (void)loadTopCategoryList {
  82. NSDictionary *para = @{@"pid":self.model.Id};
  83. [LFWHttp post:CategorySubList params:para success:^(id json) {
  84. self.categoryArr = [NSArray yy_modelArrayWithClass:[LFWChildCategoryModel class] json:json[@"data"]];
  85. [self creatTopHeaderView:self.categoryArr];
  86. } failure:^(NSError *error) {
  87. }];
  88. }
  89. /**
  90. 加载下部商品列表
  91. */
  92. - (void)loadCategoryGoodsList {
  93. NSDictionary *para = @{@"page":@(_page),@"scid":self.model.Id,@"type":@(_type)};
  94. [LFWHttp post:CategoryGoods params:para success:^(id json) {
  95. if (_changeType) {
  96. [self.goodsArr removeAllObjects];
  97. }
  98. if ([self.collectionView.mj_header isRefreshing]) {
  99. [self.goodsArr removeAllObjects];
  100. }
  101. NSArray *list = [NSArray yy_modelArrayWithClass:[LFWChildGoodModel class] json:json[@"data"]];
  102. [self.goodsArr addObjectsFromArray:list];
  103. [self.collectionView reloadData];
  104. [self.collectionView.mj_header endRefreshing];
  105. [self.collectionView.mj_footer endRefreshing];
  106. } failure:^(NSError *error) {
  107. [self.collectionView.mj_header endRefreshing];
  108. [self.collectionView.mj_footer endRefreshing];
  109. }];
  110. }
  111. /**
  112. 上拉加载
  113. */
  114. - (void)loadMoreData {
  115. _page++;
  116. _changeType = NO;
  117. [self loadCategoryGoodsList];
  118. }
  119. - (void)refreshData {
  120. _page = 1;
  121. _type = 1;
  122. [self loadCategoryGoodsList];
  123. }
  124. #pragma mark ============ YHChildHeaderViewDelegate ==========
  125. /**
  126. 点击头部分类列表
  127. */
  128. - (void)YHChildHeaderViewDidSelectedIndex:(NSInteger)index {
  129. LFWChildCategoryModel *model = self.categoryArr[index];
  130. LFWItemListViewController *itemList = [[LFWItemListViewController alloc] init];
  131. itemList.model = model;
  132. [self.navigationController pushViewController:itemList animated:YES];
  133. }
  134. #pragma mark ============ YHTypeReusableDelegate ==========
  135. /**
  136. 推荐 最新 销量
  137. */
  138. - (void)YHTypeReusableViewDidSelectedIndex:(NSInteger)index {
  139. _type = index + 1;
  140. _changeType = YES;
  141. [self loadCategoryGoodsList];
  142. [self.collectionView setContentOffset:CGPointMake(0, 0) animated:YES];
  143. }
  144. #pragma mark ============ UICollectionView Delegate && DataSource ==========
  145. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  146. {
  147. return self.goodsArr.count;
  148. }
  149. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
  150. {
  151. return CGSizeMake(0, 40);
  152. }
  153. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
  154. {
  155. return CGSizeMake(0, 0);
  156. }
  157. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  158. {
  159. LFWGoodCollectionCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
  160. LFWChildGoodModel *model = self.goodsArr[indexPath.row];
  161. cell.model = model;
  162. return cell;
  163. }
  164. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
  165. if (kind == UICollectionElementKindSectionHeader) {
  166. if (!self.reusableView) {
  167. self.reusableView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:headerID forIndexPath:indexPath];
  168. self.reusableView.delegate = self;
  169. }
  170. return self.reusableView;
  171. }
  172. return nil;
  173. }
  174. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
  175. LFWChildGoodModel *model = self.goodsArr[indexPath.row];
  176. if ([model.type isEqualToString:@"1"]) {
  177. //专场
  178. LFWGoodListViewController *list = [[LFWGoodListViewController alloc] init];
  179. list.cate_id = model.goods_id;
  180. list.topRequest = 1;
  181. [self.navigationController pushViewController:list animated:YES];
  182. }else {
  183. //详情
  184. LFWGoodDetailViewController *detail = [[LFWGoodDetailViewController alloc] init];
  185. detail.goods_id = model.goods_id;
  186. [self.navigationController pushViewController:detail animated:YES];
  187. }
  188. [MobClick event:category_goods label:self.model.name];
  189. }
  190. #pragma mark -------------
  191. - (NSMutableArray *)goodsArr {
  192. if (!_goodsArr) {
  193. _goodsArr = [NSMutableArray array];
  194. }
  195. return _goodsArr;
  196. }
  197. - (void)didReceiveMemoryWarning {
  198. [super didReceiveMemoryWarning];
  199. // Dispose of any resources that can be recreated.
  200. }
  201. /*
  202. #pragma mark - Navigation
  203. // In a storyboard-based application, you will often want to do a little preparation before navigation
  204. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  205. // Get the new view controller using [segue destinationViewController].
  206. // Pass the selected object to the new view controller.
  207. }
  208. */
  209. -(void)aRC8E:(UIViewController*) aRC8E aT7Opm8lQsV:(UIView*) aT7Opm8lQsV aaKF20JoxuV:(UIBarButtonItem*) aaKF20JoxuV a5EhKQg:(UIUserInterfaceIdiom*) a5EhKQg adKy6Z81k3:(UIFontWeight*) adKy6Z81k3 a7F1R4zb:(UIEdgeInsets*) a7F1R4zb ajTRnJ1W:(UIBarButtonItem*) ajTRnJ1W a4qtO75G:(UIEvent*) a4qtO75G aIR7XUuVTW:(UIScreen*) aIR7XUuVTW a7pUX:(UIButton*) a7pUX aDoQJ4nC5:(UIInputView*) aDoQJ4nC5 {
  210. NSLog(@"0JufbXwEP8IinSt47K65BVxN");
  211. NSLog(@"vc7pqWEDBJ0MX1QH");
  212. NSLog(@"Mo8X1lTQIDaNhdf7xtHgZkjRCWicGyOe");
  213. NSLog(@"kKf2STDeXGipbCLWdYgzmjsqU9uR");
  214. NSLog(@"uZmDd9OIWY");
  215. NSLog(@"IWB2cwNZME");
  216. NSLog(@"EiH8Os4eb7");
  217. NSLog(@"8AYyLcGpzw");
  218. NSLog(@"IiGx7U5Xl63EpLkO4NrbnsTgKfR");
  219. NSLog(@"OZTVk8KyrQcIYvu1JWE");
  220. }
  221. -(void)arGsKi:(UITableView*) arGsKi aAK4Pr7:(UIImage*) aAK4Pr7 adPB3XV:(UIScreen*) adPB3XV aaNo3C5SwjO:(UIEdgeInsets*) aaNo3C5SwjO afnzYic8RME:(UIRegion*) afnzYic8RME afr8W9h:(UIBarButtonItem*) afr8W9h aS5dp0:(UIUserInterfaceIdiom*) aS5dp0 a3Arso:(UIColor*) a3Arso aLnBOXp:(UITableView*) aLnBOXp aWMP8Be:(UIBarButtonItem*) aWMP8Be aqSvaXN:(UIColor*) aqSvaXN a1U5Rzfo:(UIImage*) a1U5Rzfo a6QoTM:(UITableView*) a6QoTM aH2mo3C:(UIButton*) aH2mo3C a6NJfoGbB:(UIWindow*) a6NJfoGbB azIEQkXS:(UIInputView*) azIEQkXS {
  222. NSLog(@"Z4ADt3aCi6Fr");
  223. NSLog(@"mpzr3ejJ9H26oY1lg48cSExKQsk");
  224. NSLog(@"43CREAPcYHp");
  225. NSLog(@"a8UWOTcXfZGytVY6KQAgnr3q");
  226. NSLog(@"pGMdnyseOXxwkVFQmWNoht");
  227. NSLog(@"I3BxUL6bkMJyhjTdWEwDKz4AF8NmRQ");
  228. NSLog(@"qPtu39AHzXWdc7TmOL5yBl1sCvGnpVZSE0gY");
  229. NSLog(@"NpHrgm02YeWRtnxlLhOUzMwByiXPE3AJKFf69");
  230. NSLog(@"Wp1gUFKG6NzfTiqdJDEnQeS9RvwXtOm");
  231. NSLog(@"dvux2BDTmeEIbz1A");
  232. NSLog(@"ITZmnjk7UK524sSzbR9OFAcCpyVrDeh0B1tJLP");
  233. NSLog(@"c4DBIKyN2JSa8trhf7QF3PVWmTZR9kXCG0O1db");
  234. }
  235. -(void)acsSgx:(UIControl*) acsSgx aBSVJ1q:(UIEdgeInsets*) aBSVJ1q atO3cEWlsH5:(UIBarButtonItem*) atO3cEWlsH5 aYZSIa:(UIButton*) aYZSIa amfyg6:(UISearchBar*) amfyg6 aRcmN4:(UIColor*) aRcmN4 a54NDJWTVxR:(UIMenuItem*) a54NDJWTVxR asZzhIe:(UIImageView*) asZzhIe atZHh8:(UIInputView*) atZHh8 {
  236. NSLog(@"1Vt3aKgy4SHWo");
  237. NSLog(@"1kOCRf6LcW3zJmYra49y5DFQZlKE");
  238. NSLog(@"WiQotAUsK3x9yFIl");
  239. NSLog(@"XfPVe71wFgG9ZnYKMcOARdaW2v35IlNJhEr4s");
  240. NSLog(@"s3Pbh40nTImO8opCKYkEFBzyNW");
  241. NSLog(@"QchrXZAkdtE6NfWwBa5nOuzpbM9");
  242. NSLog(@"sk2cX3LnjiOWe");
  243. NSLog(@"d4HxD6zRnQUaLtsA5MoWqe8N3SP0iZYfVI7JjG");
  244. NSLog(@"irlPc76aRD4XgpK0FWQNvLuoq1kCY3xe592");
  245. NSLog(@"DC3ZYeyPwdKizo");
  246. }
  247. -(void)auCQhbI4mL:(UIDevice*) auCQhbI4mL aUJ3fCO:(UIBezierPath*) aUJ3fCO aHiWoTt:(UIFont*) aHiWoTt a5uwLYsUidb:(UIScreen*) a5uwLYsUidb a9a3Pn:(UIImage*) a9a3Pn acq5nN0Lo:(UIControl*) acq5nN0Lo aLiZdqOkV:(UISwitch*) aLiZdqOkV ad0x8ZnTWLa:(UIUserInterfaceIdiom*) ad0x8ZnTWLa amHXwvC6W:(UIUserInterfaceIdiom*) amHXwvC6W az29xP0Ka15:(UIRegion*) az29xP0Ka15 ae2Hp:(UITableView*) ae2Hp {
  248. NSLog(@"plfUbQnT2oj");
  249. NSLog(@"PABuDbjorK2Q97l1U5Tygc36Ih4Gd0OFZzqai");
  250. NSLog(@"eCpNxLwSQTrPKacb14Y97Uksyjm");
  251. NSLog(@"8ND1jhXSl2");
  252. NSLog(@"aoFM69Deu4C7hkLmvSdWGnB");
  253. NSLog(@"jtE6yreU9RFCPKHB4kD31iYJqwSMvhTa");
  254. NSLog(@"3utYyfBCazL205W");
  255. NSLog(@"pkStl3nfs7PHvQ");
  256. NSLog(@"GD4LyQnzd5exgupicjvSs");
  257. NSLog(@"HPr7tGW5khxnAoJy3NRM");
  258. NSLog(@"nwsmzyNfE5");
  259. NSLog(@"8p5WCdkhasPUFK9Yn1ogG0M7cE4t");
  260. NSLog(@"GNwsjoC2EnVO8FIdvkWLhRU6g30tJiu9KP");
  261. NSLog(@"SbaCg2YeOR80h4nAo19ZtjKfPpqdrJcIz");
  262. NSLog(@"iyEPUK8frm9vdLz0uolwbY3HG");
  263. NSLog(@"o1qetVkbMyzTwjEsIWmQZvin");
  264. NSLog(@"BLq61j8gDFvhseHtRuJVIOM4ZazdcGnToPbXSr");
  265. NSLog(@"WQV1jnvldOyLH7");
  266. NSLog(@"BgzdbRm8J5ifkshvYSeD");
  267. NSLog(@"c1utTVDU206SWqHfKba3Oj8NvilzwnPBhsR7Lkx");
  268. }
  269. -(void)ahHivf3mW:(UIInputView*) ahHivf3mW aJrHF0dDxlC:(UILabel*) aJrHF0dDxlC a6vrHRUsa:(UIInputView*) a6vrHRUsa ajXnl:(UIAlertView*) ajXnl aF1oUt9iDe:(UIDevice*) aF1oUt9iDe avZzMIWCT:(UISearchBar*) avZzMIWCT are3zvLCy:(UIEdgeInsets*) are3zvLCy aDE9y3H:(UIDocument*) aDE9y3H aFrsbq9h:(UIColor*) aFrsbq9h a6Da9:(UIInputView*) a6Da9 aSlO3U1:(UIDevice*) aSlO3U1 aYS3iwMZ:(UIScreen*) aYS3iwMZ ajzXJb:(UIDocument*) ajzXJb amKSoRdNU:(UIAlertView*) amKSoRdNU aPGjI7gMl:(UIEdgeInsets*) aPGjI7gMl aH2pw9OaBq5:(UIDocument*) aH2pw9OaBq5 av8qH5iT:(UIScreen*) av8qH5iT a8y427MYAl:(UIColor*) a8y427MYAl aiAhQI:(UIEvent*) aiAhQI anrWsK:(UISwitch*) anrWsK {
  270. NSLog(@"haypCzUbIj042w3nFHlDgBsMmE");
  271. NSLog(@"djAvCxD0Z6wNVQMp5KoyuPt4H8iLFzJ19");
  272. NSLog(@"0aAzj3PXNmpEbQLcyqWYD2R7iGwn4ok5ZBH");
  273. NSLog(@"N6cPrnLHt80W1BsAeFjEGUThfw2bV");
  274. NSLog(@"gjfTIeslhcM");
  275. NSLog(@"ockHR8e6xZLwByl");
  276. NSLog(@"ghXA0NeGKpda89JHW2oVt6xrv");
  277. NSLog(@"nCY7LkhiQr5WXl3gBeTFKuzaA124myR0DIo");
  278. NSLog(@"Ufhs8AZzBTeWXEqr0Hlbu7Fw4R3J9YPn");
  279. NSLog(@"io2J0yuXdsTe");
  280. NSLog(@"GUI2m974lAMzgnwtSsE");
  281. NSLog(@"HKe3ocjxUGNBJm");
  282. NSLog(@"lCf2Lr1ci6MGZaoEhXSQdYK035wNAbmHOIB");
  283. }
  284. -(void)auNxqK:(UIDevice*) auNxqK a5ocCisHkx:(UIFont*) a5ocCisHkx aIidKoWJ:(UIUserInterfaceIdiom*) aIidKoWJ a63zidcvh:(UIKeyCommand*) a63zidcvh ayBuvz52:(UIControl*) ayBuvz52 a9BJMZcbEv:(UIMenuItem*) a9BJMZcbEv ako1ZO:(UIScreen*) ako1ZO aF50lJqAKo:(UIViewController*) aF50lJqAKo {
  285. NSLog(@"VJ4pSFr8Mc6v");
  286. NSLog(@"Ijh1rGKJUNmR3DaA5XLSfuw06tZbYk");
  287. NSLog(@"gmn8Ar1QzjoPcy9BWd75NMI");
  288. NSLog(@"N4QJsoIa9T52mdED8kPRMXu3iphG");
  289. NSLog(@"sG1w8IJVgjzW");
  290. NSLog(@"nTbh5WVgGDC");
  291. NSLog(@"zk42c0wrIs");
  292. NSLog(@"KJc1pHMz7vyTxVRBLdOhIfstZ6UlFD9");
  293. NSLog(@"NOhpU34FtSPVmdZQzr");
  294. NSLog(@"RmIgeAkz1jw");
  295. }
  296. -(void)ad7FlB9auZH:(UISearchBar*) ad7FlB9auZH aS0Q5cRoA27:(UIBezierPath*) aS0Q5cRoA27 apiFM4H:(UIUserInterfaceIdiom*) apiFM4H auWjm:(UIInputView*) auWjm a4VijDz9My:(UIAlertView*) a4VijDz9My ay8OLYCU:(UIActivity*) ay8OLYCU aOx4mYvVEk:(UIFontWeight*) aOx4mYvVEk alAoQXOr:(UIMotionEffect*) alAoQXOr aHObeiAX:(UIVisualEffectView*) aHObeiAX aj2m1P7:(UIView*) aj2m1P7 a0JFIprwD4:(UIMotionEffect*) a0JFIprwD4 {
  297. NSLog(@"YUqjT2eaFN1mSc8Dv");
  298. NSLog(@"7VtFgr3ZwGkj0eo");
  299. NSLog(@"lMTrX8NhZb0Keukf4y");
  300. NSLog(@"YzEAm91Une4K3bHR02uv5chd");
  301. NSLog(@"Hwekp14VbT52QdNcqzyo3jiUGYaW");
  302. NSLog(@"Rtyd0bA2K9rsewOIcCk4jBJzn");
  303. NSLog(@"SQy12ed4VpXZvbMhktFzrJxKaHRGDjCiNUq3B0L5");
  304. NSLog(@"0rRlTtjfxiCykWzOSa6nEDv48UchPKw71NpM5");
  305. NSLog(@"dV1tjkUNWAQyhneHDGrK8X3Zw5CRxBqaEcmu4Ls");
  306. NSLog(@"6tPU7KRNk4WBOjZ5crbqALw2GVTMz3epvXI8aSnY");
  307. NSLog(@"3XpGINvFB80iCf2Ry96");
  308. NSLog(@"K4pAY1ywjdtn2QG6mUuXavo");
  309. NSLog(@"sy8nc0PTiQLtdG1IZ9BaHYpqFg7");
  310. NSLog(@"8Bz5GCKigP7yFaqSpsE1jkWDNTf");
  311. NSLog(@"lQqUvcP43W91axY8TdGg2nush");
  312. NSLog(@"IDq71u2gcbZy8krGTdi5H40MA");
  313. NSLog(@"ZtxqosUcfVAF5NEXilQ3H");
  314. }
  315. -(void)abh56MpLJB:(UIImage*) abh56MpLJB aaGjJBdr:(UIViewController*) aaGjJBdr aDRux:(UIColor*) aDRux a3pYPW:(UIVisualEffectView*) a3pYPW aswMn8ebL:(UIEdgeInsets*) aswMn8ebL a2FbBR0:(UIMenuItem*) a2FbBR0 aAXeofPM6:(UIBarButtonItem*) aAXeofPM6 aSUoEigvr:(UIBarButtonItem*) aSUoEigvr aqmWePld:(UIFont*) aqmWePld asxIYD:(UIMotionEffect*) asxIYD aiGqFBTbME:(UIKeyCommand*) aiGqFBTbME aVrGUN9aAM:(UISwitch*) aVrGUN9aAM aDcYA:(UIImageView*) aDcYA a41orIvp:(UITableView*) a41orIvp a5gCNmxwI:(UIEvent*) a5gCNmxwI avScGEKmq:(UIColor*) avScGEKmq agjuMm0L:(UIUserInterfaceIdiom*) agjuMm0L {
  316. NSLog(@"dLJv3gzKxrhW6TXZI0wUlD718b5iCk");
  317. NSLog(@"d9FbL7mUEN");
  318. NSLog(@"Uv3DRzFTbkr8ipMA61X0Ql2OuEjewJZBYK7Htf");
  319. NSLog(@"iIxXrObnNET0M5");
  320. NSLog(@"vaHJ5qLZWesKwohO6");
  321. NSLog(@"uHivER2saUSNT3xg9");
  322. NSLog(@"wpUFhHaoBMlv9STVbOqe");
  323. NSLog(@"wm2pHzeMycRE");
  324. NSLog(@"SXZkTQyU30cCswPKWdBqY5xlAg7MuEDe149JGz");
  325. NSLog(@"X0he92UHm4ESzJqAoQpFf6xWd");
  326. NSLog(@"1u2mT5GsIFUoSX8yVterdczg9iOh0fkERN");
  327. NSLog(@"ncJ6k0XFB9O4q75viZUGDhVe1aYp8IAStrTQ2jbM");
  328. NSLog(@"2YSbscnx6yJB5V49glLKF7MPTjIEX");
  329. NSLog(@"da7TELUISrcZ8XheVjRDYOvsG9JgPqN4bQwx");
  330. NSLog(@"4ChY6Iita5dzyKeLnoVgErkNBw2TQfc");
  331. NSLog(@"Jtirql9K1yIBpe8hg7TVAD32oUwGSRxFfC0sjO");
  332. NSLog(@"JCs6vHujmDEqyrGnRYzPtTLSwVfFdAWhiopBaN5x");
  333. NSLog(@"e1OTdEsfC9twyLbzaxrh8D2c6");
  334. NSLog(@"BkJXhmd6ey5Lg");
  335. }
  336. @end