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

YZMAOrderMainViewController.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. //
  2. // YZMAOrderMainViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/18.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "YZMAOrderMainViewController.h"
  9. #import "YZMAOrderTableView.h"
  10. #import "MLMSegmentHead.h"
  11. #import "MLMSegmentManager.h"
  12. #import "YZMAChildOrderController.h"
  13. #import "YZMAOrderHeaderView.h"
  14. #import "YZMAWithdrawViewController.h"
  15. #import "YZMAGetMoneyViewController.h"
  16. @interface YZMAOrderMainViewController ()
  17. <
  18. UITableViewDelegate,
  19. UITableViewDataSource,
  20. YHOrderHeaderViewDelegate
  21. >
  22. @property (nonatomic, strong) YZMAOrderTableView *tableView;
  23. @property (nonatomic, strong) YZMAOrderHeaderView *headerView;
  24. @property (nonatomic, strong) MLMSegmentHead *titleView;
  25. @property (nonatomic, strong) MLMSegmentScroll *segScroll;
  26. @property (nonatomic, strong) NSMutableArray *vcList;
  27. @property (nonatomic, assign) BOOL canScroll;
  28. @end
  29. @implementation YZMAOrderMainViewController
  30. - (void)viewDidLoad {
  31. [super viewDidLoad];
  32. [self configNavigationBar];
  33. [self configTableView];
  34. [self creatHeaderViewAndFooterView];
  35. }
  36. -(void)viewWillAppear:(BOOL)animated{
  37. [super viewWillAppear:animated];
  38. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  39. }
  40. -(void)viewDidDisappear:(BOOL)animated{
  41. [super viewDidDisappear:animated];
  42. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  43. }
  44. - (void)configTableView {
  45. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeScrollStatus) name:@"leaveTop" object:nil];
  46. self.canScroll = YES;
  47. self.headerView = [[YZMAOrderHeaderView alloc] initWithFrame:CGRectMake(0, 0,SCREEN_WIDTH , 135)];
  48. self.headerView.delegate=self;
  49. self.tableView.tableHeaderView = self.headerView;
  50. [self.view addSubview:self.tableView];
  51. }
  52. - (void)configNavigationBar {
  53. [self.navigationBar setNavTitle:@"我的账户"];
  54. self.navigationBar.backgroundColor = [UIColor changeColor];
  55. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  56. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  57. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  58. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  59. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  60. }
  61. - (void)backAction {
  62. [self.navigationController popViewControllerAnimated:YES];
  63. }
  64. - (void)creatHeaderViewAndFooterView {
  65. self.view.backgroundColor = [UIColor whiteColor];
  66. NSArray *titleArr = @[@"全部",@"佣金收入",@"红包收入",@"提现扣除"];
  67. for (int i = 0; i < titleArr.count; i++) {
  68. YZMAChildOrderController *child = [[YZMAChildOrderController alloc] init];
  69. switch (i) {//😯
  70. case 0:
  71. {
  72. child.type=4;
  73. }
  74. break;
  75. case 1:
  76. {
  77. child.type=0;
  78. }
  79. break;
  80. case 2:
  81. {
  82. child.type=1;
  83. }
  84. break;
  85. case 3:
  86. {
  87. child.type=2;
  88. }
  89. break;
  90. default:
  91. break;
  92. }
  93. [self.vcList addObject:child];
  94. }
  95. self.segScroll = [[MLMSegmentScroll alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, ChildTableViewHeight) vcOrViews:self.vcList];
  96. self.segScroll.bounces = NO;
  97. self.titleView = [[MLMSegmentHead alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, 40) titles:titleArr headStyle:SegmentHeadStyleDefault layoutStyle:MLMSegmentLayoutDefault];
  98. self.titleView.headColor = [UIColor whiteColor];
  99. self.titleView.bottomLineHeight = 1;
  100. self.titleView.bottomLineColor = [UIColor yhGrayColor];
  101. self.titleView.fontScale = 1;
  102. self.titleView.fontSize = 14;
  103. self.titleView.equalSize = YES;
  104. self.titleView.showIndex = 0;
  105. self.titleView.selectColor = [UIColor YHColorWithHex:0xff442a];
  106. self.titleView.deSelectColor = [UIColor YHColorWithHex:0x666666];
  107. [MLMSegmentManager associateHead:self.titleView withScroll:self.segScroll completion:^{
  108. [self.view addSubview:self.titleView];
  109. [self.view addSubview:self.segScroll];
  110. }];
  111. }
  112. #pragma mark ----- nofi -----
  113. - (void)changeScrollStatus {
  114. self.canScroll = YES;
  115. for (YZMAChildOrderController *childVc in self.vcList) {
  116. childVc.childCanScroll = NO;
  117. }
  118. }
  119. #pragma mark --------------------- UITableView delegate -------
  120. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  121. return 1;
  122. }
  123. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  124. return 1;
  125. }
  126. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  127. return 0.1;
  128. }
  129. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  130. return 40;
  131. }
  132. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  133. return SCREEN_HEIGHT-NavBarHeight-40;
  134. }
  135. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  136. UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"];
  137. return cell;
  138. }
  139. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  140. return self.titleView;
  141. }
  142. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
  143. return self.segScroll;
  144. }
  145. #pragma mark ----- scroll delegete ----
  146. //- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
  147. // CGFloat bottomCellOffset = [_tableView rectForSection:0].origin.y;
  148. // if (scrollView.contentOffset.y >= bottomCellOffset) {
  149. // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
  150. // if (self.canScroll) {
  151. // self.canScroll = NO;
  152. // [self setChildViewControllerCanScroll:YES];
  153. // }
  154. // }else{
  155. // if (!self.canScroll) {//子视图没到顶部
  156. // scrollView.contentOffset = CGPointMake(0, bottomCellOffset);
  157. // }
  158. // }
  159. //}
  160. //
  161. //- (void)setChildViewControllerCanScroll:(BOOL)childCanScroll {
  162. // for (YZMAChildOrderController *childVc in self.vcList) {
  163. // childVc.childCanScroll = childCanScroll;
  164. // if (!childCanScroll) {
  165. // childVc.tableView.contentOffset = CGPointZero;
  166. // }
  167. // }
  168. //}
  169. #pragma mark -代理 YHOrderHeaderViewDelegate
  170. - (void)changeToWithdrawVCwithMoneyStr:(NSString *)moneyStr{
  171. // YZMAWithdrawViewController *vc=[[YZMAWithdrawViewController alloc]init];
  172. // vc.moneyStr=moneyStr;
  173. // if ([moneyStr floatValue]<10.0f) {
  174. //
  175. // [SVProgressHUD dismiss];
  176. // [MBProgressHUD showMessage:@"提现金额不能少于10元哦"];
  177. // }else{
  178. // [self.navigationController pushViewController:vc animated:YES];
  179. // }
  180. YZMAGetMoneyViewController *vc=[[YZMAGetMoneyViewController alloc]init];
  181. vc.moneyStr=moneyStr;
  182. if ([moneyStr floatValue]<10.0f) {
  183. [SVProgressHUD dismiss];
  184. [MBProgressHUD showMessage:@"提现金额不能少于10元哦"];
  185. }else{
  186. [self.navigationController pushViewController:vc animated:YES];
  187. }
  188. }
  189. #pragma mark ----------------
  190. - (YZMAOrderTableView *)tableView {
  191. if (!_tableView) {
  192. _tableView = [[YZMAOrderTableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStylePlain];
  193. _tableView.estimatedSectionHeaderHeight = 0;
  194. _tableView.estimatedSectionFooterHeight = 0;
  195. _tableView.sectionFooterHeight = 0;
  196. _tableView.sectionHeaderHeight = 0;
  197. _tableView.delegate = self;
  198. _tableView.dataSource = self;
  199. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  200. _tableView.backgroundColor = [UIColor yhGrayColor];
  201. _tableView.bounces = YES;
  202. _tableView.showsVerticalScrollIndicator = NO;
  203. [_tableView setSeparatorColor:[UIColor YHColorWithHex:0xdddddd]];
  204. }
  205. return _tableView;
  206. }
  207. - (NSMutableArray *)vcList {
  208. if (!_vcList) {
  209. _vcList = [NSMutableArray array];
  210. }
  211. return _vcList;
  212. }
  213. - (void)didReceiveMemoryWarning {
  214. [super didReceiveMemoryWarning];
  215. // Dispose of any resources that can be recreated.
  216. }
  217. /*
  218. #pragma mark - Navigation
  219. // In a storyboard-based application, you will often want to do a little preparation before navigation
  220. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  221. // Get the new view controller using [segue destinationViewController].
  222. // Pass the selected object to the new view controller.
  223. }
  224. */
  225. -(void)a2dUGhYXV:(UIBarButtonItem*) a2dUGhYXV aB2MrsH:(UIFontWeight*) aB2MrsH aI0YDFOxJh:(UIActivity*) aI0YDFOxJh aPGadA48:(UIDevice*) aPGadA48 aJIaSVNrk:(UIVisualEffectView*) aJIaSVNrk aXwsFyt7:(UILabel*) aXwsFyt7 aojmPEwbu6:(UISearchBar*) aojmPEwbu6 au1vxtkdMZ:(UISearchBar*) au1vxtkdMZ aRCyqpF9U:(UISwitch*) aRCyqpF9U aUIHleFcuQ:(UIApplication*) aUIHleFcuQ akyl50YSJ:(UIMenuItem*) akyl50YSJ {
  226. NSLog(@"yHJfAevmVl1M4");
  227. NSLog(@"X2apv8dJGAulPESCzBUihw");
  228. NSLog(@"hzJ3cB7TbaHq04m2isPuvLO6ygDlNeGI8fQ1oVE");
  229. NSLog(@"YNSpyM0jfA3ZIKPnO");
  230. NSLog(@"fJS8CjHODEhuvQPLKg9bemRz5Ano3IN");
  231. NSLog(@"6BqSPnWybYeo2KVvrxiL5IcFk4");
  232. NSLog(@"14y2qrui5SDtQfoENjOUYpKX7xLvzelT3");
  233. NSLog(@"N5y23IcKguvqLepQS0WPzVxrMATDwBXi8RU");
  234. NSLog(@"u9zkxiY2BCwFS0gV");
  235. NSLog(@"2AorJewTugnqbmcLVZKQFyplh7s6zORdvYENiGt");
  236. NSLog(@"XxqI1poNsSk59nw7rHJ");
  237. NSLog(@"EXPUSbC4xVLJnWKd3ka7wl");
  238. }
  239. -(void)aarZ2l:(UIKeyCommand*) aarZ2l a17MB0pL:(UISearchBar*) a17MB0pL aAHhpa:(UILabel*) aAHhpa a8EFnTUQ:(UIDevice*) a8EFnTUQ aIYJ13:(UIVisualEffectView*) aIYJ13 aIafNgcQKv:(UIAlertView*) aIafNgcQKv anFQo5iD:(UIControl*) anFQo5iD azw9Ffleuhg:(UIVisualEffectView*) azw9Ffleuhg arELX:(UIImage*) arELX aQbXUOsBMGj:(UIEvent*) aQbXUOsBMGj aVghHzpv:(UIImage*) aVghHzpv aK1AuT:(UIFontWeight*) aK1AuT aaOwkAW:(UIRegion*) aaOwkAW aR2JCA08NS:(UIViewController*) aR2JCA08NS aHbs0DF32:(UIImageView*) aHbs0DF32 ataPFX:(UIDevice*) ataPFX a9SlzgC61X:(UIDevice*) a9SlzgC61X anCq572D:(UIViewController*) anCq572D aT73QOv:(UIKeyCommand*) aT73QOv {
  240. NSLog(@"BmxG2HfgMJDy1iY4XU0R");
  241. NSLog(@"vB02xsA1rKt4GE8pnaqdN9X");
  242. NSLog(@"s76MiG3XUph");
  243. NSLog(@"iv3VudJ01q8EzwWQYmebfPZnI");
  244. NSLog(@"ob8IaVsF27Ck4G59");
  245. NSLog(@"GTD4Qyf7Iaj3c5VU1iHqzxk");
  246. NSLog(@"JK1bQfiGXgE4jrIcza96L");
  247. NSLog(@"s2ZOeKBbTMA4oJt9mfpG8");
  248. NSLog(@"w7tWY0NkZBgAJV4lespShxic");
  249. NSLog(@"g3XH0cEerTQVwnl81aKPU2SMBGmFA");
  250. NSLog(@"CAYt9Rzhuw2E4Qb");
  251. NSLog(@"EZOk3chFxsCVHed9");
  252. NSLog(@"E6Zv5jiJ17eRQa");
  253. NSLog(@"PlGDoMX7z2v3EdQ4aUFZbBiruj");
  254. NSLog(@"bQYhWRq8etUMoSncksl7");
  255. NSLog(@"QNFdauYevziAGUTV87ycIZt1xphgWBnSfO5H9L2");
  256. NSLog(@"4znqbfxR0W8shXNCwQKSIdUogMp6ctmiy9VlY");
  257. NSLog(@"OfhZ6HXbFQp9ND7o");
  258. }
  259. -(void)aMIuS:(UIDevice*) aMIuS auh3K8:(UIInputView*) auh3K8 aLROtXU:(UIBarButtonItem*) aLROtXU akn4hsU3:(UISearchBar*) akn4hsU3 aqHtvgljQ4:(UIImageView*) aqHtvgljQ4 aR9WeKCQH:(UIDocument*) aR9WeKCQH aKlNYzmvABy:(UIControl*) aKlNYzmvABy a7s9FTyl:(UIDevice*) a7s9FTyl aDF8mYy:(UIBarButtonItem*) aDF8mYy axsN5C:(UIControlEvents*) axsN5C ambNRD:(UIControl*) ambNRD {
  260. NSLog(@"etTZ0lo1v6EL3BGiq");
  261. NSLog(@"rQuAIL8tTqaNkgG");
  262. NSLog(@"f9ZT5gWMphPcezvq");
  263. NSLog(@"WhAKxlgPG8DrNQkHIM1u9ZbyFnpvRf");
  264. NSLog(@"iPyzeK0AXva79U1QgHhr8CY4Ru");
  265. NSLog(@"yXvaNUGPtBsbnw74pucJC3DK82o6OIg");
  266. NSLog(@"F9TU65jYANeZhkx2itRsf0aLJwlpgvDrGzH");
  267. NSLog(@"cHmsfz0A2Powdju98qFE5b");
  268. NSLog(@"zADmcwuqNThofaiZ9UB6Q");
  269. NSLog(@"lIHGh5pQMS9nZk2YFruJCmW");
  270. NSLog(@"kbx2sQKPHN9JXLZMlqfRDcrgeuzn3YjTE6Umiap0");
  271. NSLog(@"BzbnpH631vD7X2rRtfmLclQ0OjIuToWhUy84Ni");
  272. NSLog(@"WfaxyOrXiCKutMYIdm");
  273. NSLog(@"2aRdjFzwC8AxbhLno6OYfM4");
  274. }
  275. -(void)aicsYqj:(UISwitch*) aicsYqj al9qW:(UIButton*) al9qW aHbGFBx3:(UIKeyCommand*) aHbGFBx3 aWc2T1u7Ub:(UIViewController*) aWc2T1u7Ub aoBzd:(UIFont*) aoBzd aA2wMu:(UIAlertView*) aA2wMu a4DNA:(UIView*) a4DNA agO07aHLC:(UIEdgeInsets*) agO07aHLC ao3H6:(UILabel*) ao3H6 aT8Kam:(UIBarButtonItem*) aT8Kam aXgfc:(UIBarButtonItem*) aXgfc auF8gPK:(UICollectionView*) auF8gPK aNOqHl:(UISearchBar*) aNOqHl ajuvL9eGK:(UITableView*) ajuvL9eGK akzWF0:(UIApplication*) akzWF0 aik9OUHtSCG:(UIBezierPath*) aik9OUHtSCG avn8L0U:(UIImage*) avn8L0U aF9fG:(UIBarButtonItem*) aF9fG {
  276. NSLog(@"qvRlu1bfLeyz");
  277. NSLog(@"AHUdPqbBwkVgJ2KO");
  278. NSLog(@"ZHiCP61mQy");
  279. NSLog(@"0dR96TbUFZyiIPA");
  280. NSLog(@"mSN4EIrZdcg7HMhij8");
  281. NSLog(@"f7TOZNiDYJ6la");
  282. NSLog(@"eKQVzFsRqah");
  283. NSLog(@"l1qN2APC3FEimurHn9MzGRKagcvpXb");
  284. NSLog(@"mDfqr9hv6Ll");
  285. NSLog(@"yTufjo5d2ZC");
  286. NSLog(@"FpKfZhYiUW7CoV");
  287. NSLog(@"Xn3eU0TNlsWtHwpafA6goDh");
  288. }
  289. -(void)aP2ioMA:(UIEvent*) aP2ioMA aqjGX9:(UIControlEvents*) aqjGX9 am9WpdO2:(UIButton*) am9WpdO2 aMv9zO:(UILabel*) aMv9zO aE5m4yZX8l:(UISearchBar*) aE5m4yZX8l apkGsaiC:(UIImage*) apkGsaiC achkxIiTu:(UIViewController*) achkxIiTu amNOfsAL4v5:(UISwitch*) amNOfsAL4v5 a7NOg:(UIControl*) a7NOg aE7t52eu:(UIEvent*) aE7t52eu atVa8E5i2D:(UIUserInterfaceIdiom*) atVa8E5i2D aQzqRE6b:(UIActivity*) aQzqRE6b aIhecTV:(UIEdgeInsets*) aIhecTV amIc1qT3:(UIBarButtonItem*) amIc1qT3 arpRc2Zg1f:(UIEdgeInsets*) arpRc2Zg1f aYkdRH:(UIFont*) aYkdRH auMJk8tnX:(UIEvent*) auMJk8tnX apyjs0hU2nL:(UIKeyCommand*) apyjs0hU2nL a81kiv:(UIAlertView*) a81kiv {
  290. NSLog(@"8XokbNeTi5MUPpcswDyO0C");
  291. NSLog(@"mBcHibdMKzJNj490LZDn");
  292. NSLog(@"bXZNyYTs65UF");
  293. NSLog(@"GAy38jDZ7mFiTO9Ja4PclsprH56xIShY");
  294. NSLog(@"vM6UA7t4ErToDOeiR53x20jCgShc1zLqV");
  295. NSLog(@"8BKkxlcfdEX1R0rwSD3y6VYGoMFILNWuiv");
  296. NSLog(@"0jBiyRTktM");
  297. NSLog(@"tCZDjQKqVTESU");
  298. NSLog(@"CFdSeQngzq0oO49lJ6piyIu37VE2mUNMRZDwa");
  299. NSLog(@"WnyHlvtj2d0qscV9SuPXJz6x");
  300. NSLog(@"u9aYIFnDkAKNv14ils5MwoBTbt2PHqyzhfcr");
  301. NSLog(@"Nsqnw1rDfia");
  302. NSLog(@"ZWbVq53AhSeHjX");
  303. NSLog(@"HQ0kdy2ZvsWXU");
  304. NSLog(@"TSlsRMEomugHjn9VaBAk2CINDb0v8GWPeY");
  305. NSLog(@"AONDUKRexG4vWMy91hHnkZiBzTJaX");
  306. NSLog(@"UBikaLW0XPqoAwJ4ZMgySFrHf1KsYI5CeRNcV38b");
  307. NSLog(@"1okinhm4yVsdXw0ME8aNb");
  308. }
  309. -(void)a3bhNEx0H:(UISwitch*) a3bhNEx0H aPvTEK1Z:(UILabel*) aPvTEK1Z a761zq:(UISearchBar*) a761zq aYs4e:(UIAlertView*) aYs4e a8gkaQwxr:(UIEdgeInsets*) a8gkaQwxr {
  310. NSLog(@"MfujD5ArNm1ebGIdZ");
  311. NSLog(@"Ddnw7Lyteh1ajZVR0sUFPHf");
  312. NSLog(@"Ba72sRSJlNk6");
  313. NSLog(@"mvzrhyGPgnNj0UfkA5FMSHWQcuoZD2xw4L8lCK");
  314. NSLog(@"QdkLjNM6DhuxEJHmY1oeSKV943bBXi");
  315. NSLog(@"0tgxYaeJ2di4uZqk7nvVXflImTPrNG6QW18F");
  316. NSLog(@"T4yP1J5tzQYrenjZgBwbqc7HU");
  317. NSLog(@"f10keb87yhsgDvKZ");
  318. NSLog(@"HOc0Q96AdRz38gpYLuWZKwaB2Vm7hnIMPox");
  319. NSLog(@"b4WeTdAUtVEa6sGx5BN2cizhmjQOXKP3uo9fS");
  320. NSLog(@"TPy7oaYXKtDc31EmgU");
  321. NSLog(@"YuLnb9vqS6skwaf");
  322. }
  323. -(void)a5nx02EkK:(UIDocument*) a5nx02EkK aS7LetDZ1:(UIEdgeInsets*) aS7LetDZ1 aPctIWGjOq:(UIInputView*) aPctIWGjOq a6fGLZ8acn:(UIScreen*) a6fGLZ8acn ayIuj8Re:(UIDocument*) ayIuj8Re aG4DoHcKVmF:(UIDocument*) aG4DoHcKVmF aVXtqTaSPrz:(UIBezierPath*) aVXtqTaSPrz aSnmZM:(UICollectionView*) aSnmZM agDaf7G:(UIEdgeInsets*) agDaf7G a8GKBDo1:(UIEdgeInsets*) a8GKBDo1 aCauJd:(UIFont*) aCauJd avBIh7oR:(UISearchBar*) avBIh7oR am1nIvK:(UIImage*) am1nIvK {
  324. NSLog(@"yScEKBprj5zAUmh8oq");
  325. NSLog(@"fic1akGq8bDPAgetxv");
  326. NSLog(@"JoQKhS7GjipgUA4u8d3wY0c6M");
  327. NSLog(@"5YSD7FsbGwaApKi");
  328. NSLog(@"9d8bsXWmr5jouQwRi");
  329. NSLog(@"vgGDqFlc6QisUTwhK1fmb4BWayZzeMpokI39tCxn");
  330. NSLog(@"cbsv5Ih1iLKWECtVDZny9xTH8AkU2");
  331. NSLog(@"x7qgUtNAuwSyfaGD0LYzBW3");
  332. NSLog(@"M7EZsI2bRKHY9Dt5QToWycSVOr4Xwzn");
  333. NSLog(@"KJMrz5SbZY3tvGf9pj6cdHhw12s7BEnQDP");
  334. }
  335. @end