口袋版本的一折买

YZMACommunityLeftController.m 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. //
  2. // YZMACommunityLeftController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/16.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMACommunityLeftController.h"
  9. #import "YZMACommunityCell.h"
  10. #import "UITableView+SDAutoTableViewCellHeight.h"
  11. #import "YZMACommunityModel.h"
  12. #import "YZMACommunityDetailModel.h"
  13. #import "YZMAShareGoodsModel.h"
  14. #import "YZMAShareGoodsView.h"
  15. #import "YZMAGoodDetailViewController.h"
  16. #import "YZMALoginViewController.h"
  17. #import "YZMAPopShareGoodView.h"
  18. #import "YZMAGoodsRecommendTableViewCell.h"
  19. #import "YZMAGoodListViewController.h"
  20. @interface YZMACommunityLeftController ()
  21. <
  22. UITableViewDelegate,
  23. UITableViewDataSource,
  24. YHCommunityDelegate,
  25. PhotoContainerViewDelegate,
  26. KBGoodsRecommendTableViewDelegate
  27. >
  28. @property (nonatomic, strong) UITableView *tableView;
  29. @property (nonatomic, strong) NSMutableArray *dataArr;
  30. @property (nonatomic ) NSInteger page;
  31. @property (nonatomic,strong ) UIView *backgroudView;
  32. @end
  33. @implementation YZMACommunityLeftController
  34. - (void)viewDidLoad {
  35. [super viewDidLoad];
  36. self.page=0;
  37. [self configNavigationBar];
  38. [self configTableView];
  39. [self requestData];
  40. }
  41. -(void)viewDidAppear:(BOOL)animated{
  42. [super viewDidAppear:animated];
  43. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  44. }
  45. - (void)configNavigationBar{
  46. [self.navigationBar setNavTitle:@"优选商品"];
  47. self.view.backgroundColor = [UIColor whiteColor];
  48. self.navigationBar.navTitleLabel.textColor = [UIColor YHColorWithHex:0x333333];
  49. self.navigationBar.backgroundColor = [UIColor whiteColor];
  50. self.navigationBar.showNavigationBarBottomLine = YES;
  51. }
  52. - (void)configTableView {
  53. self.view.backgroundColor = [UIColor yhGrayColor];
  54. [self.view addSubview:self.tableView];
  55. [[UIApplication sharedApplication].keyWindow addSubview:self.backgroudView];
  56. }
  57. - (void)requestData {
  58. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/specialRecommendation",BaseURL];
  59. self.page++;
  60. NSDictionary *dic=@{
  61. @"page":@(self.page)
  62. };
  63. [YZMAHttp post:url params:dic success:^(id json) {
  64. NSArray *arr=[NSArray yy_modelArrayWithClass:[YZMACommunityModel class] json:json[@"data"]];
  65. if (arr.count>0) {
  66. if (self.page==1) {
  67. [self.dataArr removeAllObjects];
  68. }
  69. [self.dataArr addObjectsFromArray:arr];
  70. }
  71. [self setNoDataView:arr];
  72. [self.tableView reloadData];
  73. [self.tableView.mj_header endRefreshing];
  74. } failure:^(NSError *error) {
  75. [self.tableView.mj_header endRefreshing];
  76. [self.tableView.mj_footer endRefreshing];
  77. }];
  78. }
  79. - (void)setNoDataView:(NSArray *)array {
  80. self.tableView.showNoDataView = YES;
  81. self.tableView.defaultNoDataText = @"暂无数据";
  82. self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
  83. if (array.count > 0) {
  84. [self.tableView.mj_footer endRefreshing];
  85. }else {
  86. [self.tableView.mj_footer endRefreshingWithNoMoreData];
  87. }
  88. }
  89. #pragma mark ============ UITableView Delegate && DataSource ==========
  90. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  91. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  92. cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
  93. }
  94. }
  95. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  96. return 0.1f;
  97. }
  98. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  99. return self.dataArr.count;
  100. }
  101. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  102. YZMACommunityModel *model = self.dataArr[indexPath.row];
  103. if ([model.show_type integerValue]==1) {
  104. YZMAGoodsRecommendTableViewCell *cell=[YZMAGoodsRecommendTableViewCell cellWithTableView:tableView];
  105. cell.model=model;
  106. cell.delegate=self;
  107. return cell;
  108. }else{
  109. YZMACommunityCell *cell = [YZMACommunityCell cellWithTableView:tableView];
  110. cell.model = model;
  111. cell.picContainerView.delegate=self;
  112. cell.delegate=self;
  113. return cell;
  114. }
  115. }
  116. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  117. CGFloat a=[self cellHeightForIndexPath:indexPath cellContentViewWidth:SCREEN_WIDTH tableView:tableView];
  118. NSLog(@"%@----%@",@(indexPath.row),@(a));
  119. return a;
  120. }
  121. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  122. }
  123. #pragma mark -代理 PhotoContainerViewDelegate
  124. - (void)otherOPByModel:(YZMACommunityDetailModel *)model{
  125. YZMAGoodDetailViewController *detailVC = [[YZMAGoodDetailViewController alloc] init];
  126. DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithCommunityDetailModel:model];
  127. detailVC.requestModel = requestModel;
  128. [self.navigationController pushViewController:detailVC animated:YES];
  129. }
  130. -(void)jumpByCommunityModel:(YZMACommunityModel *)model{
  131. YZMAGoodListViewController *list = [[YZMAGoodListViewController alloc] init];
  132. list.cate_id = model.Id;
  133. list.name = model.name;
  134. [self.navigationController pushViewController:list animated:YES];
  135. }
  136. #pragma mark -代理 YHCommunityDelegate
  137. -(void)oneTouchShareWithModel:(YZMACommunityModel *)model{
  138. // NSArray *arr=model.detail;
  139. [MobClick event:OneKeyShareRecommend label:@"优选商品"];
  140. if([AccountTool isLogin]){
  141. // UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
  142. // pasteboard.string=model.note;
  143. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/oneKeySharing",BaseURL];
  144. NSDictionary *dic=@{@"id":model.Id};
  145. [YZMAHttp post:url params:dic success:^(id json) {
  146. NSArray *arr=[NSArray yy_modelArrayWithClass:[YZMACommunityDetailModel class] json:json[@"data"]];
  147. NSDictionary *userInfo = json[@"userinfo"];
  148. if (arr.count>0) {
  149. __block NSInteger count=0;
  150. NSMutableArray *imgArr=[NSMutableArray array];
  151. __block NSInteger max=(arr.count<9?arr.count:9);
  152. self.backgroudView.hidden=NO;
  153. [SVProgressHUD showWithStatus:@"生成分享中"];
  154. for (int i=0;i<max;i++) {
  155. YZMACommunityDetailModel *model=arr[i];
  156. NSLog(@"model.img--%@",model.img);
  157. YZMAShareGoodsModel *goodsModel=[[YZMAShareGoodsModel alloc]init];
  158. goodsModel.mainImageUrl=model.img;
  159. goodsModel.commission_price = model.commission_price;
  160. if([model.shop_type integerValue]==0){
  161. goodsModel.shareGoodsFromType=YHShareGoodsFromTypeTaoBao;
  162. }else if([model.shop_type integerValue]==1){
  163. goodsModel.shareGoodsFromType=YHShareGoodsFromTypeTianMao;
  164. }else{
  165. goodsModel.shareGoodsFromType=YHShareGoodsFromTypeOriginal;
  166. }
  167. goodsModel.title=model.title;
  168. goodsModel.ticketAfterPrice=model.discount_price;
  169. goodsModel.ticketPrice=model.coupon_price;
  170. goodsModel.originalPrice=model.price;
  171. goodsModel.QRcodeImageUrl=model.url;
  172. if ([model.is_coupon integerValue]==0) {//进入折扣
  173. goodsModel.shareGoodsPurchaseType=YHShareGoodsPurchaseTypePrice;
  174. }
  175. YZMAShareGoodsView *view1=[[YZMAShareGoodsView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  176. view1.model=goodsModel;
  177. view1.userInfo = userInfo;
  178. __weak __typeof(view1) weakView1 = view1;
  179. view1.imgSuccBlock = ^{
  180. count++;
  181. [imgArr addObject: [weakView1 changeToImage]];
  182. if (count==max) {
  183. count=0;
  184. [SVProgressHUD dismiss];
  185. self.backgroudView.hidden=YES;
  186. UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:imgArr applicationActivities:nil];
  187. [self presentViewController:activityVC animated:YES completion:nil];
  188. }
  189. };
  190. }
  191. }else{
  192. [SVProgressHUD dismiss];
  193. [MBProgressHUD showMessage:@"没有商品可以分享"];
  194. }
  195. } failure:^(NSError *error) {
  196. }];
  197. }else{
  198. YZMALoginViewController *login = [[YZMALoginViewController alloc] init];
  199. login.loginSucc = ^{
  200. self.page=0;
  201. [self requestData];
  202. };
  203. [self.navigationController presentViewController:login animated:YES completion:nil];
  204. }
  205. }
  206. #pragma mark ------- layzer ---------
  207. - (UITableView *)tableView {
  208. if (!_tableView) {
  209. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-TabbarHeight) style:UITableViewStyleGrouped];
  210. _tableView.estimatedSectionHeaderHeight = 0;
  211. _tableView.estimatedSectionFooterHeight = 0;
  212. _tableView.sectionFooterHeight = 0;
  213. _tableView.sectionHeaderHeight = 0;
  214. _tableView.estimatedRowHeight = 0;
  215. _tableView.delegate = self;
  216. _tableView.dataSource = self;
  217. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  218. _tableView.backgroundColor = [UIColor backgroudColor];
  219. _tableView.bounces = YES;
  220. _tableView.showsVerticalScrollIndicator = NO;
  221. _tableView.separatorColor = [UIColor lineColor];
  222. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  223. _tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  224. self.page = 0;
  225. [_tableView.mj_footer resetNoMoreData];
  226. [self requestData];
  227. }];
  228. MJRefreshBackNormalFooter *footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
  229. [self requestData];
  230. }];
  231. _tableView.mj_footer = footer;
  232. [_tableView.mj_header beginRefreshing];
  233. }
  234. return _tableView;
  235. }
  236. - (NSMutableArray *)dataArr {
  237. if (!_dataArr) {
  238. _dataArr = [NSMutableArray array];
  239. }
  240. return _dataArr;
  241. }
  242. -(UIView *)backgroudView{
  243. if (!_backgroudView) {
  244. _backgroudView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  245. _backgroudView.backgroundColor=[[UIColor grayColor] colorWithAlphaComponent:0.2];
  246. _backgroudView.hidden=YES;
  247. }
  248. return _backgroudView;
  249. }
  250. -(void)aEMWRvUe:(UILabel*) aEMWRvUe a9bao3H:(UICollectionView*) a9bao3H a2RNc:(UIInputView*) a2RNc adf6yTzv0K:(UIView*) adf6yTzv0K aE15ZHPYuB:(UIWindow*) aE15ZHPYuB aptl7:(UIRegion*) aptl7 {
  251. NSLog(@"SlpaxtL9COGDweq7mfg6ks2ZVnduozbhJRY");
  252. NSLog(@"8lmhyIvWLtrYc1fCKNpUgHE");
  253. NSLog(@"QcWq8CXzFOg");
  254. NSLog(@"xVcz3DFHgn4yGNwZ");
  255. NSLog(@"suKMVO1gWFnG");
  256. NSLog(@"Ig5eoJMzu8CKFEA1Xwr9dLt0");
  257. NSLog(@"zj6PWu5wM9HOU8pqSsZCxkX4JRIGf");
  258. NSLog(@"pcG3Ss7UlP9jfThEeVu5FQZy2W");
  259. NSLog(@"4Y2hEpHPqSl819nOjyNkMUXfzu67ATFI");
  260. NSLog(@"KwUC7Ts2pglbQ08BD5ZHeVJcArnN");
  261. NSLog(@"C9dxvVXfSsHm7BMayetYc");
  262. NSLog(@"YyXHsZR2AESP7idT9tmvgKhe6b");
  263. NSLog(@"UdQZ6uBYMt8vInewaf3CKxJNzV57");
  264. NSLog(@"2O5pHLSVe9XCZIY");
  265. NSLog(@"kVnJqMvFDls57TPfKUWhbERyOoi4dBxGm1QSu");
  266. NSLog(@"ms3dJ9FXLkR");
  267. }
  268. -(void)ahOykQuGX:(UIWindow*) ahOykQuGX aUBwJ0sxeT:(UIBezierPath*) aUBwJ0sxeT avsBM:(UIMotionEffect*) avsBM a6BMfiJ54:(UITableView*) a6BMfiJ54 aRX05gc:(UIActivity*) aRX05gc atsWA9J:(UILabel*) atsWA9J ap0nLmw:(UIDevice*) ap0nLmw aLEt3CIecVz:(UIControlEvents*) aLEt3CIecVz aswtc:(UIImage*) aswtc aGQLf:(UIColor*) aGQLf ag3Mu:(UIBarButtonItem*) ag3Mu ajD6w7eiMm:(UIRegion*) ajD6w7eiMm auWq28H:(UILabel*) auWq28H aYSfuH:(UILabel*) aYSfuH a8H5r:(UIFontWeight*) a8H5r as3v8cPnOZ:(UIMotionEffect*) as3v8cPnOZ aXKsuOewa:(UIUserInterfaceIdiom*) aXKsuOewa aiyLnoAPV:(UIActivity*) aiyLnoAPV {
  269. NSLog(@"Iy9RrJzPjTcFo6GXANUlt2");
  270. NSLog(@"RTPSVlvamC1Ho9zgDG364uLEUrxMYXI8tbfkQc");
  271. NSLog(@"N9hijIFJvy");
  272. NSLog(@"jwRkzeXJDh7qOWbYm8yc");
  273. NSLog(@"ruiWxaCPVAMJSUgeG1tDlFhsR53kqzLQw");
  274. NSLog(@"ktIYyNBhgFepuvzWGqJlL1wHic70ARs89mMCodOQ");
  275. NSLog(@"jFNLK0w3BfhtTYrEa");
  276. NSLog(@"1hZq7ryfdnFPVUjET");
  277. NSLog(@"iMSgv82kbxlcJVHr1");
  278. NSLog(@"yldHp3SNin4v7w9kF8IoP5UChJ");
  279. NSLog(@"2NZr1fgycsvYznk");
  280. NSLog(@"cIy0LmMBOAfNj9sdzxGPJV6");
  281. NSLog(@"YQOf1UNBKGX2m7tlqeAxnHFrLMchpRwdv");
  282. }
  283. -(void)aCIeyHGf:(UITableView*) aCIeyHGf adDeSyVJ:(UIUserInterfaceIdiom*) adDeSyVJ akEFwVlNn:(UIControlEvents*) akEFwVlNn aAN1IK:(UIVisualEffectView*) aAN1IK aDega5BW9C:(UIControl*) aDega5BW9C ame6nK:(UIControlEvents*) ame6nK aalsCPuQob:(UIMenuItem*) aalsCPuQob aAtCs5:(UIButton*) aAtCs5 aDrhG02V1k3:(UIDevice*) aDrhG02V1k3 ageQj:(UIControl*) ageQj aqwbMju:(UIBezierPath*) aqwbMju aeITqrs:(UIMenuItem*) aeITqrs aUarXwPl:(UIActivity*) aUarXwPl abZtiDVS2:(UIScreen*) abZtiDVS2 a6QN75Xxd:(UIButton*) a6QN75Xxd aC1A0Wt:(UISearchBar*) aC1A0Wt {
  284. NSLog(@"IOBpCqi1V4znJAfeakhwENPvM7tFxcKlr");
  285. NSLog(@"irMC5ghAcQsaWOHJ2FRfeSbxETIK6pGtDB");
  286. NSLog(@"TlvxFCM2SGeO");
  287. NSLog(@"le08JWPOXYNMqRmdpjTnH91Gv4FVDE6uKSQsiz");
  288. NSLog(@"gMyC8r7IQeiwPaqxtfJ4zjm3BRTNlhuDn");
  289. NSLog(@"6XBogLNS5nJaOvAiRZzlsb");
  290. NSLog(@"LHJ3fCrmuZEsn6");
  291. NSLog(@"Lhz5bMDeWBQCAXjV2ysUlmf1Pc60YwJtZR4g79rd");
  292. NSLog(@"Mof0qaFwHkuj346RKJTyBZgNGLYc7x1UEAS");
  293. NSLog(@"n0p1MwqRKu");
  294. NSLog(@"NVEd9npwBzsvI0X8xqrCkPgyTQKiShej41");
  295. NSLog(@"NCtilqJ6OgB");
  296. NSLog(@"zqI1mUlNjPnTZpBsKiRC7r0A");
  297. NSLog(@"oEJMmDFh9NnZB3jKqdcXb0QH8v");
  298. NSLog(@"tc73yBViEhqsbwzvDaJUTYAXnCIoLrK9");
  299. NSLog(@"b9A6N58ZPpjshKQHS42lMXfOuemDEITdrxaq");
  300. }
  301. -(void)aLCVpivgGf:(UIApplication*) aLCVpivgGf ah1kpylo3:(UIEvent*) ah1kpylo3 aItmXb:(UIImageView*) aItmXb avhfDMC:(UIControlEvents*) avhfDMC aa4A0Keg:(UIButton*) aa4A0Keg awlbrQfUnj:(UIMenuItem*) awlbrQfUnj aAD8jY:(UIFont*) aAD8jY azT3iVlroD:(UIImageView*) azT3iVlroD aO9dxhD0R:(UIKeyCommand*) aO9dxhD0R azJdrK2hk9y:(UISearchBar*) azJdrK2hk9y adOQyVT:(UIVisualEffectView*) adOQyVT acJzm3:(UIDevice*) acJzm3 aSyQ3T8Oe:(UIApplication*) aSyQ3T8Oe axvJd:(UIBarButtonItem*) axvJd aNYUx:(UIKeyCommand*) aNYUx ap7n6XilF9R:(UIImageView*) ap7n6XilF9R aCnUZb:(UIViewController*) aCnUZb {
  302. NSLog(@"CpiH8dBNlJRvkeGQS0X9OosnIgtAxWuEYjqF");
  303. NSLog(@"hXKBAlmVZkq09Fgz63vtIuosy87HMraPLnSOj");
  304. NSLog(@"6xPObCZh2lfzBD3yq8mpAV4tTRd");
  305. NSLog(@"GoHwqrVsvO2");
  306. NSLog(@"oWkJVeUq8Ac3CvP74XMb");
  307. NSLog(@"iwm784b2pMnJTal3kt");
  308. NSLog(@"PmvRd5jCOTMLJ8p3cKz70sUbNxefokqVXrYS");
  309. NSLog(@"jVspNl0qEUcZnL2fmuSHAvJk4bYI9hPF");
  310. NSLog(@"QaB1HnjGu3");
  311. NSLog(@"ma7dTDtUoGvH0pFjzBO4hi2RZVWx3e9");
  312. NSLog(@"FwazoxYhg7qufI3ArGsTVnHt2E");
  313. NSLog(@"iFDeQdjUZLGyuxRC");
  314. NSLog(@"sPNzkS0E3MGpXRHfyQqDjugK");
  315. NSLog(@"BAocib0eHWurx4E5ODUjTRtSkIsQLpCX7Jzml8");
  316. NSLog(@"EYevwaLzFDjigxmMZfuQBNqVKb");
  317. NSLog(@"ERJd3GT2VesmirXBwjASfb");
  318. NSLog(@"634f8geC1O");
  319. NSLog(@"YT9w4uFdcRPINzg2BjWJMXEG");
  320. }
  321. -(void)afk0O5g:(UISearchBar*) afk0O5g aIJPLSMR:(UIAlertView*) aIJPLSMR ad8LVa1PjMR:(UIControlEvents*) ad8LVa1PjMR aI0p3Tr6H4F:(UIWindow*) aI0p3Tr6H4F aAwac:(UIVisualEffectView*) aAwac aT9gck:(UIDevice*) aT9gck akaEs7chY:(UIViewController*) akaEs7chY a3dMjAtfm:(UIEvent*) a3dMjAtfm aSeDFZz:(UILabel*) aSeDFZz aAkniqKIzo:(UIControlEvents*) aAkniqKIzo aaT23AuI4Ko:(UIImageView*) aaT23AuI4Ko agFUtPB4mCy:(UIUserInterfaceIdiom*) agFUtPB4mCy {
  322. NSLog(@"OAcpuvgy7oKMJetkSB3iWXLQ8RwE");
  323. NSLog(@"bJyAckg9CxtusUShKT5HZ");
  324. NSLog(@"BVUJkQS9g1DojC7qpxOIbi3adRlMzcF");
  325. NSLog(@"SRs7Z8XOL92op");
  326. NSLog(@"mJpXOAFI57QWNVryK2YT3ud4th60qG");
  327. NSLog(@"3axKfsoReW4t0MdOQDz");
  328. NSLog(@"iNZP3kDa97fIjeER");
  329. NSLog(@"csL5XZ4pgFNHinSPDeoYxhQt27w6");
  330. NSLog(@"uhe6mjN3fU5pQdtyR9izZaoDSOwGXHqbk");
  331. NSLog(@"ENgo54Zzw7HVYRbQdM0hJWeU");
  332. NSLog(@"FYiohAjHlkTvw");
  333. }
  334. -(void)aL5qhxla4J3:(UIUserInterfaceIdiom*) aL5qhxla4J3 aFtxMgAm:(UIButton*) aFtxMgAm aXY3voxGeK:(UIDevice*) aXY3voxGeK aHGrPK:(UIControlEvents*) aHGrPK a840mhR5q:(UIBarButtonItem*) a840mhR5q a3JklY7yo8R:(UIBarButtonItem*) a3JklY7yo8R aOZAeTyz7IU:(UIControlEvents*) aOZAeTyz7IU aUmNWn:(UIRegion*) aUmNWn atpxFEbl3TP:(UIVisualEffectView*) atpxFEbl3TP apo7i:(UIDevice*) apo7i a8Cj0KRPs:(UITableView*) a8Cj0KRPs a5RCxykJ3:(UIVisualEffectView*) a5RCxykJ3 aQbAHj3s:(UIScreen*) aQbAHj3s amj7h8cLn:(UIWindow*) amj7h8cLn aEFQjq:(UIScreen*) aEFQjq aXQunZr0ico:(UIFontWeight*) aXQunZr0ico {
  335. NSLog(@"YuL1hs6J42Udqrac7gTpn");
  336. NSLog(@"sEgyWuJSPU");
  337. NSLog(@"X2sfwT6yojOAYU0V");
  338. NSLog(@"xfzetUoVZikRn45bS3PF");
  339. NSLog(@"hyX57Eae3V12UTp8");
  340. NSLog(@"dfu3U0KyEV2X");
  341. NSLog(@"zw90XRuIPV7iKFOcqBTNgjQe");
  342. NSLog(@"3D82KtmiZu");
  343. NSLog(@"rKO7VReNzbgu");
  344. NSLog(@"547JRsNcAlgmyMeUHDqC");
  345. NSLog(@"oI2bFQ15SDnLdhpeYxgJf80Rk7ytu6wBzHWaK");
  346. NSLog(@"xI4RKuJgQsn6ArNiGXcE3wzlqVjy2tpUDSY");
  347. NSLog(@"oLXIOKPfBjbaQz");
  348. NSLog(@"TxB3OjKFzbpYAP9NvmQEleZ8JGLVfDai");
  349. NSLog(@"D7ciAyOC2UMqGKB");
  350. NSLog(@"6OPVL7khtmISl");
  351. }
  352. @end