123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- //
- // YZMACollectionTicketController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/24.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMACollectionTicketController.h"
- #import "YZMACollectionTicketCell.h"
- #import "YZMADateHeaderView.h"
- #import "YZMACollectionModel.h"
- #import "YZMAGoodDetailViewController.h"
- #import "YZMASimilarGoodsController.h"
- #import "YZMALoginViewController.h"
- @interface YZMACollectionTicketController ()<UITableViewDelegate,UITableViewDataSource>
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) NSMutableArray *nearbyArr; // 即将过期的数组
- @property (nonatomic, strong) NSMutableArray *allDataArr;
- @end
- @implementation YZMACollectionTicketController
- - (void)viewDidLoad {
- [super viewDidLoad];
- [self configTableView];
-
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
-
- [self configNoDataView];
- [self loadData];
- }
- - (void)configTableView {
- self.view.backgroundColor = [UIColor whiteColor];
- [self.view addSubview:self.tableView];
-
- }
- - (void)configNoDataView {
- self.tableView.showNoDataView = YES;
- if (![AccountTool isLogin]) {
- self.tableView.defaultNoDataText = @"未登录,点击登录";
- kWeak(self);
- self.tableView.defaultNoDataViewDidClickBlock = ^(UIView *view) {
- kStrong(self);
- YZMALoginViewController *login = [[YZMALoginViewController alloc] init];
- [self presentViewController:login animated:YES completion:nil];
-
- };
- }else {
- self.tableView.defaultNoDataText = @"暂无收藏数据,点击刷新";
- kWeak(self);
- self.tableView.defaultNoDataViewDidClickBlock = ^(UIView *view) {
- kStrong(self);
- [self loadData];
- };
- }
-
-
- }
- - (void)loadData {
-
- if (![AccountTool isLogin]) {
- return;
- }
- [YZMAHttp post:MyCollectCollectTicket params:nil success:^(id json) {
- [self.allDataArr removeAllObjects];
- NSArray *detailList = json[@"goods_detail"];
-
- for (NSArray *arr in detailList) {
- NSMutableArray *items = (NSMutableArray *)[NSArray yy_modelArrayWithClass:[YZMACollectionModel class] json:arr];
- [self.allDataArr addObject:items];
- }
-
- self.nearbyArr = (NSMutableArray *)[NSArray yy_modelArrayWithClass:[YZMACollectionModel class] json:json[@"nearly_outdate"]];
- if (self.nearbyArr.count != 0) {
- [self.allDataArr insertObject:self.nearbyArr atIndex:0];
- }
-
- [self.tableView reloadData];
- } failure:^(NSError *error) {
-
- }];
- }
- /**
- 移除收藏
- */
- - (void)deleteCollectionGoodAtIndexPath:(NSIndexPath *)indexPath {
-
- YZMACollectionModel *model = self.allDataArr[indexPath.section][indexPath.row];
- NSDictionary *para = @{@"goods_id":model.goods_id};
-
- [YZMAHttp post:DelCollectionTickets params:para success:^(id json) {
- // 删除模型
- NSMutableArray *mArr = self.allDataArr[indexPath.section];
- [mArr removeObjectAtIndex:indexPath.row];
- [self.allDataArr replaceObjectAtIndex:indexPath.section withObject:mArr];
-
-
- [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
- } failure:^(NSError *error) {
-
- }];
-
-
- }
- #pragma mark ------------------------
- - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
- {
- [self deleteCollectionGoodAtIndexPath:indexPath];
- }
- /**
- * 修改Delete按钮文字为“删除”
- */
- - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return @"删除";
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- NSArray *arr = self.allDataArr[section];
- return arr.count;
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return self.allDataArr.count;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- return 40;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- YZMACollectionTicketCell *cell = [YZMACollectionTicketCell cellWithTableView:tableView];
- cell.selectionStyle = UITableViewCellSelectionStyleNone;
- YZMACollectionModel *model = self.allDataArr[indexPath.section][indexPath.row];
- cell.model = model;
-
- cell.similarClick = ^{
- //找相似点击
- YZMASimilarGoodsController *similar = [[YZMASimilarGoodsController alloc] init];
- similar.goods_id = model.goods_id;
- [self.navigationController pushViewController:similar animated:YES];
- };
- return cell;
-
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- return 100;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
- YZMADateHeaderView *header = [[YZMADateHeaderView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 40)];
- YZMACollectionModel *model = [self.allDataArr[section] firstObject];
- [header setDateWith:model.collect_time];
- return header;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- YZMACollectionModel *model = self.allDataArr[indexPath.section][indexPath.row];
- // if ([model.is_outdate boolValue]) {
- // //找相似
- // YZMASimilarGoodsController *similar = [[YZMASimilarGoodsController alloc] init];
- // similar.goods_id = model.goods_id;
- // [self.navigationController pushViewController:similar animated:YES];
- // }else {
- // YZMAGoodDetailViewController *detail = [[YZMAGoodDetailViewController alloc] init];
- // detail.goods_id = model.goods_id;
- // [self.navigationController pushViewController:detail animated:YES];
- // }
- YZMAGoodDetailViewController *detail = [[YZMAGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithId:model.goods_id
- is_coupon:model.is_coupon
- coupon_price:model.coupon_price
- price:model.price
- discount_price:model.discount_price
- commission_rate:model.commission_rate
- coupon_start_time:model.coupon_start_time
- coupon_end_time:model.coupon_end_time];
- detail.requestModel = requestModel;
- [self.navigationController pushViewController:detail animated:YES];
- }
- #pragma mark ===================== layezer ==============
- - (UITableView *)tableView {
- if (!_tableView) {
- _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-TabbarHeight) style:UITableViewStylePlain];
- _tableView.estimatedSectionHeaderHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.sectionFooterHeight = 0;
- _tableView.sectionHeaderHeight = 0;
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- _tableView.backgroundColor = [UIColor yhGrayColor];
- _tableView.bounces = YES;
- _tableView.showsVerticalScrollIndicator = NO;
- // _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
-
-
- }
- return _tableView;
- }
- - (NSMutableArray *)allDataArr {
- if (!_allDataArr) {
- _allDataArr = [NSMutableArray array];
- }
- return _allDataArr;
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- -(void)aGRg862WaUF:(UIControlEvents*) aGRg862WaUF am8WZI3:(UIView*) am8WZI3 aFuzxQPne:(UIRegion*) aFuzxQPne ai9srhVgk5:(UIRegion*) ai9srhVgk5 afZeXQ:(UIRegion*) afZeXQ aHkV2FEJdmB:(UIKeyCommand*) aHkV2FEJdmB aQobG:(UIRegion*) aQobG {
- NSLog(@"7bosWJXewF5aq4Su9V0mO");
- NSLog(@"lJTtgAsNrXIfZxp7wivk4u3mK0EM5WGjLV");
- NSLog(@"BsGvR4Tf9Lca0W");
- NSLog(@"zpKkCiRUoB9ftI5cHG3OesPqVl4Srug");
- NSLog(@"4c0AUiHSzbRxT1ov9gjGpNWy");
- NSLog(@"QTzud4Rgk8X3MHGK1CxOb9U0oFPv5ApLNrne");
- NSLog(@"Xb295kCtrPzRsOY");
- NSLog(@"ijVSKNJodcFp2k9r5YGewBqtzyUZRuvbaxIsLT");
- NSLog(@"RqFCOu34U9");
- NSLog(@"w18dJu06qNvrQEUgRcmZBYDSAo4GCeKl7aXbn");
- NSLog(@"Ehsi2IApqxkdWgSUXTP");
- NSLog(@"7EUaljg5nxv2hB3I0ZQRAM");
- NSLog(@"01UJjXDuMGpP37ZWCbQvhStEyLReld");
- NSLog(@"v0eH1FpGqhr3AxXz7nLfaUmKMNi5C8os");
- NSLog(@"2Nw6F9cH1nDqXI");
- NSLog(@"ufkHoW7PJ8Y");
- NSLog(@"YGxbWaK2EwzFHefUcDiSJ43ZgRj5M6CTOdpyu");
- NSLog(@"4C3rfgL8YJNF");
- NSLog(@"tRo7AiF3DcV6wvugM");
- }
- -(void)a2GCv:(UIButton*) a2GCv aTMgJhfoOz7:(UILabel*) aTMgJhfoOz7 aMkgf5bcj1T:(UIBarButtonItem*) aMkgf5bcj1T a8n2ogvUrd:(UIBarButtonItem*) a8n2ogvUrd aho2XMsn5:(UICollectionView*) aho2XMsn5 aPaWecV:(UISearchBar*) aPaWecV amDUJsA:(UIFontWeight*) amDUJsA aL1YXyWzp:(UIBezierPath*) aL1YXyWzp aUa4ljL5hF:(UIVisualEffectView*) aUa4ljL5hF aaEu0onb:(UIColor*) aaEu0onb af8HxVzer:(UIActivity*) af8HxVzer {
- NSLog(@"RwU9hcW75oXt3LvsZ2kTDbi1SeMqEA46nrKQj");
- NSLog(@"zMo8BqTl7hf4kQgXGyILwVSxK5OU");
- NSLog(@"hB95nyzd7wDgPpubOYTt8RQemZIVKEq");
- NSLog(@"o0RH2N4Krwsl6Vuj3dcy7");
- NSLog(@"I2xkaEuTcqVB1WZKYUdNAOvb5746lpfoGjLF9rD");
- NSLog(@"kw62U4R38NODM");
- NSLog(@"HXyOkq4mfFpKb");
- NSLog(@"4duDrIaU2PXR");
- NSLog(@"pve9nu2EmWIUtiHlxOcoVy10ZPhBDF5Q");
- NSLog(@"BqAbzRdvc1kU3");
- NSLog(@"l1gdEPQZXHz7Sbma");
- NSLog(@"ebHs692iFUW8");
- NSLog(@"tQ8TEvyuRwCzxsgehP5V4dpSlYJMkjq0a6");
- NSLog(@"7QfU9SY1c8A6vGw5MoxbhZB");
- NSLog(@"Ef5uvM8AjHyeq");
- }
- -(void)aIShsXflmk7:(UIEdgeInsets*) aIShsXflmk7 aFkdq:(UIImage*) aFkdq a2mCvShR:(UIView*) a2mCvShR aanOz:(UIApplication*) aanOz a3iT5F:(UIDocument*) a3iT5F afhnse7:(UIColor*) afhnse7 a2l8gak:(UIApplication*) a2l8gak al250sDeW49:(UIApplication*) al250sDeW49 ag68A1kvt:(UILabel*) ag68A1kvt aHquAogb561:(UIEvent*) aHquAogb561 axIyEeuXB5G:(UIDevice*) axIyEeuXB5G aIxwdFY2ekn:(UIColor*) aIxwdFY2ekn awxHCX6v:(UIKeyCommand*) awxHCX6v ahjM9Sgf6C:(UIActivity*) ahjM9Sgf6C amAsD4u6fz:(UIWindow*) amAsD4u6fz a24xHjPJh:(UIFont*) a24xHjPJh agNahX:(UIFont*) agNahX aAVWvuU:(UIFontWeight*) aAVWvuU aZcBIa:(UISearchBar*) aZcBIa acreBV:(UIMenuItem*) acreBV {
- NSLog(@"7DHdZLwk32");
- NSLog(@"wBgWPLICm0yGzj1NKVStuivbDdnJeTY4o29E");
- NSLog(@"3I56oxaEuGARiWrOv891mMLkyfUdVg4X");
- NSLog(@"WoCmxqVO72FPKSJhpy3EaLd4DMXeij5bG");
- NSLog(@"h8O1LP6iwBGe");
- NSLog(@"PfD6xlIjXOvzS7eyiQZpm9M0uUKR");
- NSLog(@"Wm4j1aFPX69fDUocNbQyxEGRzBTAYeVqws08gHI");
- NSLog(@"Uxe39Ayij8H1QrYBmL2bGho");
- NSLog(@"K71RMWoCVPhaIykgsX0BAlqOieU48DFfvp2wYr");
- NSLog(@"lGYcyCWX0n2oLZV1iKtQ8x7FIsfqT");
- NSLog(@"Sabfq9A5tr3mPDK8YwnCZlFEvGu4NzkxT7");
- NSLog(@"cJOdEGhWLnAuvKrY3I");
- NSLog(@"eYaM0ULEzOFDdlxw3K6W");
- NSLog(@"lqOk8Cax7spoRmbdM4EjWUcS");
- NSLog(@"rP6KtdcIQWyJM3fCHiR8Yl1SzqG");
- }
- -(void)a5ZV1OF3:(UIEdgeInsets*) a5ZV1OF3 ajJFvE10Kf:(UISwitch*) ajJFvE10Kf aZ0lxmXL9h:(UIScreen*) aZ0lxmXL9h aXWUVN9DbF6:(UIBezierPath*) aXWUVN9DbF6 aVYxNmgP9L:(UIDocument*) aVYxNmgP9L aonvy8:(UIWindow*) aonvy8 a4LM23a5:(UILabel*) a4LM23a5 aLj5cU28VC:(UIUserInterfaceIdiom*) aLj5cU28VC aqfSi:(UIBarButtonItem*) aqfSi aQfWr:(UIImageView*) aQfWr a3MUtVya:(UIControlEvents*) a3MUtVya afiU7kvu5y:(UIDevice*) afiU7kvu5y aNocmThkAt4:(UILabel*) aNocmThkAt4 {
- NSLog(@"MER5tye4I97fmThBLlNagsAn2SZY10O");
- NSLog(@"xbdlpIB6hTqcn");
- NSLog(@"4Hc0l98xo7FskyX");
- NSLog(@"RLVicJqDgno7XbCOutSF6");
- NSLog(@"VNDnEqco53Jtswfh0edBQ4");
- NSLog(@"VlK2bJTACPwBo");
- NSLog(@"ighcPUeZ0nzS9QwsWLodqk5t6A3");
- NSLog(@"wfZV4dM6iamjqUyORCFgx0E28GW");
- NSLog(@"lhr9ifwYVSKbzaQXFgk3PC6qR2pDo");
- NSLog(@"7muKH9S3bQrGNfcadVtRYjJUkPnM1IWwyg");
- NSLog(@"ZIlAXebcjBTDOEYJ8Wpqg");
- NSLog(@"KnlJOjbCVQchGX0Loda8Y9MetUv2RkiEruTHwxI6");
- NSLog(@"Igw612TKHnsaE3XmfyU9Ziv4YkrNhzV");
- NSLog(@"LwO39so4ejHFdZlDSJvitVrE");
- NSLog(@"VH7iBURdxKkPgLG2J34");
- NSLog(@"bLDxzUqYNQVjWBZX7rFJoKe3t51uaH9yCSMG4pTR");
- }
- -(void)aUAZO3p1Dt:(UIVisualEffectView*) aUAZO3p1Dt anxrezDLg:(UIViewController*) anxrezDLg aUa46ne:(UIFont*) aUa46ne a95YX:(UIEvent*) a95YX axwtv:(UIFont*) axwtv aGU781rHV9:(UIDevice*) aGU781rHV9 aDY9U8tf2:(UITableView*) aDY9U8tf2 aDQmh4xP:(UIUserInterfaceIdiom*) aDQmh4xP aKNBtq4G9Z:(UIControlEvents*) aKNBtq4G9Z aFzal:(UIScreen*) aFzal a9xLno:(UIVisualEffectView*) a9xLno auYs2PlU:(UIButton*) auYs2PlU aRGL2qov:(UIKeyCommand*) aRGL2qov aZW9iXM0p:(UICollectionView*) aZW9iXM0p aSBZMA:(UIEdgeInsets*) aSBZMA aPxaRFt6dk7:(UIUserInterfaceIdiom*) aPxaRFt6dk7 {
- NSLog(@"Nvlw1uHj543gY6S0IQpzRVe97POtTabf8kiAC");
- NSLog(@"2IGd3prsDUJlX");
- NSLog(@"XcLmb1Na0BuWjYSq7Hgf5QlM");
- NSLog(@"n2FdT1h4YuGWpqzbUa9XEkM8KPx");
- NSLog(@"SDqpHfu2ioEs5FQ6xvWweCkZLbOzadXlRj");
- NSLog(@"TkjBzJWAOhURIHPXN27nL6MpKarY5vybeCEi");
- NSLog(@"p4uUr2kqZ5nDvdcmTzNfB");
- NSLog(@"yNwm7nFqoLA1h0r6Q3Dj2fz4MS5Ks8");
- NSLog(@"mnex4dOkjURBPXNqr19IvoLWp0");
- NSLog(@"dJgVFyMjx8mKnD042OSZka5q");
- NSLog(@"J2peWiAvOz87F4ldN");
- NSLog(@"HqN7zai1Lh2d40");
- NSLog(@"axVuqY5pZADJngQ14fCoThyW9EvXU8Gi0mwtHI");
- NSLog(@"xR3DgkPFc7EQehrK1jMH82bOZU9I6XyvTw0l");
- NSLog(@"YynKlDcra8fgb");
- NSLog(@"uELgV7XYbFsn3NyWGhvfKJoe8QPj6a");
- }
- -(void)avDAqh89x:(UIFont*) avDAqh89x aQLJGBbp:(UICollectionView*) aQLJGBbp aW1Csa379YH:(UIBezierPath*) aW1Csa379YH asqvz3V691:(UIFontWeight*) asqvz3V691 aDpqUezrPLh:(UIVisualEffectView*) aDpqUezrPLh awiuKsh:(UIMenuItem*) awiuKsh azh9YnZTd:(UIFontWeight*) azh9YnZTd akmxsLc:(UIImageView*) akmxsLc aXhyLwDC:(UIViewController*) aXhyLwDC aZgkQv:(UIButton*) aZgkQv aFzxlQ21T:(UIViewController*) aFzxlQ21T abPinTF:(UIDevice*) abPinTF {
- NSLog(@"YvCSerGTX9ljNcnDdqFiUfQ1mbhzy");
- NSLog(@"mGVRpjtX90");
- NSLog(@"kYrta0fzhDHi4mlw9OxKG6dURvonQ");
- NSLog(@"tExrYH70hFjMd68va");
- NSLog(@"nb9vYiH5J0U4wuhN1kCOS8t");
- NSLog(@"TUg3dkKjxSE");
- NSLog(@"B0IjmvSzKhR7Z98xEe2LW");
- NSLog(@"DjrSPkTYQmEcC9aeJ6VZ7XvHnMqLoIy");
- NSLog(@"iycEeCjTg9R0JUlwuOGh6FnDkLKvB");
- NSLog(@"pl94UcdL2zmMH0CqNxsGaQTKigJ31wy");
- NSLog(@"U3JTStj1hzKRA2DBvydkbm");
- NSLog(@"IWx4KT5ZSoNs");
- NSLog(@"S7HK8eWaosJ4MqzPURT");
- NSLog(@"YDX4xEZeAf");
- NSLog(@"3BNhU5dmOxi4FocjqsWIgaA1k");
- NSLog(@"1NveSyLlXkZzApr6CB");
- NSLog(@"Z8saTgeCOlP1zBd9Ho2jbGQhLpVcY0ND");
- }
- -(void)aEHrV:(UIBarButtonItem*) aEHrV a0E6K:(UIApplication*) a0E6K aRFMlgTchD:(UIControlEvents*) aRFMlgTchD aLesaZYPHOW:(UIImage*) aLesaZYPHOW ad6VC:(UIRegion*) ad6VC aBs1tYo:(UIDevice*) aBs1tYo aWOQKxFMnr7:(UIControl*) aWOQKxFMnr7 aq5SaneW:(UISearchBar*) aq5SaneW aWIg7:(UIColor*) aWIg7 adjiPnKGDUq:(UILabel*) adjiPnKGDUq aK2EyBMFjoC:(UICollectionView*) aK2EyBMFjoC a4ycRuQ:(UIView*) a4ycRuQ aoQClr1KS:(UIView*) aoQClr1KS aLgHYr:(UITableView*) aLgHYr aK4WvE0qdf6:(UICollectionView*) aK4WvE0qdf6 aPue8cB23:(UIMenuItem*) aPue8cB23 aQE5MCOY:(UIRegion*) aQE5MCOY anD3kKOtYc:(UIDocument*) anD3kKOtYc aLE4kqhnAc:(UIBezierPath*) aLE4kqhnAc {
- NSLog(@"rg7ve4BdqojXC0kh8sGx");
- NSLog(@"J94KPU0CgIz1VXGrEdLlqx2iehcMO");
- NSLog(@"creNBsihtzoGqdISKWpEVFZmg7a02x1UCkT6Pl");
- NSLog(@"lgvxOhf83cNdeoIRZJSWtw0TsU9qXnmYzky");
- NSLog(@"fIPDKUxL96SQb0NCVuA3O1lR");
- NSLog(@"IZSPi0xRuTzBkGfs47eptlwQ8qm125ohMUFDV");
- NSLog(@"xRGzeH6u7bgPWQEjvKaFYDSILMq4iCUZy");
- NSLog(@"WjuBdGMT3XI8F5veaAPKlJyUq26NDz1EmbO9R");
- NSLog(@"CHiX3tl5WOL7IB9D4zQyP");
- NSLog(@"I5fX0SoHMaZkjbYOv1DpgeLdrBtN76xRKW");
- NSLog(@"xHVMn5QDgBZ62SImodr");
- NSLog(@"zy7lgmDCL3");
- }
- -(void)aLEbkyzKDdJ:(UIBarButtonItem*) aLEbkyzKDdJ aHkrivL:(UIView*) aHkrivL aFuh4R0f1:(UIViewController*) aFuh4R0f1 anbBHMD9qd:(UIScreen*) anbBHMD9qd apdWfjhu2y:(UIColor*) apdWfjhu2y aoN9tWM:(UISearchBar*) aoN9tWM auTIo:(UIFont*) auTIo ahYLv3MUx:(UIMotionEffect*) ahYLv3MUx a0lXIv7a:(UIUserInterfaceIdiom*) a0lXIv7a aSftX4:(UIFont*) aSftX4 ayhouqpDHC:(UIWindow*) ayhouqpDHC acEtCjPr0X:(UIMenuItem*) acEtCjPr0X aRXrGc:(UIUserInterfaceIdiom*) aRXrGc af9enohtkCw:(UIEdgeInsets*) af9enohtkCw aLMOlSwXQg2:(UIInputView*) aLMOlSwXQg2 aHgCuRV1De:(UIView*) aHgCuRV1De aubpRj379v:(UIDevice*) aubpRj379v avu7gb:(UIDevice*) avu7gb a6kzKSjvf:(UIBezierPath*) a6kzKSjvf {
- NSLog(@"PengoxhqEtcafbQX");
- NSLog(@"oDpAXsMhTEbrgGFzYLNZSJ8PHde");
- NSLog(@"xq0eFcombrz4V8HWlN2Pw");
- NSLog(@"Dc5BCadlQof2FOUNE4IiY9hm6XxWzeAsZwvLH37J");
- NSLog(@"OnioQ8AIc9kvZdLF");
- NSLog(@"yJiTd4keIv9nEYOw5FZ03A72bSVKzPQamGxjf1");
- NSLog(@"ul5gmt4yfPsIibXA2oBaSVYWQxe0Tk3n8ZGLpM9N");
- NSLog(@"JWxZ5cr8siat");
- NSLog(@"YkRAKWj30yLsZVo7pCtlPi2d");
- NSLog(@"XwJ3yRMNnUfOHbKupDQg");
- NSLog(@"L28q39Vxjvzkc");
- }
- -(void)aOIWa0xt:(UIEvent*) aOIWa0xt aMsEVgxNpD4:(UIFontWeight*) aMsEVgxNpD4 ats8E:(UIRegion*) ats8E aaYkL:(UIView*) aaYkL aEVutZk:(UIRegion*) aEVutZk adwV3:(UIUserInterfaceIdiom*) adwV3 aP5Tkys:(UIScreen*) aP5Tkys aX8RI1MGP3:(UITableView*) aX8RI1MGP3 awon1:(UIInputView*) awon1 arQ7G:(UISwitch*) arQ7G aDUJL8rh:(UIUserInterfaceIdiom*) aDUJL8rh axyz7EQ:(UIButton*) axyz7EQ ata9yWMp:(UIWindow*) ata9yWMp a1ygul:(UIImage*) a1ygul {
- NSLog(@"VMfpT3gQ8icn4UAJt");
- NSLog(@"6WeQA8OsHo59xpB7cJ0E1fb3qvCtK2");
- NSLog(@"1g9Z7dvjzxMQh3EuyOnoYF");
- NSLog(@"WiemN0jlA4zMdKYJr52HScxbLk3QIVDwRuaqfBXZ");
- NSLog(@"9SriwvGhd15oX0MkEJ6T");
- NSLog(@"ZNmukUYvEcj4gp5Dxw70");
- NSLog(@"qoFj7QehYPJDLBkU");
- NSLog(@"2o1p47SxEWDBMAtTHJGnrYI");
- NSLog(@"N8zAwMhOvuPZo0XU5telG2CqR9cBJ");
- NSLog(@"4BcnGlpmbUCr9z10tR3D8PEwTKiaq6IOZ");
- NSLog(@"KJmCbi87oPGnakLMwSpvrfzch2D");
- NSLog(@"I8UgxFN69uBpHsJRvwdPDQVrAj3EeLcYiM1ymCzG");
- NSLog(@"9PLFYgecOhAJi86jTsyCkobmzql3Hpuf");
- NSLog(@"G1KHRPADFS8O5IMovVJyfkzbCEqTU6mwl");
- NSLog(@"eMRZm4QfuUkwyHD9vFoVItb6c2aTn8q");
- NSLog(@"29BwEKs0RJCmDG5h7kiLo");
- }
- -(void)aznrB2g:(UIColor*) aznrB2g agTFB:(UIUserInterfaceIdiom*) agTFB adroYB6V:(UIWindow*) adroYB6V aqv1OFX:(UIScreen*) aqv1OFX arbphWL:(UIBarButtonItem*) arbphWL aCgRX6Wdh:(UIEdgeInsets*) aCgRX6Wdh aMfNFp1ir3:(UIInputView*) aMfNFp1ir3 aYjE9T:(UIControl*) aYjE9T aaT0i:(UIUserInterfaceIdiom*) aaT0i a86uHQG:(UIRegion*) a86uHQG arzyVJ:(UIFontWeight*) arzyVJ adFkfD0JOlN:(UIFontWeight*) adFkfD0JOlN aQRYsxOAl:(UIKeyCommand*) aQRYsxOAl aNLz6bmHCQ:(UIApplication*) aNLz6bmHCQ aeZsR3jbLv:(UICollectionView*) aeZsR3jbLv aBdAM1RaCJw:(UIImage*) aBdAM1RaCJw ax316ILz:(UIMotionEffect*) ax316ILz a7bqLXGvgA:(UIControl*) a7bqLXGvgA aHK1MBN:(UIFontWeight*) aHK1MBN aYviuM0R:(UIView*) aYviuM0R {
- NSLog(@"OQJFkEsx5ZuHgj6vPdn0aGKmtWN9TqRXcp");
- NSLog(@"wHe6RLUKDc90daWhYrFmIkz84yXtABC5TOsvboj");
- NSLog(@"HozD7pGkAMj8xq");
- NSLog(@"FeJREg6PfkD2");
- NSLog(@"S7Gp8fEPzvyi");
- NSLog(@"NVrynkaejYWQz0DRhwd4qZX6psUB");
- NSLog(@"3QFNeUq8BWAJtuifS");
- NSLog(@"Dq5blxMNE4K2UYXSyHW3LTCfsud");
- NSLog(@"TAGg5rDVy9jC8pX04SfMiZzdxmsYH7eBqU21cnwW");
- NSLog(@"cWJn84kGYUZhz3Cv");
- NSLog(@"szot7GXlYNIb2SWyTpMegDVuHxAUcJPwjB5");
- NSLog(@"YaRQBOzyfxhVl9nM");
- NSLog(@"areFntsIMdYkOCJ4V7vBZUu5mfXEL3xc12");
- NSLog(@"BuED71tcjKOv80zTbUrmlVLf5R94oxaSMk");
- NSLog(@"dAvCrFETyRecUqVhN3");
- NSLog(@"RdxDQTjMgWAIuSrY04FJP9Lw");
- NSLog(@"vZ4YkIJfq7");
- }
- @end
|