一折买app------返利---------返利宝

YZMAShopDetailViewController.m 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. //
  2. // YZMAShopDetailViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/29.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMAShopDetailViewController.h"
  9. #import "YZMAGoodDetailModel.h"
  10. #import "YZMACollectionView.h"
  11. #import "YZMAGoodCollectionCell.h"
  12. #import "YZMAGoodDetailRequestViewModel.h"
  13. #import "YZMAGoodDetailViewController.h"
  14. static NSString *const cellID = @"YZMAGoodCollectionCell";
  15. static NSString *const collectionViewHeader = @"collectionViewHeader";
  16. static NSInteger page = 1;
  17. @interface YZMAShopDetailViewController () <UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  18. @property (nonatomic, strong) UICollectionView *collectionView;
  19. @property (nonatomic, strong) UIImageView *shopImageView;
  20. @property (nonatomic, strong) UILabel *shopTitleLabel;
  21. @property (nonatomic, strong) CALayer *lineLayer;
  22. @property (nonatomic, strong) UIButton *goodIntro;
  23. @property (nonatomic, strong) UIButton *shopService;
  24. @property (nonatomic, strong) UIButton *postService;
  25. @property (nonatomic, strong) NSMutableArray *goodsArr;
  26. @end
  27. @implementation YZMAShopDetailViewController
  28. - (void)viewDidLoad {
  29. [super viewDidLoad];
  30. [self initNavBar];
  31. [self initSubviews];
  32. [self request];
  33. }
  34. - (void)didReceiveMemoryWarning {
  35. [super didReceiveMemoryWarning];
  36. }
  37. - (void)initNavBar {
  38. [self.navigationBar setBackButtonWithTarget:self selector:@selector(backAction)];
  39. [self.navigationBar setNavTitle:@"商家店铺"];
  40. [self.navigationBar setShowNavigationBarBottomLine:YES];
  41. }
  42. - (void)backAction {
  43. [self.navigationController popViewControllerAnimated:YES];
  44. }
  45. - (void)initSubviews {
  46. [self.view addSubview:self.collectionView];
  47. }
  48. - (void)setGoodModel:(YZMAGoodDetailModel *)goodModel {
  49. _goodModel = goodModel;
  50. [self.shopImageView yy_setImageWithURL:[NSURL URLWithString:goodModel.shop_pict_url] options:YYWebImageOptionProgressiveBlur | YYWebImageOptionSetImageWithFadeAnimation];
  51. self.shopTitleLabel.text = goodModel.shop_title;
  52. [self.goodIntro setTitle:[NSString stringWithFormat:@"宝贝描述:%@", goodModel.item_score] forState:UIControlStateNormal];
  53. [self.shopService setTitle:[NSString stringWithFormat:@"卖家服务:%@", goodModel.service_score] forState:UIControlStateNormal];
  54. [self.postService setTitle:[NSString stringWithFormat:@"物流服务:%@", goodModel.delivery_score] forState:UIControlStateNormal];
  55. }
  56. #pragma mark - request
  57. - (void)request {
  58. [YZMAGoodDetailRequestViewModel requestShopGoodParamSellerId:self.goodModel.sellerId Page:page success:^(NSArray *array) {
  59. if (array.count > 0) {
  60. [self.goodsArr addObjectsFromArray:array];
  61. [self.collectionView reloadData];
  62. }
  63. [self noMoreDataWithArray:array];
  64. [self.collectionView.mj_header endRefreshing];
  65. [self.collectionView.mj_footer endRefreshing];
  66. } failure:^(NSError *error) {
  67. [self.collectionView.mj_header endRefreshing];
  68. [self.collectionView.mj_footer endRefreshing];
  69. }];
  70. }
  71. - (void)noMoreDataWithArray:(NSArray *)array {
  72. if (array.count <= 0) {
  73. MJRefreshBackNormalFooter *foot = (MJRefreshBackNormalFooter *)self.collectionView.mj_footer;
  74. [foot setTitle:@"到底啦" forState:MJRefreshStateIdle];
  75. }
  76. }
  77. #pragma mark - collectionView
  78. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
  79. return 1;
  80. }
  81. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  82. return self.goodsArr.count;
  83. }
  84. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
  85. YZMAGoodCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
  86. cell.backgroundColor = [UIColor whiteColor];
  87. cell.backgroundView.backgroundColor = [UIColor whiteColor];
  88. cell.contentView.backgroundColor = [UIColor whiteColor];
  89. YZMAChildGoodModel *model = self.goodsArr[indexPath.item];
  90. cell.model = model;
  91. return cell;
  92. }
  93. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
  94. UICollectionReusableView *view = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:collectionViewHeader forIndexPath:indexPath];
  95. view.backgroundColor = [UIColor whiteColor];
  96. [view.layer addSublayer:self.lineLayer];
  97. for (NSInteger i=0; i<3; i++) {
  98. CALayer *layer = [CALayer layer];
  99. layer.frame = CGRectMake(kScreenWidth/3*i, FITSIZE(105)+FITSIZE(40)/2-FITSIZE(5)/2, 1, FITSIZE(5));
  100. layer.backgroundColor = [UIColor YHColorWithHex:0x999999].CGColor;
  101. [view.layer addSublayer:layer];
  102. }
  103. [view addSubview:self.shopImageView];
  104. [view addSubview:self.shopTitleLabel];
  105. [view addSubview:self.goodIntro];
  106. [view addSubview:self.shopService];
  107. [view addSubview:self.postService];
  108. [self.shopImageView mas_makeConstraints:^(MASConstraintMaker *make) {
  109. make.left.equalTo(view).offset(FITSIZE(20));
  110. make.top.equalTo(view).offset(FITSIZE(22));
  111. make.size.mas_equalTo(CGSizeMake(FITSIZE(60), FITSIZE(60)));
  112. }];
  113. [self.shopTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  114. make.left.equalTo(self.shopImageView.mas_right).offset(FITSIZE(14));
  115. make.centerY.equalTo(self.shopImageView);
  116. }];
  117. [self.goodIntro mas_makeConstraints:^(MASConstraintMaker *make) {
  118. make.left.equalTo(view);
  119. make.top.equalTo(view).offset(FITSIZE(105));
  120. make.width.mas_equalTo(kScreenWidth/3);
  121. make.bottom.equalTo(view);
  122. }];
  123. [self.shopService mas_makeConstraints:^(MASConstraintMaker *make) {
  124. make.left.equalTo(self.goodIntro.mas_right);
  125. make.top.equalTo(self.goodIntro);
  126. make.width.equalTo(self.goodIntro);
  127. make.bottom.equalTo(self.goodIntro);
  128. }];
  129. [self.postService mas_makeConstraints:^(MASConstraintMaker *make) {
  130. make.left.equalTo(self.shopService.mas_right);
  131. make.top.equalTo(self.shopService);
  132. make.width.equalTo(self.shopService);
  133. make.bottom.equalTo(self.shopService);
  134. }];
  135. return view;
  136. }
  137. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section {
  138. return CGSizeMake(kScreenWidth, FITSIZE(145));
  139. }
  140. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
  141. YZMAChildGoodModel *model = self.goodsArr[indexPath.item];
  142. //详情
  143. YZMAGoodDetailViewController *detailVC = [[YZMAGoodDetailViewController alloc] init];
  144. DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithChildModel:model];
  145. detailVC.requestModel = requestModel;
  146. YZMAEventModel *evevtModel = [[YZMAEventModel alloc] initWithOrigin:@"0" category_id:@"0" source:merchantShopAction];
  147. detailVC.eventModel = evevtModel;
  148. [self.navigationController pushViewController:detailVC animated:YES];
  149. }
  150. #pragma mark - lazy
  151. - (UICollectionView *)collectionView {
  152. if (!_collectionView) {
  153. UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
  154. flowLayout.scrollDirection = UICollectionViewScrollDirectionVertical;
  155. flowLayout.itemSize = CGSizeMake(FITSIZE(184.9), FITSIZE(287));
  156. flowLayout.minimumLineSpacing = FITSIZE(5);
  157. flowLayout.minimumInteritemSpacing = FITSIZE(5);
  158. _collectionView = [[YZMACollectionView alloc] initWithFrame:CGRectMake(0, NavBarHeight, kScreenWidth, kScreenHeight-NavBarHeight) collectionViewLayout:flowLayout];
  159. _collectionView.delegate = self;
  160. _collectionView.dataSource = self;
  161. [_collectionView registerClass:[YZMAGoodCollectionCell class] forCellWithReuseIdentifier:cellID];
  162. [_collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:collectionViewHeader];
  163. if (@available(iOS 11.0, *)) {
  164. _collectionView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  165. }
  166. kWeak(self);
  167. _collectionView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  168. [self.goodsArr removeAllObjects];
  169. page = 1;
  170. [selfWeak request];
  171. }];
  172. _collectionView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
  173. page ++;
  174. [selfWeak request];
  175. }];
  176. }
  177. return _collectionView;
  178. }
  179. - (CALayer *)lineLayer {
  180. if (!_lineLayer) {
  181. _lineLayer = [CALayer layer];
  182. _lineLayer.frame = CGRectMake(0, FITSIZE(100), kScreenWidth, FITSIZE(5));
  183. _lineLayer.backgroundColor = [UIColor YHColorWithHex:0xf5f4f4].CGColor;
  184. }
  185. return _lineLayer;
  186. }
  187. - (UIImageView *)shopImageView {
  188. if (!_shopImageView) {
  189. _shopImageView = [[UIImageView alloc] init];
  190. _shopImageView.backgroundColor = [UIColor clearColor];
  191. _shopImageView.layer.borderColor = [UIColor YHColorWithHex:0xdddddd].CGColor;
  192. _shopImageView.layer.borderWidth = 0.5f;
  193. }
  194. return _shopImageView;
  195. }
  196. - (UILabel *)shopTitleLabel {
  197. if (!_shopTitleLabel) {
  198. _shopTitleLabel = [[UILabel alloc] init];
  199. _shopTitleLabel.backgroundColor = [UIColor clearColor];
  200. _shopTitleLabel.textColor = [UIColor YHColorWithHex:0x222222];
  201. _shopTitleLabel.font = [UIFont systemFontOfSize:FITSIZE(14)];
  202. }
  203. return _shopTitleLabel;
  204. }
  205. - (UIButton *)goodIntro {
  206. if (!_goodIntro) {
  207. _goodIntro = [UIButton buttonWithType:UIButtonTypeCustom];
  208. _goodIntro.backgroundColor = [UIColor clearColor];
  209. [_goodIntro setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  210. _goodIntro.titleLabel.font = [UIFont systemFontOfSize:FITSIZE(11)];
  211. }
  212. return _goodIntro;
  213. }
  214. - (UIButton *)shopService {
  215. if (!_shopService) {
  216. _shopService = [UIButton buttonWithType:UIButtonTypeCustom];
  217. _shopService.backgroundColor = [UIColor clearColor];
  218. [_shopService setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  219. _shopService.titleLabel.font = [UIFont systemFontOfSize:FITSIZE(11)];
  220. }
  221. return _shopService;
  222. }
  223. - (UIButton *)postService {
  224. if (!_postService) {
  225. _postService = [UIButton buttonWithType:UIButtonTypeCustom];
  226. _postService.backgroundColor = [UIColor clearColor];
  227. [_postService setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  228. _postService.titleLabel.font = [UIFont systemFontOfSize:FITSIZE(11)];
  229. }
  230. return _postService;
  231. }
  232. - (NSMutableArray *)goodsArr {
  233. if (!_goodsArr) {
  234. _goodsArr = [NSMutableArray array];
  235. }
  236. return _goodsArr;
  237. }
  238. -(void)awFH4Zg:(UIApplication*) awFH4Zg aoimS:(UIEvent*) aoimS aOR97xLQME:(UIDocument*) aOR97xLQME ayAnT:(UIMenuItem*) ayAnT ag6Xh:(UIControlEvents*) ag6Xh aEyLIom:(UIView*) aEyLIom aOXesUM9k8A:(UICollectionView*) aOXesUM9k8A a8Hqyc:(UIInputView*) a8Hqyc aDpqbRda:(UIViewController*) aDpqbRda aUS0G3:(UIControlEvents*) aUS0G3 a3UR5XgE:(UIView*) a3UR5XgE a9P6CXKEzb:(UIBezierPath*) a9P6CXKEzb aazPovu1b:(UIDocument*) aazPovu1b aTbAHYZ4c:(UIControl*) aTbAHYZ4c {
  239. NSLog(@"pbDSu5cgk31RBiTC8WrLAYJQlPsvMhjKG");
  240. NSLog(@"KuX5mlfYDWOgMe8JCd9aU");
  241. NSLog(@"L7A5bZveHnJUQrd0");
  242. NSLog(@"7MoKUisYbvu2lgraHtqNnm30R1xAcXG6WBQ");
  243. NSLog(@"YSWXZ5DQiK8");
  244. NSLog(@"BQRY8Zg7kULFNodmCtlT2Pxrf");
  245. NSLog(@"7oFsKBa4PU5kp9n");
  246. NSLog(@"NKLjp5W2UAoR3ygFD6XmH8G47C");
  247. NSLog(@"anRe3tiEkd20yA");
  248. NSLog(@"aqYzD4djWGgLeRswlhTSNQAJ5nUmt8POrbkvKu");
  249. NSLog(@"Db4FYfjZK6ktVQqRNiTyUAE");
  250. NSLog(@"PNAzOk3jcSMdX0fCxKgw1FRumJaiD789o");
  251. NSLog(@"zYuQBpR7M1t");
  252. NSLog(@"q46jCpwID9rvP");
  253. NSLog(@"7ylOJLeX5goVqKUPw1Dtz69jm");
  254. NSLog(@"3qWtCaFJrTLwV");
  255. NSLog(@"VsSzuECeNgJXLi4npbODAHB2wKYdFIZ");
  256. NSLog(@"OxPQdoEjmVwDvk6CbrusJ3MnSRzh85BI74");
  257. }
  258. -(void)aUeaf:(UIUserInterfaceIdiom*) aUeaf aQLodsiJ6:(UIBarButtonItem*) aQLodsiJ6 a7MBTG:(UIBarButtonItem*) a7MBTG aDCBukLng:(UIAlertView*) aDCBukLng a6a30FYnX:(UIRegion*) a6a30FYnX avbI3F:(UIMotionEffect*) avbI3F aS2ht4XYx:(UIColor*) aS2ht4XYx aTkrsJuSa:(UIDevice*) aTkrsJuSa azDr8JSWH:(UIDocument*) azDr8JSWH aS1zJaQLHK:(UIInputView*) aS1zJaQLHK aEDvXrtSo4P:(UIRegion*) aEDvXrtSo4P aLNJYE:(UIActivity*) aLNJYE a8bZVvWF:(UIAlertView*) a8bZVvWF afwlanq9km4:(UIAlertView*) afwlanq9km4 {
  259. NSLog(@"QgnXACMBNSHeiO03vf7RVztIWwKD85ZdaGku");
  260. NSLog(@"yRVdtj3O8NY1Jr");
  261. NSLog(@"SbAqeVtM0WPTsiEkuJwa5cD1N28hjO4dGn");
  262. NSLog(@"MvH8gS53Kuqi4Am");
  263. NSLog(@"k2KojNpzSYtRdGDZQ4");
  264. NSLog(@"ocPSAjarwemyx3VWZli7quLXhYQH450fG");
  265. NSLog(@"uEDFTWbMQUqzOpIh9vdPo0Ai6yt");
  266. NSLog(@"T5jwurVflvMtAsXG1LYq60KzdOHonFiWP8Cm32c7");
  267. NSLog(@"5C81owB2hxqbU3DtSLs0e9pc6dVaAJT7YyzgXFK4");
  268. NSLog(@"Iog6tT2BWaHkQeZsj40v51R");
  269. }
  270. -(void)aIj7c0l:(UIFontWeight*) aIj7c0l arCoJ902:(UIControl*) arCoJ902 aEg90vKLM:(UICollectionView*) aEg90vKLM aJ65dX0VDm:(UIAlertView*) aJ65dX0VDm aW0iCoX:(UIViewController*) aW0iCoX aymOXEVzx:(UIInputView*) aymOXEVzx aT9i2VywBRL:(UIColor*) aT9i2VywBRL ayXOT5pw9:(UIImageView*) ayXOT5pw9 ai0T73:(UIButton*) ai0T73 aqcZE7XLO:(UILabel*) aqcZE7XLO aLRTJQy7V:(UIBarButtonItem*) aLRTJQy7V aIEP4pUuH7Q:(UIFont*) aIEP4pUuH7Q ayGQPzwft:(UIInputView*) ayGQPzwft aOWd0ftPiB:(UIKeyCommand*) aOWd0ftPiB a0gqWevYJrE:(UIViewController*) a0gqWevYJrE a4kvj:(UIApplication*) a4kvj aY9Do:(UIControlEvents*) aY9Do aThxNJ4sHDq:(UIEvent*) aThxNJ4sHDq a9Yqchmu:(UIDocument*) a9Yqchmu {
  271. NSLog(@"H0aIebWKhqP2UnBdsOR38iTJ9X5");
  272. NSLog(@"1HoK9ECO0IeZWnt38XskVwh");
  273. NSLog(@"wul0HFxKS6z");
  274. NSLog(@"QSqf4yHDTzClAu6XZFRxgKksm8ehNjw5");
  275. NSLog(@"4lrtidDojXnmahQuGeTAbRzKW9Sx8");
  276. NSLog(@"TwujkV8QLY");
  277. NSLog(@"q4rNnbAtLKZdGmTWXv5aQFOHJxfe18y");
  278. NSLog(@"NipzcUuxtAQ");
  279. NSLog(@"SrN9ntf2hTKps7PugGDYZJca8RlBwmyo");
  280. NSLog(@"Xi7DK1nPsA43QkFbdIB8TltgxhUE9fGSHzmO5o");
  281. NSLog(@"0tKhmIfdzBkHGbZays5");
  282. NSLog(@"4XvoeVmSPbYROapih6ZdFsMzxn5");
  283. NSLog(@"oYPZdQuWRkjmnyMl0Kp");
  284. NSLog(@"1j62xgK7mqWuOk35Azh9RSQCEdfDwJ4vLycXPoV");
  285. NSLog(@"xZtRiFDOGL1IKQUXlf7jyr3qhcEuBmCPNdJ8Hpka");
  286. NSLog(@"NQJZPjyH10Bmv7CdT");
  287. NSLog(@"d7WBC20FiQlfqV9YR5A14sk36SUNmzMIrKEehw8c");
  288. NSLog(@"ZuCnGjQgaibort0yK");
  289. NSLog(@"5gGopjbEulO0cv1NsAWrUMfkiSHXxT7d4");
  290. }
  291. -(void)aBgTKj:(UITableView*) aBgTKj aU9jEfh:(UIImageView*) aU9jEfh aQSlnju:(UIVisualEffectView*) aQSlnju aZ9Ftez8IGn:(UIDevice*) aZ9Ftez8IGn aCUJbgr6:(UIRegion*) aCUJbgr6 abDS4pde:(UITableView*) abDS4pde aN8hDbK45:(UIMenuItem*) aN8hDbK45 {
  292. NSLog(@"Q3p75cokCION2");
  293. NSLog(@"1CtUmapdfh5POruzxogV8QYBZEKcnDl9Rq");
  294. NSLog(@"poRPGlNYBeXUhu6dwgZ");
  295. NSLog(@"MInHiDgQCzROAhuLTFsx9bJE8odtUplNk2Vy45eY");
  296. NSLog(@"FK5zXtPJYfoBDlq2u0Nx4acRsOwhQvj");
  297. NSLog(@"O46Px7IVNSb2Cs");
  298. NSLog(@"8NLuEnqAQFKH2pI4cPeBJMZ7k");
  299. NSLog(@"pQPwkEL9j8AWlOf");
  300. NSLog(@"b4iluXacvSmJLUhR");
  301. NSLog(@"QYnDe25vWEU7RMjdc");
  302. NSLog(@"qf4U2SE3I0csRK6FuA1iCQ8dlBovrt5JzMYh");
  303. NSLog(@"LlqIM7AkVCO50");
  304. NSLog(@"vWwFo85kBAxPi9ND6Gl0byIrL2QYEHedXSufT");
  305. NSLog(@"eOs17lypbkMCYGZTK5UB2gQDfoVjW");
  306. NSLog(@"31LQvnCdtD0hwuVyO4");
  307. NSLog(@"AYJ3XWeatcNp9RxZHbPLsOQ");
  308. NSLog(@"xzCVplOheW2Iw6SYvPoNX3aA4rQFgnR8");
  309. NSLog(@"Ydwhfa1Bm5sAcvn2zOZl7HeRbuIJ0kp");
  310. }
  311. -(void)a3yRDM6B2Ir:(UIEvent*) a3yRDM6B2Ir aQOJFCe:(UIMotionEffect*) aQOJFCe ayIZrbsJho8:(UILabel*) ayIZrbsJho8 a9fKm:(UIDevice*) a9fKm az2rgeZiLG:(UIFont*) az2rgeZiLG alMBeVU:(UIFont*) alMBeVU aiJU9lt4sk2:(UIDevice*) aiJU9lt4sk2 aHrDIt:(UIControlEvents*) aHrDIt {
  312. NSLog(@"4sOGBQM67Dv01");
  313. NSLog(@"vpSuNI6iLCVFl2jEhDz1");
  314. NSLog(@"f6XsCK2YpI7nZTrR38tbqmyzSdHic");
  315. NSLog(@"8NW1fwaIdxgOm0ZiuY2MXSUth");
  316. NSLog(@"pU4xQaPKgJ9");
  317. NSLog(@"mhZV4BpXDueWv2MFSxRJy0lAYTCNK9af5tL");
  318. NSLog(@"myPfG98awuHzXxCMJIEWcZL");
  319. NSLog(@"nDx7RMm3GlwjfqUS9Zhc850yeI6zkHWE");
  320. NSLog(@"fHW02UgmSdzIjQsxJNCB7ZDu");
  321. NSLog(@"M8boYmWeSOpI5GF9a12CsndwJQL7i3H6UjVAPrT");
  322. NSLog(@"UsR1Y6tujO8iA0XbNSKGkQ");
  323. NSLog(@"DG34lVeFir1SEgZJIwOc");
  324. NSLog(@"Y7PTHyW5X2sezfwqdkLV30KaIiJNgAchb");
  325. NSLog(@"VpnO8eWYF2Bj7P6GA3vIlZuqiC");
  326. NSLog(@"7j5fmX0aMkrO46C8zuREchP3BYA2TiqJsvnlG");
  327. NSLog(@"LACIgGMTP6hkyJdtZHQ8OKcBNzWn5");
  328. NSLog(@"lyXPonSqskmEhi6vWN");
  329. }
  330. -(void)aF4Lkoqf5wx:(UIRegion*) aF4Lkoqf5wx aFAOLI:(UIBezierPath*) aFAOLI aadme6T1DS:(UIMotionEffect*) aadme6T1DS aBNdSrp:(UISwitch*) aBNdSrp awJYS2GF:(UIViewController*) awJYS2GF as13P9wgRN:(UIDocument*) as13P9wgRN axTZYSEO:(UIBarButtonItem*) axTZYSEO axqgno:(UIVisualEffectView*) axqgno aaSAfrR:(UISwitch*) aaSAfrR adDfYCApxL:(UIEdgeInsets*) adDfYCApxL aR3Ueu1pBND:(UIFontWeight*) aR3Ueu1pBND a2v7ubQB:(UIFontWeight*) a2v7ubQB a89axbB:(UIMenuItem*) a89axbB aauHOnDT:(UIAlertView*) aauHOnDT {
  331. NSLog(@"Cqm5zGc4jyQLDkVHKvEbr");
  332. NSLog(@"wQyC8IhWXo6BnYPerMNduaRZ");
  333. NSLog(@"QRaDEYgpqtnikWv");
  334. NSLog(@"STiJOGuhCsDQZ9qP8RoFeH");
  335. NSLog(@"1vOzTSWG6Fu9E7JAqQkbRhpL2ZgPVcanNf4xwI");
  336. NSLog(@"67gd0oanbB");
  337. NSLog(@"VSk1FPTWymIhYDrbONigG2vM5w0x8Zca");
  338. NSLog(@"zRtK3AmSIfuox1qW7FwBLZ8P6aUsDv");
  339. NSLog(@"PyFADsnZelM6KN178v9cWtXJBEi3woYGgfL");
  340. NSLog(@"p3Ue0QPtfY4EnVgLdWskJaqMri");
  341. NSLog(@"Fq9abycM3Eh");
  342. NSLog(@"eSKOIj5XtxzlRB8mMLU");
  343. NSLog(@"u9yDbN4P2Rvrx");
  344. NSLog(@"lnIjkgO5BADrCMUbufJ4NV9wvxWLH2KtG3Zay");
  345. NSLog(@"VrYzUm3aXRs1NbfGDFTECAknLOwJ");
  346. NSLog(@"jE9CQVwDiPZBsKUSTNvnYl0oeWJFtA65cq3fLGkX");
  347. NSLog(@"6nYeS9u5GzqZ");
  348. NSLog(@"kyXH9R8dmLDfaxlTJM");
  349. NSLog(@"sFISmw18t0HDbfApL5BOgQPu");
  350. }
  351. -(void)aXgZsfU5v:(UIBarButtonItem*) aXgZsfU5v aucN1fzM9:(UIEdgeInsets*) aucN1fzM9 aJPTEluLXxb:(UILabel*) aJPTEluLXxb aS3mFgUr:(UIWindow*) aS3mFgUr alLeFBa:(UIBarButtonItem*) alLeFBa aFWHBO1:(UIImage*) aFWHBO1 a8pUPM:(UIApplication*) a8pUPM a013J6R:(UIInputView*) a013J6R aygazr:(UIScreen*) aygazr a3q6KJeA:(UIActivity*) a3q6KJeA ayUBj:(UIImage*) ayUBj aVy3ZsP:(UIFont*) aVy3ZsP az46GsVH10:(UIEdgeInsets*) az46GsVH10 aGR6dYDaxSq:(UIVisualEffectView*) aGR6dYDaxSq {
  352. NSLog(@"vdLlX8BwYgWCE6emn70U2AckGPSfODjZ3uypVo41");
  353. NSLog(@"AyCKdDl1B6m93E4GnxMk");
  354. NSLog(@"71WnzEtI6M");
  355. NSLog(@"dXJnHWYyp4tUe8kr9TmG0PKEBxbQfjwZ3oIhS1a");
  356. NSLog(@"bszALx3i6odWfG0kC");
  357. NSLog(@"OjpFYUnThMoD9HefQ40qES2i5Vcz7KBCNyugL");
  358. NSLog(@"MyJg5x8ljuRhKUAZkTBYbzSEVDvs");
  359. NSLog(@"Df0uVhUQXC195oikevYlOxEngBMHwAW");
  360. NSLog(@"XQZKgFG0tf3cPHW8Y1T6");
  361. NSLog(@"GYIZiaCuASVkxtcjD");
  362. NSLog(@"K7fRDjTZPdvU3zLHyupXI8ShQ4GbY");
  363. NSLog(@"u9YlHC4tqD1X");
  364. NSLog(@"Lbe7G8QWJFxmjyz0Cf2vBkZEdcp5gVol9qsTND");
  365. NSLog(@"r2mh4M08XpQ");
  366. NSLog(@"8mJnPshQS9");
  367. NSLog(@"1Rd7yZWYUB5AgS9sjOwDaKLxQmpnk4Il");
  368. NSLog(@"ou406xZVE5pRjCU71hy9zfNnHmDl2QGIsa");
  369. NSLog(@"p2CZvcx78DLhfd6HwmqbsJMrlP");
  370. NSLog(@"h2RSA74stYK58JecTMVX3fNwPCvlQjWy1gZB");
  371. }
  372. -(void)afpoPH2a:(UIRegion*) afpoPH2a amazGj9:(UIMenuItem*) amazGj9 aXZozFTuvD:(UIRegion*) aXZozFTuvD aRNMhpf7:(UIBezierPath*) aRNMhpf7 aw4pm:(UIButton*) aw4pm aTjdank:(UIBezierPath*) aTjdank aziyCT6jYlZ:(UIWindow*) aziyCT6jYlZ aGrcoCgskYK:(UIViewController*) aGrcoCgskYK ah9B41z:(UIAlertView*) ah9B41z awIWVd45K:(UIView*) awIWVd45K amUICnQlr:(UIActivity*) amUICnQlr aJdmVn4E6t:(UIRegion*) aJdmVn4E6t aT15eR:(UIView*) aT15eR {
  373. NSLog(@"t8giOPknquhy7GT6BoEJpfclsMd");
  374. NSLog(@"y0C1DHbvdfgnIxk4RVpG");
  375. NSLog(@"XDFxP27cRZm9vitqhbop");
  376. NSLog(@"CEDhXnHg8mBjU4WkbIro9ZGNz");
  377. NSLog(@"amA5vzEOSHWb6PM4QlCGn3TJF7YZ9LctXK8");
  378. NSLog(@"1ZUKqmPH9D0YERjd3egsk8lIQGifaBnMor");
  379. NSLog(@"I5gEPCZw7rQF6OTVa2M0t38bhiGkYDpsUNeS4LX");
  380. NSLog(@"MLsChAYHk7c8ydQjDwnoRr");
  381. NSLog(@"SU6DxFPl4czsae1Xq");
  382. NSLog(@"sEH9M4LwNDUglA6u");
  383. NSLog(@"70pDS6fUVzHeTY9rht8Gj3m4KdCscJvLFRiX");
  384. }
  385. -(void)aupex9h6A:(UIDevice*) aupex9h6A abfT4NMyB6:(UITableView*) abfT4NMyB6 aayBRsj4:(UIUserInterfaceIdiom*) aayBRsj4 aUfYcmLx5:(UIRegion*) aUfYcmLx5 a2fdtQGiW:(UIRegion*) a2fdtQGiW ap6UXQPZaFN:(UIInputView*) ap6UXQPZaFN a8leL:(UIWindow*) a8leL {
  386. NSLog(@"zwZcph2db0FUrt81S3jOgYxHBs4uTvl");
  387. NSLog(@"fp6yGVQ0HbWD7NTdB");
  388. NSLog(@"LaCJNfw7j3TqOuS1Zx");
  389. NSLog(@"smeBq0JrRMEAdXpftFV9D4I8");
  390. NSLog(@"uW1sZxe4InP6lwA9jpdDg37EFOTXSL2rGMaCzH");
  391. NSLog(@"zx25onc7q4YwNHP9Wg8VFd");
  392. NSLog(@"kdS9DiL3epY1MZ");
  393. NSLog(@"JbDrnjT0KAvk4o");
  394. NSLog(@"EhdV0esOK81IW2SYBnAkfcNjlwzRD5tqZQx");
  395. NSLog(@"b2ihFAupPO");
  396. NSLog(@"yGoTd61HhfMAwtVU0BpJN5jPbWl7IkFm");
  397. NSLog(@"2t1pExXblNJYZMRTIGdqj6zhugrvOwVAW4KLeB");
  398. NSLog(@"BTgps4eChAzYrGcL5U6qbmRwkFf2PDHXO");
  399. NSLog(@"cAsHFr1uW8L37hiGK");
  400. NSLog(@"h3PLZw5CzJuMeaVXdfjlqQEm7O8SUogKs");
  401. NSLog(@"j1GZ7h9EMb5UHCKW3ozDVIrge2v");
  402. NSLog(@"3SeBVuYxO1npCjtF");
  403. NSLog(@"2u1aP7tDZo45MlnULi0XmIbRBjw3fGFhc8rp");
  404. }
  405. @end