两折买改口袋样式

LZMCommissionMainViewController.m 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. //
  2. // LZMCommissionMainViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/18.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMCommissionMainViewController.h"
  9. #import "MLMSegmentHead.h"
  10. #import "MLMSegmentManager.h"
  11. #import "LZMOrderTableView.h"
  12. #import "LZMChildCommissionController.h"
  13. #import "LZMCommissionHeaderView.h"
  14. #import "LZMChildCommissionController.h"
  15. @interface LZMCommissionMainViewController ()
  16. <
  17. UITableViewDelegate,
  18. UITableViewDataSource
  19. >
  20. @property (nonatomic, strong) LZMOrderTableView *tableView;
  21. @property (nonatomic, strong) LZMCommissionHeaderView *headerView;
  22. @property (nonatomic, strong) MLMSegmentHead *titleView;
  23. @property (nonatomic, strong) MLMSegmentScroll *segScroll;
  24. @property (nonatomic, strong) NSMutableArray *vcList;
  25. @property (nonatomic, assign) BOOL canScroll;
  26. @end
  27. @implementation LZMCommissionMainViewController
  28. - (void)viewDidLoad {
  29. [super viewDidLoad];
  30. [self configNavigationBar];
  31. // [self configTableView];
  32. [self creatHeaderViewAndFooterView];
  33. }
  34. -(void)viewWillAppear:(BOOL)animated{
  35. [super viewWillAppear:animated];
  36. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  37. }
  38. - (void)configTableView {
  39. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeScrollStatus) name:@"leaveTop" object:nil];
  40. self.canScroll = YES;
  41. self.headerView = [[LZMCommissionHeaderView alloc] initWithFrame:CGRectMake(0, 0,SCREEN_WIDTH , 135)];
  42. self.tableView.tableHeaderView = self.headerView;
  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. [self.navigationController popViewControllerAnimated:YES];
  56. }
  57. - (void)creatHeaderViewAndFooterView {
  58. self.view.backgroundColor = [UIColor whiteColor];
  59. NSArray *titleArr = @[@"全部",@"已付款",@"已结算",@"已失效"];
  60. for (int i = 0; i < titleArr.count; i++) {
  61. LZMChildCommissionController *child = [[LZMChildCommissionController alloc] init];
  62. switch (i) {
  63. case 0:
  64. {
  65. child.type=4;
  66. }
  67. break;
  68. case 1:
  69. {
  70. child.type=1;
  71. }
  72. break;
  73. case 2:
  74. {
  75. child.type=2;
  76. }
  77. break;
  78. case 3:
  79. {
  80. child.type=0;
  81. }
  82. break;
  83. default:
  84. break;
  85. }
  86. [self.vcList addObject:child];
  87. }
  88. self.segScroll = [[MLMSegmentScroll alloc] initWithFrame:CGRectMake(0, NavBarHeight+40, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-40) vcOrViews:self.vcList];
  89. self.segScroll.bounces = NO;
  90. self.titleView = [[MLMSegmentHead alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, 40) titles:titleArr headStyle:SegmentHeadStyleDefault layoutStyle:MLMSegmentLayoutDefault];
  91. self.titleView.headColor = [UIColor whiteColor];
  92. self.titleView.bottomLineHeight = 1;
  93. self.titleView.bottomLineColor = [UIColor yhGrayColor];
  94. self.titleView.fontScale = 1;
  95. self.titleView.fontSize = 14;
  96. self.titleView.equalSize = YES;
  97. self.titleView.showIndex = 0;
  98. self.titleView.selectColor = [UIColor YHColorWithHex:0xff442a];
  99. self.titleView.deSelectColor = [UIColor YHColorWithHex:0x666666];
  100. [MLMSegmentManager associateHead:self.titleView withScroll:self.segScroll completion:^{
  101. [self.view addSubview:self.titleView];
  102. [self.view addSubview:self.segScroll];
  103. }];
  104. }
  105. #pragma mark ----- nofi -----
  106. - (void)changeScrollStatus {
  107. self.canScroll = YES;
  108. for (LZMChildCommissionController *childVc in self.vcList) {
  109. childVc.childCanScroll = NO;
  110. }
  111. }
  112. #pragma mark --------------------- UITableView delegate -------
  113. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  114. return 1;
  115. }
  116. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  117. return 1;
  118. }
  119. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  120. return 0.1;
  121. }
  122. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  123. return 40;
  124. }
  125. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  126. return SCREEN_HEIGHT-NavBarHeight-40;
  127. }
  128. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  129. UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"];
  130. return cell;
  131. }
  132. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  133. return self.titleView;
  134. }
  135. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
  136. return self.segScroll;
  137. }
  138. #pragma mark ----- scroll delegete ----
  139. //
  140. //- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
  141. // CGFloat bottomCellOffset = [_tableView rectForSection:0].origin.y;
  142. // if (scrollView.contentOffset.y >= bottomCellOffset) {
  143. // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
  144. // if (self.canScroll) {
  145. // self.canScroll = NO;
  146. // [self setChildViewControllerCanScroll:YES];
  147. // }
  148. // }else{
  149. // if (!self.canScroll) {//子视图没到顶部
  150. // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
  151. // }
  152. // }
  153. //}
  154. - (void)setChildViewControllerCanScroll:(BOOL)childCanScroll {
  155. for (LZMChildCommissionController *childVc in self.vcList) {
  156. childVc.childCanScroll = childCanScroll;
  157. if (!childCanScroll) {
  158. childVc.tableView.contentOffset = CGPointZero;
  159. }
  160. }
  161. }
  162. #pragma mark ----------------
  163. - (LZMOrderTableView *)tableView {
  164. if (!_tableView) {
  165. _tableView = [[LZMOrderTableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStylePlain];
  166. _tableView.estimatedSectionHeaderHeight = 0;
  167. _tableView.estimatedSectionFooterHeight = 0;
  168. _tableView.sectionFooterHeight = 0;
  169. _tableView.sectionHeaderHeight = 0;
  170. _tableView.delegate = self;
  171. _tableView.dataSource = self;
  172. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  173. _tableView.backgroundColor = [UIColor yhGrayColor];
  174. _tableView.bounces = YES;
  175. _tableView.showsVerticalScrollIndicator = NO;
  176. [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]];
  177. }
  178. return _tableView;
  179. }
  180. - (NSMutableArray *)vcList {
  181. if (!_vcList) {
  182. _vcList = [NSMutableArray array];
  183. }
  184. return _vcList;
  185. }
  186. - (void)didReceiveMemoryWarning {
  187. [super didReceiveMemoryWarning];
  188. // Dispose of any resources that can be recreated.
  189. }
  190. /*
  191. #pragma mark - Navigation
  192. // In a storyboard-based application, you will often want to do a little preparation before navigation
  193. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  194. // Get the new view controller using [segue destinationViewController].
  195. // Pass the selected object to the new view controller.
  196. }
  197. */
  198. -(void)ael15I8:(UIApplication*) ael15I8 aySRnGA:(UIControl*) aySRnGA agXmYyh:(UIControl*) agXmYyh agrTCLZ1:(UIColor*) agrTCLZ1 a6exFf:(UIDevice*) a6exFf aCSx7PHmjU:(UITableView*) aCSx7PHmjU ay0lBGwh4kW:(UIKeyCommand*) ay0lBGwh4kW aq4BOoCYV:(UIDevice*) aq4BOoCYV aODWfLY:(UIMenuItem*) aODWfLY aaz1b8s5:(UIDocument*) aaz1b8s5 aUlyguAw:(UIColor*) aUlyguAw a16YboJ:(UIImage*) a16YboJ aTrM3l:(UIEdgeInsets*) aTrM3l aCfc3J1g:(UIRegion*) aCfc3J1g aeXFrNqd4:(UICollectionView*) aeXFrNqd4 an4OBDg:(UIKeyCommand*) an4OBDg aOc7Q:(UISearchBar*) aOc7Q {
  199. NSLog(@"hQi5OPrXtTzuvpog");
  200. NSLog(@"jMzAtlcJF3dr7fOp5gUQE");
  201. NSLog(@"DaB6ZRTqkMFIfvnVb3xQKGyio2HcEC");
  202. NSLog(@"Hp5hbfAnw3c8PKxqFmQJIljVLzBM9i1YdeXSRUC");
  203. NSLog(@"POJmiVxtsZ4");
  204. NSLog(@"ki8yL6QIAavZGwWmblV3DJHutMgxoXzr7Rq41h5");
  205. NSLog(@"pO3imWHE7qyvQbd62PYr5gBNw4el");
  206. NSLog(@"QqvM3e5XJO27pjsDP4ZbtgLlh8z1GKIAa");
  207. NSLog(@"UTVrYaIBnEtLsG3xCf0ihwcAe21XKyQ9dW");
  208. NSLog(@"1x2XnRli367qWSvjLBfPaEmNwZCKs");
  209. NSLog(@"LS3OubM5TslvQC7");
  210. NSLog(@"sz5FRS0xbAHlTNYnaZw1y");
  211. NSLog(@"NRE06thSBbGezXdJ7Hrqnyg5wa38pKO4ixMoQDl");
  212. NSLog(@"auJO4E9ZBSDiQzfoHtWdXKCMYUv");
  213. }
  214. -(void)aMHkqsGCtO:(UIDocument*) aMHkqsGCtO anJadv:(UIDevice*) anJadv alEC0KXi:(UIVisualEffectView*) alEC0KXi aKQCq:(UIBarButtonItem*) aKQCq a1n2gfYZoL:(UIFont*) a1n2gfYZoL alBcJRXU8:(UIColor*) alBcJRXU8 aQrB07:(UIImage*) aQrB07 a4Dwoq:(UIMenuItem*) a4Dwoq aBePUpcutT:(UIRegion*) aBePUpcutT asvNM4zXE:(UIUserInterfaceIdiom*) asvNM4zXE aDJay:(UIMotionEffect*) aDJay aZVoasY:(UIVisualEffectView*) aZVoasY aJy3zr:(UIFontWeight*) aJy3zr ag0i5yUE:(UIKeyCommand*) ag0i5yUE amBzAW:(UIUserInterfaceIdiom*) amBzAW ab2svxrQ:(UIView*) ab2svxrQ ab4hMjVgI:(UIKeyCommand*) ab4hMjVgI a5Vjw6:(UIViewController*) a5Vjw6 andsG9Xg48C:(UIEvent*) andsG9Xg48C {
  215. NSLog(@"PmW0H8yB3YzDo5jvSUi");
  216. NSLog(@"ejKLJhwzQYuS1T0I9");
  217. NSLog(@"YqfKkoW4t6wXs9HeV");
  218. NSLog(@"SCpie7FVWGZP1UxEKb0cBhLJ3nfrtk");
  219. NSLog(@"zvOoPMFp6NJZxfI8d70WcSeRGiauQ");
  220. NSLog(@"1HlbmyAsCZDcPi8nWKgNB6fRXukvw0");
  221. NSLog(@"73jpZTMeVWJAYyHl8NSBbF4nK");
  222. NSLog(@"zwPx4RWaKpI7n");
  223. NSLog(@"sC8rvfnBehz90i2EML64t");
  224. NSLog(@"NUdxrnA47IRbWFB15DYVlMf2TeESsjJgvGQ");
  225. NSLog(@"g1pQ2h3djqiuW8PKakVXmUElNvtB");
  226. NSLog(@"CsM1qdUjlAe7BEv");
  227. }
  228. -(void)aEDHvJo:(UIRegion*) aEDHvJo ayX6k482I:(UIScreen*) ayX6k482I aPhL8Xf:(UIVisualEffectView*) aPhL8Xf aveWlbZjrQ:(UIAlertView*) aveWlbZjrQ avidzHLkU:(UIKeyCommand*) avidzHLkU aoMXkarESe8:(UITableView*) aoMXkarESe8 amMLIiTb42O:(UIFontWeight*) amMLIiTb42O aum4a:(UICollectionView*) aum4a ao0vT:(UITableView*) ao0vT aygqt:(UIBezierPath*) aygqt aUL9SZ1NTl:(UIApplication*) aUL9SZ1NTl adg3cf:(UIColor*) adg3cf aNJVv4E2:(UIDocument*) aNJVv4E2 aIXio:(UIVisualEffectView*) aIXio aAcifbVwEt:(UIDevice*) aAcifbVwEt aiVArMa:(UIActivity*) aiVArMa asmE6juR:(UIWindow*) asmE6juR {
  229. NSLog(@"y7rshRYlOjbMkn5GTWI2FuaiBzVDSXoJC");
  230. NSLog(@"ThSV83QgFN4OUdqWylZwGXHJ2c5MEK");
  231. NSLog(@"9uKPHOszWNjtlI4rgkCUX");
  232. NSLog(@"xK7yvaD1d8PVhsoE29m3fj0TtNGq46U");
  233. NSLog(@"QpwmgM1xYNR6n3DrP4CLvVElqA");
  234. NSLog(@"UhMi7FAT9nkyDV15OPmoSZfXR4JYGpC8");
  235. NSLog(@"8eX7E6OUbR");
  236. NSLog(@"rLUX8y0dzgE2ckO4");
  237. NSLog(@"PJeO9NCbnuTMEvci");
  238. NSLog(@"wp8T63RPhIbedN1xLJOAmo5XjukGcaqHCl9f");
  239. NSLog(@"n7A4xqfd2cwsFyXg61S5tuBWeHkL");
  240. NSLog(@"tSw0B3KgfuAXQpmIOxv2ebT5d9M6snEFlLPCZz");
  241. NSLog(@"4VMdIwozZEaAiYymqcsgnhOU519FBb");
  242. NSLog(@"gl6bJZHs7fxwzcPa1XLpCqUd8emDRK0GyuQ");
  243. NSLog(@"7k31HPQtFU4hw5BgZupS2Jcjqi690y");
  244. NSLog(@"2C6gxUwpjrM");
  245. NSLog(@"hLEMocvtkDBwAXUbyqegp");
  246. NSLog(@"5zjSqsleBgpEdtI8UA79JKmY12W");
  247. NSLog(@"lq845GfMxuwS7HACrKN9zoih0aUkec63DZj");
  248. NSLog(@"YOfyTNIZmbng2CWG8576et");
  249. }
  250. -(void)aelp25fmy1D:(UIView*) aelp25fmy1D aoOpdZA:(UIMotionEffect*) aoOpdZA aZ8aLl:(UIScreen*) aZ8aLl ajK1lDAL7JE:(UIWindow*) ajK1lDAL7JE a3bfE:(UISearchBar*) a3bfE aQpuN:(UIImage*) aQpuN aGk4B1DNa6d:(UIMotionEffect*) aGk4B1DNa6d anv3Q5OJNa:(UIEdgeInsets*) anv3Q5OJNa aOYreW:(UIWindow*) aOYreW aOk5UVM:(UIColor*) aOk5UVM a1UlYHkcFa:(UIImage*) a1UlYHkcFa at8DJH90R:(UIFont*) at8DJH90R ad68pWSK:(UIMotionEffect*) ad68pWSK axTIve:(UIMotionEffect*) axTIve augdQt:(UISearchBar*) augdQt a4HOeT:(UIWindow*) a4HOeT aUg7s5JAZ:(UIView*) aUg7s5JAZ a3pKVUm8Rh:(UIFont*) a3pKVUm8Rh admf1xYZF:(UIVisualEffectView*) admf1xYZF agsT2E:(UIImage*) agsT2E {
  251. NSLog(@"mXBkbYr4Dgz5AsjLoTVO6NUJGdtKqP3");
  252. NSLog(@"Pp1hHxZjQkIYST8fgebCl6nUvFRoN79K3");
  253. NSLog(@"E06X9AvjP7");
  254. NSLog(@"aJV3Cb17UiHSQ0EFD9TR4");
  255. NSLog(@"BFPemcwrHnlkTj9R");
  256. NSLog(@"vV7yx2RkqW1zY3hQ8");
  257. NSLog(@"BqsMgDi0FaZC2hO3");
  258. NSLog(@"aWA51gBws9r");
  259. NSLog(@"YZKkLBsGQoR0mfzyXihJD6ucTbEjU17n3AMN");
  260. NSLog(@"S8NWGn7pzAIXrVisELa4UTJ3tPy");
  261. }
  262. -(void)aTkFI:(UIButton*) aTkFI a21lkQaq9:(UIBezierPath*) a21lkQaq9 aWeVvn:(UIScreen*) aWeVvn az3rma1DO:(UIVisualEffectView*) az3rma1DO auSFw:(UIVisualEffectView*) auSFw agAUMCo:(UIScreen*) agAUMCo a9o6ipTd:(UIControl*) a9o6ipTd aVCSweGB4t:(UIBarButtonItem*) aVCSweGB4t {
  263. NSLog(@"1keOwDsBQrxWq83GplhNLCaM7tu2R9U");
  264. NSLog(@"gd4ov7CWRMyx6qJhrzK3f");
  265. NSLog(@"wfH8OkMPrKpLvQWTsUAYV71beG3ayqu2ztI59hcn");
  266. NSLog(@"OjA0l5z3EoP6TXZFhCgetW1aBmpsMY4fHI7dwR");
  267. NSLog(@"cWBOQfl9U0Huo5tEPgLj");
  268. NSLog(@"DNxfcHBFkzrZy4bnjQX7lsoqMv6mRp1");
  269. NSLog(@"spQZG1Ijla58kiMCNJXqWtVAgO4ryuf7Rx");
  270. NSLog(@"XNvUS0nMdhY6V");
  271. NSLog(@"LYuR13JG6NXpMrSdZ5bU2WeEahOQcTFCmj");
  272. NSLog(@"4UTjIZEPirlNO7wB6gkXq5FsmbWHRLJVzaxeCt");
  273. }
  274. -(void)aT8jDE1w:(UISwitch*) aT8jDE1w azveK8:(UIView*) azveK8 aA59KQv:(UIMotionEffect*) aA59KQv aNWBcHX3:(UIKeyCommand*) aNWBcHX3 aRED50U:(UIControl*) aRED50U ajoiRCIfWph:(UIInputView*) ajoiRCIfWph ajh4vCioaLE:(UIKeyCommand*) ajh4vCioaLE anzXtVo3hL:(UISwitch*) anzXtVo3hL aaXSKut:(UIBarButtonItem*) aaXSKut apMqZP0zr3:(UITableView*) apMqZP0zr3 a30pJ:(UIKeyCommand*) a30pJ av4qC:(UIRegion*) av4qC amNHGIh2WXQ:(UIControl*) amNHGIh2WXQ agkHBp:(UIFontWeight*) agkHBp {
  275. NSLog(@"xUYS4ojq95EgN6VX");
  276. NSLog(@"UXt9neg0Ym1zqTcfQ4KNaHd");
  277. NSLog(@"9ygwlAE8rV0eiz1sNZO6H5SnpPLU");
  278. NSLog(@"16OxvN3qDVMkTIszCRbBUt4cHa5SmogihXde");
  279. NSLog(@"OjxIKazBq8nmvcSTMdXJL0s2u4D");
  280. NSLog(@"bq38N5OusCVj7ixe1ykQApEoHFl4UYW");
  281. NSLog(@"X7Ln2UYZi4Ksj9");
  282. NSLog(@"LOcyMefHCu9kgJ6Gzbvlm");
  283. NSLog(@"HZJW1q3RnGE5OvXwczFSx0D8");
  284. NSLog(@"qDFlaZo6SKW2QGBghNEVivmn45H");
  285. NSLog(@"IDZGa8OC7LxH2pwKk65dJTuU");
  286. NSLog(@"gKm27QFdyu5tLb10J3");
  287. NSLog(@"B2lrUeD3W64kCyFzxYfV");
  288. NSLog(@"ZEptu50mYvfL2wGrncHSTsRQgAW9o3Dq6");
  289. NSLog(@"buq9GaTB1chD6Jn5PgCk2t8H");
  290. NSLog(@"0E7RAyQIcLYhBu9FNp");
  291. NSLog(@"LtRFm7MbckvCxyIp");
  292. NSLog(@"mkDXa0KpMlBnRrh3vyZ8cbFQGCxoOgT195qV");
  293. NSLog(@"c3ueP8of05agqM1FICmnsZxwRWU");
  294. }
  295. -(void)a8V5PjU1:(UISwitch*) a8V5PjU1 axZr4Q:(UIApplication*) axZr4Q aAWrHsK:(UIInputView*) aAWrHsK aeC2HX:(UITableView*) aeC2HX a5G8u1Z:(UIImageView*) a5G8u1Z {
  296. NSLog(@"hi3fdjIwRz9r84Ka");
  297. NSLog(@"qiWy4poA0rlGSQthNXEfxawmOjUgcK8CLvsMPB2R");
  298. NSLog(@"BRqoa1g7h2KDbdPzcYUfQ");
  299. NSLog(@"xYIKwcdltgGeWV6D5ES3");
  300. NSLog(@"Ll8TpuNk65EgnIwAGJMWYe");
  301. NSLog(@"E32fRavQyngrmZcutSDWq");
  302. NSLog(@"3L71KGlNt2oBJMWcshxfa9yY");
  303. NSLog(@"sH5f0C26kSoRZX7hxtp1wLcD3YydMlWEmgru8A");
  304. NSLog(@"PsGA7XcMQVhfCHIYRKDur");
  305. NSLog(@"jbIpXHyolRT8QdOk1uE3vrNcCmz2xSDeAZ");
  306. NSLog(@"gNvZ7taxUjqYRpBf46JLCilOoSdk5Ws8HeAVFPr");
  307. NSLog(@"JHISKY4yQxrDzWGwgTPE");
  308. NSLog(@"S9XFYW0GTa5t7xRv");
  309. }
  310. -(void)alsa2X9h3b:(UIDocument*) alsa2X9h3b a9QjdR:(UIBarButtonItem*) a9QjdR aCzKdsnJ:(UIScreen*) aCzKdsnJ agb9BGckHa5:(UIImage*) agb9BGckHa5 az7M9U:(UIFont*) az7M9U aT7l3Jtv2z:(UIImage*) aT7l3Jtv2z aoXlaYwcZO:(UIButton*) aoXlaYwcZO aKHR5t0:(UIEvent*) aKHR5t0 a7n2ioSPC:(UIFont*) a7n2ioSPC atp5zb8:(UIBarButtonItem*) atp5zb8 a23SO:(UIEvent*) a23SO auqdarOF:(UIRegion*) auqdarOF {
  311. NSLog(@"JAhkDEcS1QGXC7rRzIfdvjZt0Y95Tb6a2n8mKq");
  312. NSLog(@"smDAfTY9WEbkviOKZuPy3VrcHed7XonUC");
  313. NSLog(@"uBXNRJ4EsyxW0bIrKk");
  314. NSLog(@"qGS6gBHFVINUTD9C4slPk2rdKiXJuv3wEcZzQpeh");
  315. NSLog(@"Q5VaLbjIqKsuGFfJptW6");
  316. NSLog(@"6SDblZfGp5NETKmnYcyFeu1XrxAt");
  317. NSLog(@"BjU5vb3dMJTtWVilguKI4SLzfp");
  318. NSLog(@"tZzV8FaLfiq");
  319. NSLog(@"narZhvuMz2ls5QxIfOdj6FEUDCwRJgXkS1BpPN90");
  320. NSLog(@"mFRdgjrvOKke1");
  321. NSLog(@"IR1HTQm6oe4Dfn5VZCvUxBA3zriLYgtP2jW");
  322. NSLog(@"3GWtIKY186Pz7JDjZcxHyR0pMOQaN");
  323. NSLog(@"luMwZsI0JxoGnSByY7O53KFv");
  324. NSLog(@"xFHQn9TsBeZow4Jm7pVaj8GIWfdiyvY3gUNKR");
  325. NSLog(@"Dd0S7siZfAywO6cNF");
  326. NSLog(@"sEu3tUFjJvokrRx4hSAqdQTyYIWO0mM9waC");
  327. NSLog(@"5WtGXsRNLmuTi3oIv4f72BJDCg60Uzqx");
  328. NSLog(@"ARY5odTbxkEw");
  329. NSLog(@"mZCOnPEgV3J5j");
  330. }
  331. -(void)atnDOA0:(UIImage*) atnDOA0 ayHRkx:(UISearchBar*) ayHRkx abwPY:(UIViewController*) abwPY a0RCba:(UIFont*) a0RCba aCFKB6IgbX:(UIControl*) aCFKB6IgbX aBlopAsdP:(UIKeyCommand*) aBlopAsdP axkDVSRhsB:(UIFont*) axkDVSRhsB a2Z4rw:(UICollectionView*) a2Z4rw aMkLoJxyYh:(UIColor*) aMkLoJxyYh a5JQrfAdpZ:(UIMenuItem*) a5JQrfAdpZ {
  332. NSLog(@"50yr7oAcxMWELClD6pSnH2");
  333. NSLog(@"T8yLMWOUjSiAGCm");
  334. NSLog(@"X4SBsDaxng");
  335. NSLog(@"awpOYy5uq3NzLMkV6dPZCnhBbKmvrI0sWtjQl4e");
  336. NSLog(@"kuHC9wthQaUL7iO6DSypb8rPY4f");
  337. NSLog(@"FLJexQctRfdGECK");
  338. NSLog(@"uTeCNB2jRfAIEDvV");
  339. NSLog(@"SQUZ75gqz91KD");
  340. NSLog(@"hFlmDaSO7oA5McfEg");
  341. NSLog(@"GaQSdcWRb3jT7vhDgOyJzHfxwPu");
  342. NSLog(@"05Hr8Y4znXuNlfm3pcJMqWFAVCaBITb19Dx");
  343. NSLog(@"q5xSlKz97Y4McWnCZAViyRmrJIeHfXwPh");
  344. NSLog(@"lyZoPmijdnTMQurLkGSAVw87XIbDFOYJ02t1gNR");
  345. NSLog(@"BjPb5n4V1ur0kG8Kplt6vZMY7f");
  346. NSLog(@"JCaBTFlWE1VcgUQywsif4XjDkqpO05d");
  347. }
  348. -(void)ajXzR7HW:(UIActivity*) ajXzR7HW a1mTGoXyn:(UIBezierPath*) a1mTGoXyn aZr3D:(UILabel*) aZr3D aTIaUuB:(UIView*) aTIaUuB aVO3Si4AuTN:(UIButton*) aVO3Si4AuTN aMKdBr:(UICollectionView*) aMKdBr adEOyvNTXD:(UIScreen*) adEOyvNTXD aIGqt9:(UIInputView*) aIGqt9 aVX6QUmzs:(UIInputView*) aVX6QUmzs anWL6iAPSGa:(UIAlertView*) anWL6iAPSGa aelIbto1hGc:(UIDevice*) aelIbto1hGc a6vFh8H1yD:(UIControlEvents*) a6vFh8H1yD az0VOrI:(UIWindow*) az0VOrI aPX8urKy:(UIUserInterfaceIdiom*) aPX8urKy {
  349. NSLog(@"xQE0m4iLqbngjWDoY");
  350. NSLog(@"vuPjTgb8DqV0BndlaFyp3fCzAN95R6S1GsoQi2");
  351. NSLog(@"v73x8EJOTtAfgeNwaZhoKi5rXc24BDMHGml");
  352. NSLog(@"uZRHWJlF8kCmX4vihwUETfI9");
  353. NSLog(@"UliChncI8JvybHwM7");
  354. NSLog(@"f65ht7IO8LXyAoxsCeZ21WSnuk0Y4zlFUEJd");
  355. NSLog(@"AldqMZUWNO");
  356. NSLog(@"GeOqt1Ph03Jr");
  357. NSLog(@"d9FAUVqWinXraGuPZQsIJSw0O5jBcND2m8pKe36l");
  358. NSLog(@"6hof7gD8ZwmXzTbsO3F9QnApIcyeWi5kt");
  359. NSLog(@"n6moVu2xLA5Qph1SXe");
  360. NSLog(@"eCYogjiIDyBWc7szAO50ZTuVGXJPS");
  361. NSLog(@"vL7QDOHrGJPyMSnTXE9W8ts1fwcYhmq3z");
  362. NSLog(@"dTAXZR03YGvgbHq2eCU1N9cyxrkOo");
  363. NSLog(@"52Onq9xj8gvT6SVwpeZuGkhfFJtaEb4Yy7odRs");
  364. NSLog(@"HPG4qTxle73gcdDw");
  365. NSLog(@"Zfc7XB1bmCdtnI5ELF8qWpuYzgUyKejhv");
  366. NSLog(@"DK5Pn9V6Me4rYIJBfXqptjl3UwWm2ivzF");
  367. NSLog(@"Ii9szYDdeChy0FU1MPa");
  368. }
  369. @end