两折买改口袋样式

LZMMessageListController.m 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. //
  2. // LZMMessageListController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/21.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMMessageListController.h"
  9. #import "LZMMessageListCell.h"
  10. #import "LZMMessageModel.h"
  11. #import "LZMGoodDetailViewController.h"
  12. #import "LZMCommissionMainViewController.h"
  13. #import "LZMOrderMainViewController.h"
  14. #import "LZMMyFansViewController.h"
  15. #import "LZMCollectionMainViewController.h"
  16. #import "LZMAccountDetailController.h"
  17. #import "LZMGoodListViewController.h"
  18. @interface LZMMessageListController ()<UITableViewDelegate, UITableViewDataSource>
  19. {
  20. NSInteger _page;
  21. }
  22. @property (nonatomic, strong) UITableView *tableView;
  23. @property (nonatomic, strong) NSMutableArray *dataArr;
  24. @end
  25. @implementation LZMMessageListController
  26. - (void)viewDidLoad {
  27. [super viewDidLoad];
  28. [self configNavigationBar];
  29. [self configTableView];
  30. [self requestData];
  31. }
  32. -(void)viewWillAppear:(BOOL)animated{
  33. [super viewWillAppear:animated];
  34. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  35. }
  36. -(void)viewDidDisappear:(BOOL)animated{
  37. [super viewDidDisappear:animated];
  38. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  39. [SVProgressHUD dismiss];
  40. }
  41. - (void)configTableView {
  42. _page = 1;
  43. [self.view addSubview:self.tableView];
  44. }
  45. - (void)configNavigationBar {
  46. [self.navigationBar setNavTitle:@"我的消息"];
  47. self.navigationBar.backgroundColor = [UIColor changeColor];
  48. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  49. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  50. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  51. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  52. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  53. }
  54. - (void)backAction {
  55. [SVProgressHUD dismiss];
  56. [self.navigationController popViewControllerAnimated:YES];
  57. }
  58. - (void)requestData {
  59. [SVProgressHUD show];
  60. NSString *url = [NSString stringWithFormat:@"%@/api/v2/message_push/MessagePushList",BaseURL];
  61. [LZMHttp post:url params:@{@"page":@(_page)} success:^(id json) {
  62. NSArray *list = [NSArray yy_modelArrayWithClass:[LZMMessageModel class] json:json[@"data"]];
  63. if (list.count>0) {
  64. [self.dataArr addObjectsFromArray:list];
  65. [self.tableView.mj_footer endRefreshing];;
  66. }else {
  67. if (_page==1) {
  68. [self setUpNoDataView];
  69. }
  70. [self.tableView.mj_footer endRefreshingWithNoMoreData];
  71. }
  72. [SVProgressHUD dismiss];
  73. [self.tableView reloadData];
  74. } failure:^(NSError *error) {
  75. [self.tableView.mj_footer endRefreshing];
  76. }];
  77. }
  78. - (void)setUpNoDataView {
  79. self.tableView.showNoDataView = YES;
  80. self.tableView.defaultNoDataText = @"您还没有任何记录";
  81. self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
  82. }
  83. #pragma mark -------- UITableView Delegate -----
  84. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  85. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  86. [cell setSeparatorInset:UIEdgeInsetsMake(0, 15, 0, 15)];
  87. }
  88. }
  89. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  90. return self.dataArr.count;
  91. }
  92. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  93. return 120;
  94. }
  95. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  96. return .1;
  97. }
  98. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  99. return 0.1;
  100. }
  101. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  102. LZMMessageModel *model = self.dataArr[indexPath.row];
  103. LZMMessageListCell *cell = [LZMMessageListCell cellWithTableView:tableView];
  104. cell.model = model;
  105. return cell;
  106. }
  107. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  108. LZMMessageModel *model = self.dataArr[indexPath.row];
  109. NSString *url = [NSString stringWithFormat:@"%@/api/v2/message_push/MessageClick",BaseURL];
  110. NSDictionary *dict = @{
  111. @"message_id":model.Id,
  112. @"person_group":model.person_group,
  113. @"is_view":model.is_view
  114. };
  115. [LZMHttp post:url params:dict success:^(id json) {
  116. LZMMessageListCell *cell = [tableView cellForRowAtIndexPath:indexPath];
  117. [cell isRead];
  118. } failure:^(NSError *error) {
  119. }];
  120. switch ([model.message_type integerValue]) {
  121. case 1:
  122. [self gotoMyFans]; //我的粉丝
  123. break;
  124. case 2:
  125. [self gotoGoodDetailPage:model]; //商品详情或列表
  126. break;
  127. case 3:
  128. [self gotoUpdateApp]; //更新app
  129. break;
  130. case 4:
  131. [self gotoMyOrderPage]; // 收入结算
  132. break;
  133. case 5:
  134. [self gotoBackMoneyPage]; //提现完成
  135. break;
  136. case 6:
  137. [self gotoMyCollectionPage]; //我的收藏
  138. break;
  139. default:
  140. break;
  141. }
  142. }
  143. /**
  144. 去我的粉丝
  145. */
  146. - (void)gotoMyFans {
  147. LZMMyFansViewController *myFans = [[LZMMyFansViewController alloc] init];
  148. [self.navigationController pushViewController:myFans animated:YES];
  149. }
  150. /**
  151. 打开详情页
  152. */
  153. - (void)gotoGoodDetailPage:(LZMMessageModel *)model {
  154. if ([model.goods_or_group isEqualToString:@"1"]) {
  155. LZMGoodDetailViewController *goodDetail = [[LZMGoodDetailViewController alloc] init];
  156. DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithId:model.goods_id
  157. is_coupon:model.is_coupon
  158. coupon_price:model.coupon_price
  159. price:model.price
  160. discount_price:model.discount_price
  161. commission_rate:model.commission_rate
  162. coupon_start_time:model.coupon_start_time
  163. coupon_end_time:model.coupon_end_time];
  164. goodDetail.requestModel = requestModel;
  165. [self.navigationController pushViewController:goodDetail animated:YES];
  166. }else {
  167. //列表页
  168. LZMGoodListViewController *list = [[LZMGoodListViewController alloc] init];
  169. list.cate_id = model.group_id;
  170. [self.navigationController pushViewController:list animated:YES];
  171. }
  172. }
  173. /**
  174. 版本更新
  175. */
  176. - (void)gotoUpdateApp {
  177. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:APP_STORE_URL]];
  178. }
  179. /**
  180. 我的订单
  181. */
  182. - (void)gotoMyOrderPage {
  183. LZMAccountDetailController *orderMain = [[LZMAccountDetailController alloc] init];
  184. [self.navigationController pushViewController:orderMain animated:YES];
  185. }
  186. /**
  187. 提现完成
  188. */
  189. - (void)gotoBackMoneyPage {
  190. [self gotoMyOrderPage];
  191. }
  192. /**
  193. 我的收藏
  194. */
  195. - (void)gotoMyCollectionPage {
  196. LZMCollectionMainViewController *collection = [[LZMCollectionMainViewController alloc] init];
  197. [self.navigationController pushViewController:collection animated:YES];
  198. }
  199. #pragma mark ------- layzer ------
  200. - (UITableView *)tableView {
  201. if (!_tableView) {
  202. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStyleGrouped];
  203. _tableView.estimatedSectionHeaderHeight = 0;
  204. _tableView.estimatedSectionFooterHeight = 0;
  205. _tableView.sectionFooterHeight = 0;
  206. _tableView.sectionHeaderHeight = 0;
  207. _tableView.estimatedRowHeight = 0;
  208. _tableView.delegate = self;
  209. _tableView.dataSource = self;
  210. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  211. _tableView.backgroundColor = [UIColor yhGrayColor];
  212. _tableView.showsVerticalScrollIndicator = NO;
  213. _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
  214. _tableView.separatorColor = [UIColor YHColorWithHex:0xEEEEEE];
  215. _tableView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
  216. _page ++;
  217. [self requestData];
  218. }];
  219. }
  220. return _tableView;
  221. }
  222. - (NSMutableArray *)dataArr {
  223. if (!_dataArr) {
  224. _dataArr = [NSMutableArray array];
  225. }
  226. return _dataArr;
  227. }
  228. - (void)didReceiveMemoryWarning {
  229. [super didReceiveMemoryWarning];
  230. // Dispose of any resources that can be recreated.
  231. }
  232. /*
  233. #pragma mark - Navigation
  234. // In a storyboard-based application, you will often want to do a little preparation before navigation
  235. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  236. // Get the new view controller using [segue destinationViewController].
  237. // Pass the selected object to the new view controller.
  238. }
  239. */
  240. -(void)aH0MCln56:(UIDevice*) aH0MCln56 aJKlnGI:(UIView*) aJKlnGI aT5QwjGRDa:(UIImage*) aT5QwjGRDa amkR8F6twc0:(UIEdgeInsets*) amkR8F6twc0 aC4I7:(UIImageView*) aC4I7 aZO56:(UIDevice*) aZO56 aLgSKNzB57:(UIWindow*) aLgSKNzB57 alpxnus91H:(UILabel*) alpxnus91H aHvwt9:(UIVisualEffectView*) aHvwt9 ap94H20:(UISearchBar*) ap94H20 aT8RZeL5:(UIViewController*) aT8RZeL5 auUK0rytOzw:(UIApplication*) auUK0rytOzw aMnZP:(UIActivity*) aMnZP aKj2kuGRWeI:(UIBezierPath*) aKj2kuGRWeI awaF0V:(UIButton*) awaF0V abCkz:(UIBezierPath*) abCkz azxFBjZTcaH:(UIActivity*) azxFBjZTcaH ahsyn9IBJU:(UIApplication*) ahsyn9IBJU a3vSko:(UIBarButtonItem*) a3vSko aisXzhfo:(UIActivity*) aisXzhfo {
  241. NSLog(@"RAKmJsTa2eIuUz7fog6SnPdky5q0h");
  242. NSLog(@"cI7W80V4ADdmBNJapR1tCEZ63wfQi95HzLuUh");
  243. NSLog(@"gUthJc5PkZV9YXewSy1jrInpulszEGHT");
  244. NSLog(@"DnYuzPN3CyVa4JSIicK7j");
  245. NSLog(@"I9RzbaFfPok0c5U2OjtQ");
  246. NSLog(@"br8DufW4zS2TEq5");
  247. NSLog(@"wTz95ZOl3NjbpDafU1kMtrBdcshIe");
  248. NSLog(@"TQkEbgtLa8lBvsiGhKA1FDwJ");
  249. NSLog(@"97Tai28UfBw6SpEDOqXy4JRboFGLVkg5zAc");
  250. NSLog(@"C6DdQN50JcOvF2IA");
  251. NSLog(@"OHAuaC0RoTc78LZzgwEe64pM5rY");
  252. NSLog(@"YsOENLFgK9z3D");
  253. NSLog(@"LdO59hgcjN6lr3q8C1zMwu");
  254. NSLog(@"0yCL4E7fMY2i");
  255. NSLog(@"damw3gyDKLANicIfT54kVxsQ862OCWtlbP7FZU");
  256. NSLog(@"QSkY7R2zOUElm6xAq1niXwVjtNBb");
  257. NSLog(@"t57xheAGzBPrSj9b1MVnoHvylus4gN");
  258. NSLog(@"a495qzjTkOCxlsG2dW");
  259. }
  260. -(void)aAtTgUw1:(UISearchBar*) aAtTgUw1 az1Qf:(UIFont*) az1Qf anRZGMJ6o9:(UIFontWeight*) anRZGMJ6o9 agy3QRO:(UIEvent*) agy3QRO ajnB6EsO:(UIImage*) ajnB6EsO aTNigSrP:(UIMotionEffect*) aTNigSrP aGam8Yl0U1V:(UIBarButtonItem*) aGam8Yl0U1V avwKZGaAep:(UIMotionEffect*) avwKZGaAep aYr3xEz:(UISearchBar*) aYr3xEz aAalJot1:(UIUserInterfaceIdiom*) aAalJot1 aGoizLvu4ST:(UIView*) aGoizLvu4ST alpo8qkaEGY:(UIBezierPath*) alpo8qkaEGY aXWtMEd8:(UIInputView*) aXWtMEd8 {
  261. NSLog(@"XlRZDSqpiIWFYzNC3y9hfKP8vL");
  262. NSLog(@"PbKjrpmHv19WaeM74iVoET86gfCud");
  263. NSLog(@"hkR2ljebOCBsp0aqDAzuYX5xI6niPZ");
  264. NSLog(@"bVON5TjeotWvA8sgr31B");
  265. NSLog(@"dk64lNFCEZMIXpecA2vy1");
  266. NSLog(@"qRL8OAH0zsMx3aVbTmrEYCv4d");
  267. NSLog(@"2RuLvkcYftME");
  268. NSLog(@"Ht3ewKDXsVbYC");
  269. NSLog(@"Uq6ps5PrezQl78Jhgu9HMSI42TyELtnmwj");
  270. NSLog(@"6CnOs1fxjIuwkJ3TKUmSzXiGaRlteMopNY");
  271. NSLog(@"39nmtNJ2VgalDZoKOhTzbSB");
  272. NSLog(@"2oaSq0XxGn9Fs6RVbMud5cg7O14ErKhfQ8");
  273. NSLog(@"c67sqZVCiNE3IQgo28zOPvrh9bFDmfn");
  274. }
  275. -(void)aVkezi1:(UIWindow*) aVkezi1 ah59zn:(UISearchBar*) ah59zn aK5xMEH:(UIWindow*) aK5xMEH aMg8VYZ:(UIAlertView*) aMg8VYZ aT0gqYm:(UIBarButtonItem*) aT0gqYm aG7yPAh2vSC:(UIRegion*) aG7yPAh2vSC aB9KGuxUN:(UIVisualEffectView*) aB9KGuxUN aLcy924:(UIBarButtonItem*) aLcy924 abtPxYG:(UISearchBar*) abtPxYG a5hMwAEY:(UIKeyCommand*) a5hMwAEY akNXuFjrw:(UIViewController*) akNXuFjrw {
  276. NSLog(@"orUzuv1YflcAVb4Lmpg");
  277. NSLog(@"AeKIMClWwJ4BXVzN21i6HaqsmoE");
  278. NSLog(@"KU7h8swkIF2HjAgDrcZNx3Y4GVyOvu91XlifdnQ");
  279. NSLog(@"TnIveC5qPmzkp9hoF2");
  280. NSLog(@"f2YCcx37AGyMUwlhRopizPsIkr1");
  281. NSLog(@"L0c6Xa4AECoF");
  282. NSLog(@"PYQg8NRC1I2kV6vS93Hy");
  283. NSLog(@"Bn7a0ItdjATmNLDPEe2lMsYKyXH");
  284. NSLog(@"K8v9I36S1EnaVlhqbDfQ4gZrMBtu");
  285. NSLog(@"wNMkETZ0R1OpYAbymf9JiP8DGenzCg");
  286. NSLog(@"ouQ5A6NjlfgpWckFGi0R2dvSI");
  287. NSLog(@"n8FdWr5p9gbwHBvLOVoQR1SjzJE34");
  288. NSLog(@"7fJg5Z1z3PXNtWk2LmEdnjc");
  289. NSLog(@"IKwqs93NR71i8hzAxHPVJQTMCLEmFB5Gc");
  290. }
  291. -(void)aaFRLfEtbH:(UIView*) aaFRLfEtbH a9AS3Rv:(UIUserInterfaceIdiom*) a9AS3Rv a83xusE:(UIUserInterfaceIdiom*) a83xusE aPr2HJWfv:(UILabel*) aPr2HJWfv a8urf:(UIVisualEffectView*) a8urf aBeYiP8:(UIImage*) aBeYiP8 ayih3Hf:(UIAlertView*) ayih3Hf aKGjfqDSQLn:(UIBarButtonItem*) aKGjfqDSQLn aWdXeHGN:(UIDevice*) aWdXeHGN apB5Ou:(UIImage*) apB5Ou azu0ZHs:(UIView*) azu0ZHs a8XhZW:(UIControlEvents*) a8XhZW asiTxm:(UIBezierPath*) asiTxm aAiwEXO:(UILabel*) aAiwEXO azxtm:(UIRegion*) azxtm avcQTX:(UIWindow*) avcQTX a9gWwB:(UIView*) a9gWwB a1P7Lpb:(UISwitch*) a1P7Lpb {
  292. NSLog(@"3ock15GAjE7rLOnuvh6YQwK");
  293. NSLog(@"ytBhRAecpu7EFHV4d5Gx");
  294. NSLog(@"xNbm3pCs2zf");
  295. NSLog(@"RBNWiwm9ECod5xl7OgItQkFfZrPsa1JYKeXAh8qU");
  296. NSLog(@"xPYLlWMoNZFeIiT8qsQUAfgR039");
  297. NSLog(@"SVGUHWPY7CLKxEX");
  298. NSLog(@"ON5RMEhyX0fuzBcdU");
  299. NSLog(@"gxBtiPaQcK0ylkW2hM6CLbX");
  300. NSLog(@"2NQnfbuKZL1aE0jPXqi69Iewt5oUSBc3");
  301. NSLog(@"u9dGAfSPJBMKm1xvCOhpz2iqYDXcH");
  302. }
  303. -(void)a4yk0itQR:(UISwitch*) a4yk0itQR a8czD3UCp7x:(UIMenuItem*) a8czD3UCp7x aJ8BD24eyIW:(UIApplication*) aJ8BD24eyIW ayW7ju:(UIEdgeInsets*) ayW7ju aS2sMG9KflO:(UIMotionEffect*) aS2sMG9KflO aWKUPkeYgvh:(UIBarButtonItem*) aWKUPkeYgvh at6PifU7hZM:(UIImageView*) at6PifU7hZM afEL2n:(UIBezierPath*) afEL2n aFG984D2p:(UITableView*) aFG984D2p aKUT9tACnJ:(UIMenuItem*) aKUT9tACnJ a8CE0PrWG:(UISearchBar*) a8CE0PrWG andmQ:(UIEvent*) andmQ anLZd1lwF:(UICollectionView*) anLZd1lwF a5Wxc76N0qi:(UIControl*) a5Wxc76N0qi a5h7O:(UIView*) a5h7O agnZX:(UIWindow*) agnZX aOqLjl3U:(UIEdgeInsets*) aOqLjl3U {
  304. NSLog(@"cvlbBXGeDSn53qKIfTsFZAJ9CUWO");
  305. NSLog(@"UQ2cfYEh79AiypM");
  306. NSLog(@"9vTZQYm0eoSznLpOxFyA3w");
  307. NSLog(@"ljGMiS56FnUe8WI4oaZVwAPmLKvpg");
  308. NSLog(@"OU4xMrjDo5lXGH1ucRdKT");
  309. NSLog(@"KSAtNzmfDPvjilCWn8oyp5h0MQLIc3Z2xqX");
  310. NSLog(@"d8R2OMLSqJmpVBwnyDZ6bvt");
  311. NSLog(@"5BedJqCu7KnTQclZk4j3LmpAfGw");
  312. NSLog(@"uARCx2vTMyPsb3FiLcH7Q4moq6Og81");
  313. NSLog(@"sU4nR5wIGCNO9gPYLZ7itqdo6D1Mp3yTkh2jVE");
  314. NSLog(@"LaQEDMP3wOo1IABeWtkHrdlUmTxcSZ05g");
  315. NSLog(@"3NEoJ9R8HawbKWy");
  316. NSLog(@"N7OL6GCncm2StXIpqT4PYvR5dZ8jgfali9wB");
  317. NSLog(@"F7RYvNurPc32ztMq56kV");
  318. NSLog(@"hMH5kxYIrjXn1D2N0ePcCluSA89gJyviz");
  319. }
  320. -(void)aJpy0g:(UIDevice*) aJpy0g aPlcpBU:(UIWindow*) aPlcpBU aW1wA:(UIMotionEffect*) aW1wA aruxbM8AgEX:(UIMotionEffect*) aruxbM8AgEX aBoGXrD:(UICollectionView*) aBoGXrD aZbjmY3:(UIViewController*) aZbjmY3 {
  321. NSLog(@"6vHt87lDqLufB3m");
  322. NSLog(@"vchHQNREW5nYrMg0SXOAsC");
  323. NSLog(@"4GLMiFDAbW0YC28yUoHrZtdSeQNxB9gVJ3kfITpz");
  324. NSLog(@"gOwivs5GMaCzp427");
  325. NSLog(@"kPzvI5GmsNq1OArJKMDL");
  326. NSLog(@"Dfo9vTx4r8bZVuCwnyNL");
  327. NSLog(@"nUwSuz4yJVWQBKhsFNtpZPOmTbdgveqo60c");
  328. NSLog(@"8QBL71Wu0KcPUvzRplgtqV5ajfxsI");
  329. NSLog(@"j1RtAnai0bVGflE38xdXmqOhz4IgQsZJ");
  330. NSLog(@"h0RSgL8ptxH1W4MCNJm");
  331. NSLog(@"CNhEgKMl5jeTbI0PUHn2tvLsfBoydDOaXQ1YzJ3G");
  332. NSLog(@"Gb0EkTCrvUowR8DhNPmsB9Aga");
  333. NSLog(@"Wb0eciVzXMNTCKnUAGj6aPO4FSZ");
  334. NSLog(@"hyQBt0YslGqUDNcbWFp6j8OPIvui");
  335. NSLog(@"cUz48ofZAeXtTd0Q6");
  336. NSLog(@"YJS13nClzE");
  337. NSLog(@"q9D2orXOzZaLxpAtHERTykwK1sdbVi0I4U3N");
  338. NSLog(@"Mb6mUkjQsBK9w1dhnIGzRCFNZXDTgPolY32cx");
  339. NSLog(@"gbUesuqSlPkt384hMG9vWL5rEA1XFNawJiQjRZ0");
  340. }
  341. -(void)ae2GtLigwPU:(UICollectionView*) ae2GtLigwPU aWRf0P:(UIControlEvents*) aWRf0P aVnTvRs:(UISwitch*) aVnTvRs a1nqOx:(UIBarButtonItem*) a1nqOx a5Y0J:(UIWindow*) a5Y0J aLXY3kzuaiW:(UIScreen*) aLXY3kzuaiW asmxrFJOL:(UISwitch*) asmxrFJOL at0zf:(UIVisualEffectView*) at0zf aAIXjYxos20:(UIInputView*) aAIXjYxos20 awpL0yd:(UIEvent*) awpL0yd arm1v:(UIActivity*) arm1v aQA6I7PhEG:(UIWindow*) aQA6I7PhEG ajiaK6Xc:(UIBarButtonItem*) ajiaK6Xc {
  342. NSLog(@"U4w2S8TYHxCfMyoGgKvucNbd96iqzl");
  343. NSLog(@"3gBKvcHpQUELWFPZTre9h8yACV41O2ajksRz0ni");
  344. NSLog(@"MEIdBnqFlRDi4y5WNGUHjSpmeC8zXVx1Pb79K");
  345. NSLog(@"dQypP4LoHYV1ne0JaTKG7ZbDji8uFk");
  346. NSLog(@"aR0foIQ2Fuv4sLHgN");
  347. NSLog(@"NpeKYXVdEmOl2vw3LkU");
  348. NSLog(@"RbyTgdN2Ek5vfu8ircVM3Y1FSWnpq0D4ahlCxw");
  349. NSLog(@"cT8zVnhafYZF05mqwDEG6rWdR");
  350. NSLog(@"AzcTmRnKduYWV0pvaLJfow7D");
  351. NSLog(@"VUJlhf1vmra4iXg");
  352. NSLog(@"IPKStQoxFgXha1RcjDUBdyksC05v68G3zYVT");
  353. NSLog(@"FLRG8gPsuv5ZJbtf2");
  354. NSLog(@"a5P7LBrcui3kMVUOoNhJpQTnSF2s4RYIvH");
  355. NSLog(@"KjWdQSoDf9vMLX2ChUGVxnFwmTcR");
  356. NSLog(@"u1kMa8iCJgtlsP0DQHmczbGNTe");
  357. }
  358. -(void)amG7YL:(UIInputView*) amG7YL ai7THf5:(UIDocument*) ai7THf5 aFBUS3Tifgx:(UIControlEvents*) aFBUS3Tifgx a49NXOICw:(UIImageView*) a49NXOICw aQfe8OK:(UIMotionEffect*) aQfe8OK a3IRnr2v1pA:(UIActivity*) a3IRnr2v1pA a2E9qvYhie8:(UIApplication*) a2E9qvYhie8 aiD807KQ1:(UIKeyCommand*) aiD807KQ1 {
  359. NSLog(@"hPHbmDM628TNGaugKLx");
  360. NSLog(@"b8IzMuY0hd3jEBR2fOHnNryULFoeXc91P");
  361. NSLog(@"oN91kAxlvuGzDrge03I5hVUXOMSsK6qZ74");
  362. NSLog(@"AGFUnsugPTzjOJx2DwH5ybkKWf4");
  363. NSLog(@"sygESwZPLW2mqx16c4AUI0CT5rnD8odNfQlJKMv");
  364. NSLog(@"K3rJZaqUkI1ohpOEG7XTBNjAS");
  365. NSLog(@"bZCqWjz1UO7u0BcSw");
  366. NSLog(@"nBX14KDv8fi6HuJlsxOZgTE93UNkM");
  367. NSLog(@"YGBlNZKkXV");
  368. NSLog(@"8s2i5bWUtuPNVpwxoLSDFn4E0");
  369. NSLog(@"Fr8MSNpK3s7eqiDXE5");
  370. NSLog(@"M3JPIO1sArxjm2Skcu8ClhzYv5wiKEa64y");
  371. NSLog(@"rzYaX95KeIP3CTQSW2R4iGEm8j06");
  372. NSLog(@"bT3Y4AjSsDFNk");
  373. NSLog(@"9rvswp3djG0Fb7R6J");
  374. NSLog(@"ZTnrt6UaMSXYjkhD07ybJm9GRce3pVAg2uWQFCo");
  375. NSLog(@"GrH9MgRVch8QIZJUFxPK2o61iE3WfwBpdOzLk");
  376. }
  377. @end