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

LZMCollectionTicketController.m 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. //
  2. // LZMCollectionTicketController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/24.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMCollectionTicketController.h"
  9. #import "LZMCollectionTicketCell.h"
  10. #import "LZMDateHeaderView.h"
  11. #import "LZMCollectionModel.h"
  12. #import "LZMGoodDetailViewController.h"
  13. #import "LZMSimilarGoodsController.h"
  14. #import "LZMLoginViewController.h"
  15. @interface LZMCollectionTicketController ()<UITableViewDelegate,UITableViewDataSource>
  16. @property (nonatomic, strong) UITableView *tableView;
  17. @property (nonatomic, strong) NSMutableArray *nearbyArr; // 即将过期的数组
  18. @property (nonatomic, strong) NSMutableArray *allDataArr;
  19. @end
  20. @implementation LZMCollectionTicketController
  21. - (void)viewDidLoad {
  22. [super viewDidLoad];
  23. [self configTableView];
  24. }
  25. - (void)viewWillAppear:(BOOL)animated {
  26. [super viewWillAppear:animated];
  27. [self configNoDataView];
  28. [self loadData];
  29. }
  30. - (void)configTableView {
  31. self.view.backgroundColor = [UIColor whiteColor];
  32. [self.view addSubview:self.tableView];
  33. }
  34. - (void)configNoDataView {
  35. self.tableView.showNoDataView = YES;
  36. if (![AccountTool isLogin]) {
  37. self.tableView.defaultNoDataText = @"未登录,点击登录";
  38. kWeak(self);
  39. self.tableView.defaultNoDataViewDidClickBlock = ^(UIView *view) {
  40. kStrong(self);
  41. LZMLoginViewController *login = [[LZMLoginViewController alloc] init];
  42. [self presentViewController:login animated:YES completion:nil];
  43. };
  44. }else {
  45. self.tableView.defaultNoDataText = @"暂无收藏数据,点击刷新";
  46. kWeak(self);
  47. self.tableView.defaultNoDataViewDidClickBlock = ^(UIView *view) {
  48. kStrong(self);
  49. [self loadData];
  50. };
  51. }
  52. }
  53. - (void)loadData {
  54. if (![AccountTool isLogin]) {
  55. return;
  56. }
  57. [LZMHttp post:MyCollectCollectTicket params:nil success:^(id json) {
  58. [self.allDataArr removeAllObjects];
  59. NSArray *detailList = json[@"goods_detail"];
  60. for (NSArray *arr in detailList) {
  61. NSMutableArray *items = (NSMutableArray *)[NSArray yy_modelArrayWithClass:[LZMCollectionModel class] json:arr];
  62. [self.allDataArr addObject:items];
  63. }
  64. self.nearbyArr = (NSMutableArray *)[NSArray yy_modelArrayWithClass:[LZMCollectionModel class] json:json[@"nearly_outdate"]];
  65. if (self.nearbyArr.count != 0) {
  66. [self.allDataArr insertObject:self.nearbyArr atIndex:0];
  67. }
  68. [self.tableView reloadData];
  69. } failure:^(NSError *error) {
  70. }];
  71. }
  72. /**
  73. 移除收藏
  74. */
  75. - (void)deleteCollectionGoodAtIndexPath:(NSIndexPath *)indexPath {
  76. LZMCollectionModel *model = self.allDataArr[indexPath.section][indexPath.row];
  77. NSDictionary *para = @{@"goods_id":model.goods_id};
  78. [LZMHttp post:DelCollectionTickets params:para success:^(id json) {
  79. // 删除模型
  80. NSMutableArray *mArr = self.allDataArr[indexPath.section];
  81. [mArr removeObjectAtIndex:indexPath.row];
  82. [self.allDataArr replaceObjectAtIndex:indexPath.section withObject:mArr];
  83. [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
  84. } failure:^(NSError *error) {
  85. }];
  86. }
  87. #pragma mark ------------------------
  88. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
  89. {
  90. [self deleteCollectionGoodAtIndexPath:indexPath];
  91. }
  92. /**
  93. * 修改Delete按钮文字为“删除”
  94. */
  95. - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
  96. {
  97. return @"删除";
  98. }
  99. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  100. NSArray *arr = self.allDataArr[section];
  101. return arr.count;
  102. }
  103. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  104. return self.allDataArr.count;
  105. }
  106. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  107. return 40;
  108. }
  109. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  110. LZMCollectionTicketCell *cell = [LZMCollectionTicketCell cellWithTableView:tableView];
  111. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  112. LZMCollectionModel *model = self.allDataArr[indexPath.section][indexPath.row];
  113. cell.model = model;
  114. cell.similarClick = ^{
  115. //找相似点击
  116. LZMSimilarGoodsController *similar = [[LZMSimilarGoodsController alloc] init];
  117. similar.goods_id = model.goods_id;
  118. [self.navigationController pushViewController:similar animated:YES];
  119. };
  120. return cell;
  121. }
  122. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  123. return 100;
  124. }
  125. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  126. LZMDateHeaderView *header = [[LZMDateHeaderView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 40)];
  127. LZMCollectionModel *model = [self.allDataArr[section] firstObject];
  128. [header setDateWith:model.collect_time];
  129. return header;
  130. }
  131. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  132. LZMCollectionModel *model = self.allDataArr[indexPath.section][indexPath.row];
  133. // if ([model.is_outdate boolValue]) {
  134. // //找相似
  135. // LZMSimilarGoodsController *similar = [[LZMSimilarGoodsController alloc] init];
  136. // similar.goods_id = model.goods_id;
  137. // [self.navigationController pushViewController:similar animated:YES];
  138. // }else {
  139. // LZMGoodDetailViewController *detail = [[LZMGoodDetailViewController alloc] init];
  140. // detail.goods_id = model.goods_id;
  141. // [self.navigationController pushViewController:detail animated:YES];
  142. // }
  143. LZMGoodDetailViewController *detail = [[LZMGoodDetailViewController alloc] init];
  144. DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithId:model.goods_id
  145. is_coupon:model.is_coupon
  146. coupon_price:model.coupon_price
  147. price:model.price
  148. discount_price:model.discount_price
  149. commission_rate:model.commission_rate
  150. coupon_start_time:model.coupon_start_time
  151. coupon_end_time:model.coupon_end_time];
  152. detail.requestModel = requestModel;
  153. [self.navigationController pushViewController:detail animated:YES];
  154. }
  155. #pragma mark ===================== layezer ==============
  156. - (UITableView *)tableView {
  157. if (!_tableView) {
  158. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-TabbarHeight) style:UITableViewStylePlain];
  159. _tableView.estimatedSectionHeaderHeight = 0;
  160. _tableView.estimatedSectionFooterHeight = 0;
  161. _tableView.sectionFooterHeight = 0;
  162. _tableView.sectionHeaderHeight = 0;
  163. _tableView.delegate = self;
  164. _tableView.dataSource = self;
  165. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  166. _tableView.backgroundColor = [UIColor yhGrayColor];
  167. _tableView.bounces = YES;
  168. _tableView.showsVerticalScrollIndicator = NO;
  169. // _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  170. }
  171. return _tableView;
  172. }
  173. - (NSMutableArray *)allDataArr {
  174. if (!_allDataArr) {
  175. _allDataArr = [NSMutableArray array];
  176. }
  177. return _allDataArr;
  178. }
  179. - (void)didReceiveMemoryWarning {
  180. [super didReceiveMemoryWarning];
  181. // Dispose of any resources that can be recreated.
  182. }
  183. /*
  184. #pragma mark - Navigation
  185. // In a storyboard-based application, you will often want to do a little preparation before navigation
  186. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  187. // Get the new view controller using [segue destinationViewController].
  188. // Pass the selected object to the new view controller.
  189. }
  190. */
  191. -(void)ay3I097SivG:(UIRegion*) ay3I097SivG axdQL:(UIInputView*) axdQL akTyLOJd:(UIFont*) akTyLOJd aKPQ75ES:(UIBezierPath*) aKPQ75ES a4Tqepz:(UIUserInterfaceIdiom*) a4Tqepz aq9MxRtiQJz:(UIViewController*) aq9MxRtiQJz aFqVlZgy:(UIDocument*) aFqVlZgy avVM6QCr1:(UIView*) avVM6QCr1 as9H4EPB:(UIActivity*) as9H4EPB amWF1DoPfAt:(UIFont*) amWF1DoPfAt aJNlMRK:(UIButton*) aJNlMRK a2sNK9:(UILabel*) a2sNK9 aiKBgROQ0VY:(UICollectionView*) aiKBgROQ0VY {
  192. NSLog(@"6secQ0TzFpm1SfakOD5Vou83NWrB");
  193. NSLog(@"Ir4Eh5t3DgQljdPBM71fZJORaq8");
  194. NSLog(@"rnCsfKD8ULBpqT5RVMWu0o3dacOtj7Yz");
  195. NSLog(@"dvxOCh8IcPQ47gF6J5DuoV9");
  196. NSLog(@"zSVEfvPA3hcWn4");
  197. NSLog(@"zdZXeTVo6GUAJSbCu5KcxlOM");
  198. NSLog(@"LTA6ubZpmVeUQ5Ms0Jc79DN3FhvqdPIC1xYSw");
  199. NSLog(@"xuof0PVcHl1EZBCLn4Ypaj8ANK");
  200. NSLog(@"CjicOIoTpBKPW");
  201. NSLog(@"FPuyOJ3aq2QnbN8K4");
  202. NSLog(@"SCjxnH31qYGzDm");
  203. }
  204. -(void)aHx2b:(UIBarButtonItem*) aHx2b aAsDvNjS:(UITableView*) aAsDvNjS aMu5axDj6k:(UIUserInterfaceIdiom*) aMu5axDj6k a1ugtOz:(UIImage*) a1ugtOz a10yLxp4Mnq:(UIAlertView*) a10yLxp4Mnq aZ6iO0VhGe:(UIEvent*) aZ6iO0VhGe {
  205. NSLog(@"4X1bPDyqiIr8SEpkTWh3oeRu");
  206. NSLog(@"LW2ayqmkR4stvVP1NA6dIbfizFjO");
  207. NSLog(@"SFpZLfrzoK");
  208. NSLog(@"2vKCURptDTSmzyMo34qxI6eikZfhdl0uF9jBOY");
  209. NSLog(@"hUWvBE4DN32LRs8ctOgGdIZMpSCquFJPfykamiHo");
  210. NSLog(@"8WYBV6RZfmUICvnXw");
  211. NSLog(@"KEaXHQ5gfoOZFwph462qlWTsCnA7jPIG81btziSv");
  212. NSLog(@"KMDiq1fg8ntsPew0mO5pxLNI7JWEl");
  213. NSLog(@"JVxqEvDUsuFKMTk8L1bZwCyp3o7h9eAY");
  214. NSLog(@"uHsCTYSE8p7agKwRo5WQbBfr");
  215. NSLog(@"YhC0eTyP9l6A18prOGBtZsmvIgj5");
  216. NSLog(@"lpn6v7gJdFZyUmQGa1BNrC");
  217. NSLog(@"jhIN5lzAXSa3rMGK1tEnLDcb9kRVxFPB62ewJ");
  218. NSLog(@"ThLZRpeW4rmfn3I7CO9QyjJi1bNgqk");
  219. }
  220. -(void)a2DSP:(UIWindow*) a2DSP aXZxTg:(UIButton*) aXZxTg aub35MD:(UISearchBar*) aub35MD aPFeT8M6Rc:(UIImageView*) aPFeT8M6Rc a0xoU49f6C:(UIControl*) a0xoU49f6C aOU0yIXPq:(UICollectionView*) aOU0yIXPq aayfJAdgF:(UIImageView*) aayfJAdgF aDU0G:(UIColor*) aDU0G anXSx98O0:(UIViewController*) anXSx98O0 ahwqEyvSbYA:(UIRegion*) ahwqEyvSbYA a9G1fmeE:(UILabel*) a9G1fmeE aIXg2W:(UISearchBar*) aIXg2W aQhFHjIMc4q:(UIImageView*) aQhFHjIMc4q aDINCkKdVM:(UIImage*) aDINCkKdVM aGlK0NM2guh:(UIButton*) aGlK0NM2guh {
  221. NSLog(@"dt6ZICg5jUeOKlpBYo3xuR");
  222. NSLog(@"i0MjLsDtXEb5CgkR");
  223. NSLog(@"vF4wnm5CiIOD2NleHpfd6GZTcrkqYVx1J9jBSQ");
  224. NSLog(@"ebuCUasKwZflR0jr5zE1dS8ONYFTA");
  225. NSLog(@"5Rq297VGTf1wlYtI0XBCKLOmN6rokaSEFD3bP4cp");
  226. NSLog(@"FBzWj6vxqHV9D5sQJ2boutSUYpTwkI10mP");
  227. NSLog(@"e3IfkmQhs5WOg2TKoDjM1qa6BtZGFHzx4CVRUA7");
  228. NSLog(@"gWur09CVPSGx45LetZmsMw");
  229. NSLog(@"c0t53wnvVaFxj7QIYB4LRzmAd8JH9rpf1GeOPlN");
  230. NSLog(@"uTiV0wDzt2LA5ByHZ9xJ4S76v");
  231. NSLog(@"5SB8IsuNX7YJfEPikhx3MDrZp9vc1aLKy6gC");
  232. }
  233. -(void)aefMT21wD:(UIAlertView*) aefMT21wD a3uHkNnt:(UIMenuItem*) a3uHkNnt aniRMwG8X:(UIImageView*) aniRMwG8X aCxlI5tG:(UIView*) aCxlI5tG aGX9bR3MTP:(UIControl*) aGX9bR3MTP aQpzWX4kZC:(UIKeyCommand*) aQpzWX4kZC aTbNaQVi:(UIActivity*) aTbNaQVi aq78SnxbKFg:(UIControl*) aq78SnxbKFg a1x059jogn:(UIUserInterfaceIdiom*) a1x059jogn aRNObTdop:(UIColor*) aRNObTdop aJSVMuX:(UIKeyCommand*) aJSVMuX a92ziWZRBQo:(UIAlertView*) a92ziWZRBQo {
  234. NSLog(@"G1E4FosbVvt6UiA2385rTy");
  235. NSLog(@"0NF7XoWVkgzREyOchaKUH1QY");
  236. NSLog(@"m6sFo1h9uBjnlN");
  237. NSLog(@"XPNdA6eyVHam9UJ51g8rTtfpvhzZCLuRoI0M");
  238. NSLog(@"QTHhpgnoZ70PGOutrIwL");
  239. NSLog(@"H8dK6zm2ZiN9FPlbfvkewSn1BVMXto4yTDjJ7upL");
  240. NSLog(@"mPqeLxKG2va9UZpQlFiY7ts534IwEOTnXMC8S0");
  241. NSLog(@"30YX9esOua8AJ5Sx4ZDnkc");
  242. NSLog(@"nbGcDp9SzjIf0oiY");
  243. NSLog(@"1caOr9FVHNehz6LIGUjwDilx3");
  244. NSLog(@"WOpvocR6XUJg4jm5q2MEQtesr1KkbT");
  245. }
  246. -(void)areZW50d:(UIEdgeInsets*) areZW50d aXRfwZ:(UICollectionView*) aXRfwZ a0OaobM:(UIVisualEffectView*) a0OaobM agIqnH:(UIInputView*) agIqnH aM92ieWr:(UIImageView*) aM92ieWr a5EAXK:(UIMotionEffect*) a5EAXK aHDEd:(UIEdgeInsets*) aHDEd ajHYN4Zenx:(UILabel*) ajHYN4Zenx adiB8g2qRh:(UIFontWeight*) adiB8g2qRh aXp94CU:(UIView*) aXp94CU aFpnH:(UICollectionView*) aFpnH arMjsF7:(UIRegion*) arMjsF7 a7IjGLl:(UIUserInterfaceIdiom*) a7IjGLl {
  247. NSLog(@"AnDbuNOKkZ1ipzVEGr0TSIq4HYjPlM");
  248. NSLog(@"FeCQkwsMf7d1NoPZULy2tK");
  249. NSLog(@"m2pXELA4e81NJhMUy");
  250. NSLog(@"kBXHSIY35RGwDligsNaj14MO0");
  251. NSLog(@"MK8emtx6jGd52ZUbTpFoSqzQWO4kyI7");
  252. NSLog(@"0fr7PDGaNBXxzUiyO");
  253. NSLog(@"zQh4lOmLVbdnBYI8Jt3c5jK6Eg9xZfUPDqT");
  254. NSLog(@"w8eVb69xUgj4BTq");
  255. NSLog(@"vr2gIbo8TCZ79xkz3ai");
  256. NSLog(@"MbOlQxC4RfmV0r6HEZPyKsNcSnpk3dgoawqFIAT");
  257. NSLog(@"4iaZrx0Ft17qoTQIhXjzcPOAnS8f9egLlKWBE");
  258. NSLog(@"BW5SwkP9YZ71gpAxFVmREKrJo2cil4eXhLjqu");
  259. NSLog(@"DmFlIjiMK98eyHSBNToqbE");
  260. NSLog(@"LIB7EohfdtAi4ZXysr");
  261. NSLog(@"qb0uBx8hoPFEit1UO6TZ4M9yLeNY");
  262. }
  263. -(void)a4wgn05aQ:(UIEvent*) a4wgn05aQ aAzad:(UIView*) aAzad apNkdC:(UIColor*) apNkdC aH5TlO8A:(UIEvent*) aH5TlO8A aI98s:(UIFontWeight*) aI98s amwZB:(UIBarButtonItem*) amwZB aCEnF:(UIScreen*) aCEnF aMR20Px:(UIKeyCommand*) aMR20Px {
  264. NSLog(@"kyXW0HmPDThs3Gc1U97Yd6i2jw4vCLr5FOae");
  265. NSLog(@"ZHMiYAQbG2L1zx");
  266. NSLog(@"drOHqlGv81TXwJ3mknNQti7x");
  267. NSLog(@"rW9ShzDILtOw3fjZMk4iXsn5gPANpGbHVTduBl0");
  268. NSLog(@"IukiKx4eEqlBznW");
  269. NSLog(@"lyZkTU46NngWvbzrJPSR");
  270. NSLog(@"XPtQZNIU0CwKnylDaM6mOF5");
  271. NSLog(@"dK6Sa9gmpsH82n5ZUrXC4Aw3tYxIfiuqlv");
  272. NSLog(@"PTXJQcF6w0GV3ZaBYS7Dxd8CtjNfHiz");
  273. NSLog(@"4GJWo1TVCtc6DxlqBEFdMv0HugSi9snjK");
  274. NSLog(@"wbBQvhSVLAUXHEz5pKDncOFCdGuram489tTZ16lo");
  275. NSLog(@"aJ506Shu1dFM3swoZOk9VeIANYKHmcUR2r");
  276. NSLog(@"QBriqzkYn1MA50KP");
  277. NSLog(@"lWFwxjBzXotbcfDN19ZdyQU7");
  278. NSLog(@"PLjl2Jb1ORdI8");
  279. }
  280. -(void)aouFTqs:(UICollectionView*) aouFTqs aKkRnN:(UIFontWeight*) aKkRnN aJMmLnqvT4t:(UIBarButtonItem*) aJMmLnqvT4t afuTaVm:(UIEdgeInsets*) afuTaVm aiTfe:(UIFont*) aiTfe ai8Ah:(UIWindow*) ai8Ah arcK0SAngNT:(UIColor*) arcK0SAngNT aM9DbnHSm:(UIButton*) aM9DbnHSm acaJBe:(UIBezierPath*) acaJBe aElzoJR1:(UIControlEvents*) aElzoJR1 a5vF1P:(UIApplication*) a5vF1P aXamo:(UIControlEvents*) aXamo aODnSB:(UIWindow*) aODnSB aIbGvRzCYE:(UIAlertView*) aIbGvRzCYE aA7uQvY:(UIEdgeInsets*) aA7uQvY a5RhA:(UIBarButtonItem*) a5RhA azKMQ:(UIWindow*) azKMQ afVct:(UIVisualEffectView*) afVct ax9s1Qr:(UIDevice*) ax9s1Qr a4RO6:(UIVisualEffectView*) a4RO6 {
  281. NSLog(@"c94wxeB8YQO");
  282. NSLog(@"zyT8lPWCF2EKXqLOcpRw");
  283. NSLog(@"2b4lYXkoO0UNmdqAs3p5");
  284. NSLog(@"W7823GKsgQFX0AVOHybwonpN");
  285. NSLog(@"9SBOtFhH1Wn50wpGDLbxKZ2Jc4veQ3MCPd7aVf");
  286. NSLog(@"W3kQo7TgY05hMp4AvNacZzPuRHBJfUmw");
  287. NSLog(@"qDwkoxt9TiphYK4NVWd7S0C6UErsHvlg81f");
  288. NSLog(@"2TihIGPrKlDkpZm5xL9EaftQNM31");
  289. NSLog(@"ijOoIQJlhSPfy0NB3WC4GpUYR");
  290. NSLog(@"WSJR5L4ljw8o3UHEszqMZQkpDyBXr");
  291. NSLog(@"UaQb7TyX8zOJMsZLiW5mB61pVD");
  292. NSLog(@"aSigumI7KQ2h3q0nt8ywbsOR6vWxJFLXYUr4C");
  293. NSLog(@"RkhSEiWKPt1q63M8JDT9xvdACznQoG0V5s7B");
  294. NSLog(@"R6eoDkCITSstxEA518gMZldwQWPGKvzLVbH9NJy");
  295. NSLog(@"kv0wjQSdhIo3ilZg6s5MGaA7WFq");
  296. NSLog(@"IG4SOPKtogQ5ufeWN78cJ3DU");
  297. NSLog(@"RWXhnmbcQ9guK6D5F3MJl4yv");
  298. NSLog(@"Qpkn1mDTJiu39LlEWbgR5UzYrO2");
  299. }
  300. -(void)az8AOF7vci:(UIKeyCommand*) az8AOF7vci anAfveo:(UISearchBar*) anAfveo aWoeUZdBhvc:(UIControl*) aWoeUZdBhvc azrj0:(UIView*) azrj0 ax7DftMlHBQ:(UIScreen*) ax7DftMlHBQ a4efsTc6BS:(UIActivity*) a4efsTc6BS ajNZ4:(UIActivity*) ajNZ4 {
  301. NSLog(@"Uu8M9vmDH0SJNgoXxPEjeIiqK52clYhk");
  302. NSLog(@"4ayheb8HvTXZOux1lG0itYLWR");
  303. NSLog(@"1MXISzDpHytU9nFrBKGgJbfa");
  304. NSLog(@"mk58U6SMQB1RvfXViduaZhNtAWJ");
  305. NSLog(@"2AJ9OmZBW3DqeSXsjMTbIfkLa7Nor4");
  306. NSLog(@"akyQq70ibc3SPMoRz9XZ6lN8H4wfFuh");
  307. NSLog(@"6HfmBhyRcPxlsr");
  308. NSLog(@"P6UOylh5MY");
  309. NSLog(@"4G9yWuJPiZcz2MVLBNx5v7wl");
  310. NSLog(@"gn6ZMeTCRK0oqWFrs48DQjVEy9NaHpAP5d23vJk");
  311. NSLog(@"en62rE9CGyiYOx81q");
  312. NSLog(@"YnO4evp85zIcsdNl6BELowuXjqtSGCy0xWQ");
  313. NSLog(@"HLrAZa2dx9v7ESYegybDFqQkmRhBKp36Gf4");
  314. NSLog(@"18tx753UeFCcVhQ6GSubzkOR");
  315. NSLog(@"v2knwGzYhDUy1gs95IdZCeVEQjptc6FXMuKoJLT");
  316. NSLog(@"JBUYOCaL6Nz10rS");
  317. NSLog(@"42MbOaXvwBzeSEYJpjkG0KDQmTuRhCH75Fy");
  318. }
  319. @end