123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- //
- // LZMNineNineMainViewController.m
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMNineNineMainViewController.h"
- #import "LZMTableView.h"
- #import "LZMNineNineHeaderView.h"
- #import "LZMNineNineScrollViewController.h"
- #import "LZMNineNineTableViewCell.h"
- #import "LZMNineNineRequestViewModel.h"
- #import "LZMNineTableView.h"
- #import "LZMGoodListViewController.h"
- #import "LZMGoodDetailViewController.h"
- #import "PYSearch.h"
- #import "LZMFindSearchResultViewController.h"
- #import "LZMFindRequestViewModel.h"
- #import "LZMGoodListCidViewController.h"
- #import "LZMNineNineScrollChildViewController.h"
- static NSString *const cellID = @"LZMNineNineTableViewCell";
- @interface LZMNineNineMainViewController () <UITableViewDelegate,UITableViewDataSource,YHNineNineScrollViewControllerDelegate,YHNineNineHeaderViewDelegate,YHNineNineTableViewCellDelegate,PYSearchViewControllerDelegate>
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) LZMNineNineHeaderView *headerView;
- @property (nonatomic, strong) LZMNineNineScrollViewController *scrollViewController;
- @property (nonatomic, strong) LZMNineNineModel *nineNineModel;
- @property (nonatomic, assign) BOOL canScroll;
- @property (nonatomic, strong) YYFPSLabel *fpsLabel;
- @property (nonatomic, strong) NSMutableArray *everyoneSearchArr;
- @end
- @implementation LZMNineNineMainViewController
- - (void)viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
- [SVProgressHUD dismiss];
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- [self initHUD];
- [self initNavBar];
- [self request];
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changedSexRequest) name:ChangeSex object:nil];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- }
- - (void)initNavBar {
- self.canScroll = YES;
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeScrollStatus) name:@"leaveTop" object:nil];
-
- [self.navigationBar setNavightionBarBackgroundColor:[UIColor clearColor]];
- // NSInteger sex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue];
- // if (sex == 0) {
- // [self.navigationBar setNavightionBarBackgroundColor:[UIColor YHColorWithHex:0xff8daa]];
- // } else {
- // [self.navigationBar setNavightionBarBackgroundColor:[UIColor YHColorWithHex:0x98befd]];
- // }
- UIButton *search = [UIButton buttonWithType:UIButtonTypeCustom];
- search.frame = CGRectMake(0, 0, FITSIZE(22), FITSIZE(22));
- search.backgroundColor = [UIColor clearColor];
- [search setBackgroundImage:[UIImage imageNamed:@"search"] forState:UIControlStateNormal];
- [search addTarget:self action:@selector(searchButtonAction) forControlEvents:UIControlEventTouchUpInside];
- [self.navigationBar setCustomRightButtons:@[search]];
-
- UIImageView *titleImageView = [[UIImageView alloc] initWithFrame:CGRectMake(self.navigationBar.width/2-FITSIZE(116)/2, KStatusBarHeight+22-FITSIZE(25)/2, FITSIZE(116), FITSIZE(25))];
- titleImageView.backgroundColor = [UIColor clearColor];
- titleImageView.image = [UIImage imageNamed:@"99navBar"];
- [self.navigationBar addSubview:titleImageView];
-
- UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
- [leftBtn setImage:[UIImage imageNamed:@"back"] forState:UIControlStateNormal];
- [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
- [self.navigationBar setCustomLeftButtons:@[leftBtn]];
- leftBtn.hidden = !self.showBackButton;
- }
- - (void)backAction {
- [self.navigationController popViewControllerAnimated:YES];
- }
- - (void)searchButtonAction {
- [self createSearchViewControllerWith:nil];
- }
- #pragma mark notify
- - (void)changeScrollStatus//改变主视图的状态
- {
- self.canScroll = YES;
- self.scrollViewController.childCanScroll = NO;
- }
- - (void)initSubviews {
- [SVProgressHUD dismiss];
-
- [self.view addSubview:self.tableView];
- self.tableView.tableHeaderView = self.headerView;
- [self.tableView reloadData];
-
- [self.view bringSubviewToFront:self.navigationBar];
-
- _fpsLabel = [YYFPSLabel new];
- [_fpsLabel sizeToFit];
- _fpsLabel.bottom = kScreenHeight - TabbarHeight;
- _fpsLabel.left = 0;
- _fpsLabel.alpha = 0;
- // [self.view addSubview:_fpsLabel];
-
- }
- #pragma mark - HUD
- - (void)initHUD {
- [SVProgressHUD setDefaultStyle:SVProgressHUDStyleCustom];
- [SVProgressHUD setForegroundColor:[UIColor YHColorWithHex:0xff2420]];
- [SVProgressHUD setBackgroundColor:[UIColor YHColorWithHex:0xf5f4f4]];
- }
- #pragma mark - request
- - (void)request {
- [SVProgressHUD show];
-
- [self requestGoodList];
- [self requestEveryoneSearch];
- }
- - (void)changedSexRequest {
- NSInteger sex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue];
- if (sex == 0) {
- self.headerView.backgroundColor = [UIColor YHColorWithHex:0xff8daa];
- [self.navigationBar setNavightionBarBackgroundColor:[UIColor YHColorWithHex:0xff8daa]];
- } else {
- self.headerView.backgroundColor = [UIColor YHColorWithHex:0x98befd];
- [self.navigationBar setNavightionBarBackgroundColor:[UIColor YHColorWithHex:0x98befd]];
- }
-
- [self.everyoneSearchArr removeAllObjects];
-
- [self.scrollViewController removeFromParentViewController];
- self.scrollViewController = nil;
-
- [self request];
- }
- - (void)requestGoodList {
- [LZMNineNineRequestViewModel requestNineNineGoodListParamGid:1 success:^(LZMNineNineModel *model) {
- if (model) {
- self.nineNineModel = model;
- self.headerView.headerModel = model.hot;
- [self initSubviews];
- }
- [self.tableView.mj_header endRefreshing];
- } failure:^(NSError *error) {
- [SVProgressHUD dismiss];
- [self.tableView.mj_header endRefreshing];
- }];
- }
- - (void)requestEveryoneSearch {
- [LZMFindRequestViewModel requestEveryoneSearchSuccess:^(NSArray *array) {
- if (array.count > 0) {
- for (NSDictionary *dict in array) {
- [self.everyoneSearchArr addObject:dict];
- }
- }
- } failure:^(NSError *error) {
-
- }];
- }
- #pragma mark - nineNineHeaderViewDelegate
- - (void)yh_NineNineHeaderViewDidSelectItem:(YHNineNineHeaderCollectionModel *)model {
- if (model.cid.length) {
- LZMGoodListCidViewController *listVC = [[LZMGoodListCidViewController alloc] init];
- listVC.goods_id = model.Id.stringValue;
- listVC.cid = model.cid;
- listVC.topRequest = 2;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- else {
- LZMGoodListViewController *listVC = [[LZMGoodListViewController alloc] init];
- listVC.cate_id = model.Id.stringValue;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- [MobClick event:nine_top_pic];
- }
- #pragma mark - nineNineTableViewCellDelegate
- - (void)yh_NineNineTableViewCellDidSelectItem:(YHNineNineMiddleModel *)model {
- if (model.title.cid.length) {
- LZMGoodListCidViewController *listVC = [[LZMGoodListCidViewController alloc] init];
- listVC.goods_id = model.title.Id.stringValue;
- listVC.cid = model.title.cid;
- listVC.topRequest = 2;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- else {
- LZMGoodListViewController *listVC = [[LZMGoodListViewController alloc] init];
- listVC.cate_id = model.title.Id.stringValue;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- [MobClick event:nine_better];
- }
- #pragma mark - nineNineScrollViewControllerDelegate
- - (void)yh_NineNineScrollViewControllerDidSelectItem:(LZMChildGoodModel *)model {
- if ([model.type isEqualToString:@"0"]) {
- //详情
- LZMGoodDetailViewController *detailVC = [[LZMGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithChildModel:model];
- detailVC.requestModel = requestModel;
- [self.navigationController pushViewController:detailVC animated:YES];
- }
- else {
- if (model.cid.length) {
- LZMGoodListCidViewController *listVC = [[LZMGoodListCidViewController alloc] init];
- listVC.goods_id = model.goods_id;
- listVC.cid = model.cid;
- listVC.topRequest = 1;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- else {
- //专场
- LZMGoodListViewController *listVC = [[LZMGoodListViewController alloc] init];
- listVC.cate_id = model.goods_id;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- }
- }
- #pragma mark - search
- - (void)createSearchViewControllerWith:(NSString *)text {
- PYSearchViewController *searchViewController = [PYSearchViewController searchViewControllerWithHotSearches:@[] searchBarPlaceholder:@"输入商品名或粘贴淘宝标题"];
- searchViewController.swapHotSeachWithSearchHistory = YES;
- searchViewController.searchHistoryStyle = PYSearchHistoryStyleARCBorderTag;
- searchViewController.hotSearchStyle = PYHotSearchStyleARCBorderTag;
- searchViewController.searchTextField.font = [UIFont systemFontOfSize:13];
- searchViewController.delegate = self;
- searchViewController.searchBar.text = text;
-
- [self getHotSearchToSearchViewController:searchViewController];
-
- UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:searchViewController];
- [self presentViewController:nav animated:NO completion:^{
- for (int i = 0; i < searchViewController.hotSearchTags.count; i++) {
- UILabel *tag = searchViewController.hotSearchTags[i];
- NSDictionary *dic = self.everyoneSearchArr[i];
- if ([dic[@"color"] boolValue]) {
- tag.layer.borderColor = [UIColor homeRedColor].CGColor;
- tag.textColor = [UIColor homeRedColor];
- }
- }
- }];
-
- searchViewController.didSearchBlock = ^(PYSearchViewController *searchViewController, UISearchBar *searchBar, NSString *searchText) {
- [MobClick event:search_count label:Search_Normal];
- //处理搜索点击事件
- LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController alloc] init];
- resultVC.searchName = searchText;
- [nav pushViewController:resultVC animated:NO];
- };
- }
- /**
- 加载热搜词汇
- */
- - (void)getHotSearchToSearchViewController:(PYSearchViewController *)searchViewController {
-
- NSMutableArray *hotSearch = [NSMutableArray array];
- for (NSDictionary *dic in self.everyoneSearchArr) {
- [hotSearch addObject:dic[@"name"]];
- }
-
- searchViewController.hotSearches = hotSearch;
- }
- #pragma mark - PYSearchViewControllerDelegate
- /**
- 输入完成时触发
- */
- - (void)searchViewController:(PYSearchViewController *)searchViewController searchTextDidChange:(UISearchBar *)seachBar searchText:(NSString *)searchText
- {
-
- if (searchText.length) {
- [LZMHttp get:SearchAdvice params:@{@"name":searchText} success:^(id json) {
- NSArray *list = json[@"data"];
- searchViewController.searchSuggestions = list;
- } failure:^(NSError *error) {
-
- }];
-
- }
- }
- /**
- 点击建议
- */
- - (void)searchViewController:(PYSearchViewController *)searchViewController
- didSelectSearchSuggestionAtIndex:(NSInteger)index
- searchText:(NSString *)searchText {
- LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController alloc] init];
- resultVC.searchName = searchText;
- [searchViewController.navigationController pushViewController:resultVC animated:NO];
- }
- /**
- 点击热搜
- */
- - (void)searchViewController:(PYSearchViewController *)searchViewController
- didSelectHotSearchAtIndex:(NSInteger)index
- searchText:(NSString *)searchText {
- LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController alloc] init];
- resultVC.searchName = searchText;
- [searchViewController.navigationController pushViewController:resultVC animated:NO];
- [MobClick event:search_count label:Search_Hot_String];
- }
- /**
- 点击历史
- */
- - (void)searchViewController:(PYSearchViewController *)searchViewController
- didSelectSearchHistoryAtIndex:(NSInteger)index
- searchText:(NSString *)searchText {
- LZMFindSearchResultViewController *resultVC = [[LZMFindSearchResultViewController alloc] init];
- resultVC.searchName = searchText;
- [searchViewController.navigationController pushViewController:resultVC animated:NO];
- [MobClick event:search_count label:Search_History_String];
- }
- #pragma mark - tableView
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return 2;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- if (section == 0) {
- return self.nineNineModel.recommend.count;
- }
- else {
- return 0;
- }
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- LZMNineNineTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID forIndexPath:indexPath];
- cell.delegate = self;
- YHNineNineMiddleModel *model = self.nineNineModel.recommend[indexPath.row];
- cell.model = model;
- return cell;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
- if (section == 0) {
- return [[UIView alloc] init];
- }
- else {
- return self.scrollViewController.view;
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- if (section == 0) {
- return 0.1;
- }
- else {
- return kScreenHeight-NavBarHeight;
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- if (indexPath.section == 0) {
- return FITSIZE(240);
- }
- else {
- return 0.1;
- }
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- YHNineNineMiddleModel *model = self.nineNineModel.recommend[indexPath.row];
- if (model.title.cid.length) {
- LZMGoodListCidViewController *listVC = [[LZMGoodListCidViewController alloc] init];
- listVC.goods_id = model.title.Id.stringValue;
- listVC.cid = model.title.cid;
- listVC.topRequest = 2;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- else {
- LZMGoodListViewController *listVC = [[LZMGoodListViewController alloc] init];
- listVC.cate_id = model.title.Id.stringValue;
- [self.navigationController pushViewController:listVC animated:YES];
- }
- }
- #pragma mark - scrollView
- - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
- if (scrollView.contentOffset.y >= 0) {
- NSInteger sex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue];
- if (sex == 0) {
- [self.navigationBar setNavightionBarBackgroundColor:[UIColor YHColorWithHex:0xff8daa]];
- } else {
- [self.navigationBar setNavightionBarBackgroundColor:[UIColor YHColorWithHex:0x98befd]];
- }
- self.tableView.backgroundView.backgroundColor = [UIColor clearColor];
- self.tableView.backgroundColor = [UIColor clearColor];
- }
- else {
- [self.navigationBar setNavightionBarBackgroundColor:[UIColor clearColor]];
- NSInteger sex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue];
- if (sex == 0) {
- self.tableView.backgroundView.backgroundColor = [UIColor YHColorWithHex:0xff8daa];
- self.tableView.backgroundColor = [UIColor YHColorWithHex:0xff8daa];
- } else {
- self.tableView.backgroundView.backgroundColor = [UIColor YHColorWithHex:0x98befd];
- self.tableView.backgroundColor = [UIColor YHColorWithHex:0x98befd];
- }
-
- }
-
- CGFloat offY = scrollView.contentOffset.y;
- CGFloat height = [self.tableView rectForSection:1].origin.y - NavBarHeight;
- if (offY >= height) {
- [self.tableView setContentOffset:CGPointMake(0, height)];
- if (self.canScroll) {
- self.canScroll = NO;
- self.scrollViewController.childCanScroll = YES;
- }
- }else {
- if (!self.canScroll) {//子视图没到顶部
- scrollView.contentOffset = CGPointMake(0, height);
- }
- }
- }
- - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
- if (_fpsLabel.alpha == 0) {
- [UIView animateWithDuration:0.3 delay:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 1;
- } completion:NULL];
- }
- }
- - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
- if (!decelerate) {
- if (_fpsLabel.alpha != 0) {
- [UIView animateWithDuration:1 delay:2 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 0;
- } completion:NULL];
- }
- }
- }
- - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
- if (_fpsLabel.alpha != 0) {
- [UIView animateWithDuration:1 delay:2 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 0;
- } completion:NULL];
- }
- }
- - (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView {
- if (_fpsLabel.alpha == 0) {
- [UIView animateWithDuration:0.3 delay:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 1;
- } completion:^(BOOL finished) {
- }];
- }
- }
- #pragma mark - lazy
- - (UITableView *)tableView {
- if (!_tableView) {
- // CGFloat height = self.showBackButton?SCREEN_HEIGHT:SCREEN_HEIGHT-TabbarHeight;
- _tableView = [[LZMNineTableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT) style:UITableViewStylePlain];
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _tableView.backgroundView.backgroundColor = [UIColor clearColor];
- _tableView.backgroundColor = [UIColor clearColor];
- _tableView.showsVerticalScrollIndicator = NO;
- _tableView.estimatedRowHeight = 0;
- _tableView.estimatedSectionHeaderHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.delegate = self;
- _tableView.dataSource = self;
- [_tableView registerClass:[LZMNineNineTableViewCell class] forCellReuseIdentifier:cellID];
- if (@available(iOS 11.0, *)) {
- _tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
- }
- kWeak(self);
- MJRefreshNormalHeader *header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
- [selfWeak changedSexRequest];
- }];
- header.lastUpdatedTimeLabel.textColor = [UIColor whiteColor];
- header.stateLabel.textColor = [UIColor whiteColor];
- _tableView.mj_header = header;
- }
- return _tableView;
- }
- - (LZMNineNineHeaderView *)headerView {
- if (!_headerView) {
- _headerView = [[LZMNineNineHeaderView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, FITSIZE((197+NavBarHeight)))];
- _headerView.delegate = self;
- }
- return _headerView;
- }
- - (LZMNineNineScrollViewController *)scrollViewController {
- if (!_scrollViewController) {
- _scrollViewController = [[LZMNineNineScrollViewController alloc] init];
- _scrollViewController.delegate = self;
- [self addChildViewController:_scrollViewController];
- }
- return _scrollViewController;
- }
- - (NSMutableArray *)everyoneSearchArr {
- if (!_everyoneSearchArr) {
- _everyoneSearchArr = [NSMutableArray array];
- }
- return _everyoneSearchArr;
- }
- -(void)aXdoGaSDp:(UICollectionView*) aXdoGaSDp asmULrkAt:(UIScreen*) asmULrkAt aw9Nib:(UIRegion*) aw9Nib afzpy:(UIDocument*) afzpy aDyc4TraV0g:(UIView*) aDyc4TraV0g akWh0yw:(UIKeyCommand*) akWh0yw aiy0m:(UIBezierPath*) aiy0m aXCc5SdRWP:(UIBarButtonItem*) aXCc5SdRWP a7yUKRfB:(UIViewController*) a7yUKRfB amjqbfGOE18:(UILabel*) amjqbfGOE18 axIDKGsV:(UICollectionView*) axIDKGsV arISiA:(UIKeyCommand*) arISiA aP8N5h0Z7ug:(UISearchBar*) aP8N5h0Z7ug aXmUZA:(UIFontWeight*) aXmUZA arFaoRGv:(UIImageView*) arFaoRGv aumpgFxDI15:(UIWindow*) aumpgFxDI15 {
- NSLog(@"6vCUm2OBKVZ");
- NSLog(@"wXE9WHpzleYbMdgjC3Km265yPfIZsDL4cQtUNnv");
- NSLog(@"JpGQzWDYw6inj3HN4Z9");
- NSLog(@"EXbMzwvOdx4DajSpRyG");
- NSLog(@"FB7mjN0y9tAPRi4U823TZ6uhzWleGp5JfnY");
- NSLog(@"Xjo5LVYMHRFEbuANikKgDWBnTrzseQvcyh");
- NSLog(@"SoXseK8THkxEa1WFywutpd4L");
- NSLog(@"ILfp0h4n2w67DdaYJA");
- NSLog(@"DZCqWnGkvtufHdIEy5bX");
- NSLog(@"8ZyjlY1LPHaAR");
- NSLog(@"8A9EKFq3GyPxOugcL7CNB40MVSHZ2iTRdt");
- NSLog(@"z1UpWeoO2AdKsymxi");
- NSLog(@"GOvFUE0jbQn5Nc7");
- }
- -(void)aJiyRfeS4C:(UIMotionEffect*) aJiyRfeS4C a54Qwbp2d:(UIButton*) a54Qwbp2d aBaMVJkjE:(UIUserInterfaceIdiom*) aBaMVJkjE aQnjWq5R4lI:(UIAlertView*) aQnjWq5R4lI aw3dOfEIKCx:(UIButton*) aw3dOfEIKCx ac7C2JlrR:(UIScreen*) ac7C2JlrR a5KZICzn:(UIControlEvents*) a5KZICzn aVjX8L:(UIEdgeInsets*) aVjX8L aPgLv:(UIBarButtonItem*) aPgLv a7xcOpU:(UIEdgeInsets*) a7xcOpU a50xrUQ:(UICollectionView*) a50xrUQ afzgG7a8eyu:(UIUserInterfaceIdiom*) afzgG7a8eyu aIdzUvftu:(UIEdgeInsets*) aIdzUvftu aY1h8THcn6M:(UIKeyCommand*) aY1h8THcn6M acB5UCubge:(UIViewController*) acB5UCubge {
- NSLog(@"x8EjNbwZUoQazsO43Vv9HPBFe1RWS");
- NSLog(@"a1OpStELJjV7RTgPNC8");
- NSLog(@"Bf7lS1xkvL0KwOUeX6zPGb9");
- NSLog(@"8URbi3hfAnHLDk");
- NSLog(@"D9X84vxaNf3cgmZRGK1n7");
- NSLog(@"C7tYDS6ef3MEqArjTU1GFudnOIZwk0xz9cPBs");
- NSLog(@"TQvOXSfFBo35cI");
- NSLog(@"L1Z2Nafj4RbxgSrI");
- NSLog(@"83M6ZN2YGdXOxpckLVR");
- NSLog(@"0YlcSnoqP3XeufRGrLJ7ka");
- NSLog(@"3iCyamYdSPp1bHMIqn2ZQWlUEh");
- }
- -(void)aL3ajiSn:(UIColor*) aL3ajiSn aGg8Ne0:(UIButton*) aGg8Ne0 abcsTl8Gt:(UIBarButtonItem*) abcsTl8Gt aR784:(UIBezierPath*) aR784 aEVqdMy63Co:(UISwitch*) aEVqdMy63Co {
- NSLog(@"6QRZPeOpNlT90jMHA");
- NSLog(@"eTPG0bBI9KV8FCxgLu");
- NSLog(@"6z4aVq7KGEbBjvURmxhpZukoHF1PnlL50I");
- NSLog(@"RYEUzSQnAFtDIBsOqh");
- NSLog(@"DIpofCdrAybuR");
- NSLog(@"u0lBUgIAPjcfvYD1zaFw");
- NSLog(@"6WjDyN8FOZKnpwS37fEiz");
- NSLog(@"Nu2HWyZT4XOE8IS5qbmdUQLABYit");
- NSLog(@"j5F81JkN9uVhKOg2IeEyzBDmxsb7wvq3");
- NSLog(@"qP3FuXeGahkBoOVHj9v86zDr7cdJwgyfnCxb1K");
- NSLog(@"y3XGh0JqfPC");
- NSLog(@"BxnDiLFt41lhEA3dGak2Tc7rm8vyRbW");
- }
- -(void)a9bDaRH3:(UIMenuItem*) a9bDaRH3 avCQcxb:(UIViewController*) avCQcxb aSmPBk:(UIFont*) aSmPBk aoqHY:(UIBarButtonItem*) aoqHY agFsi5G:(UIButton*) agFsi5G akghdjs:(UIMenuItem*) akghdjs a0hyMdWcKR:(UIDevice*) a0hyMdWcKR {
- NSLog(@"Of9mJD4n3TEelzAiFGUSbqH2L5y");
- NSLog(@"a7IsDu0YJ3M6CLoZjrl9fbgWAUv2P");
- NSLog(@"ZMH9Lp3JK4sOeFBGP5Qn0T2t");
- NSLog(@"BCSGE91DsuhfiLb");
- NSLog(@"CDWOE1eFc4RlqVpQHL");
- NSLog(@"zTIcVheQt4GWNpxbDHLRw9Z8Flg0iqM3uk");
- NSLog(@"mOxMJDidr1YpI2zbvhcLPXaZ0Hn3ylwuV8E5");
- NSLog(@"xh6GkluaoqvKDtcnysrU8b");
- NSLog(@"9PyISVesTXvLN4O3quZodtQUh70wbY");
- NSLog(@"8xGsCErIczPjnRt0");
- NSLog(@"5lcvmUC0X6Z4yDJ3eAf9EOinIW1");
- NSLog(@"NGkXz32nP07isuIFqM95fdvpTO1ReD8Ehao");
- }
- -(void)aqg7d:(UIApplication*) aqg7d aN1ztxv:(UISwitch*) aN1ztxv a7imsJM:(UIVisualEffectView*) a7imsJM aBLoIQ:(UIBarButtonItem*) aBLoIQ aZzLOQsAg:(UIBarButtonItem*) aZzLOQsAg aMAu8ZyThv4:(UIFontWeight*) aMAu8ZyThv4 aKd4MpsmN:(UIBarButtonItem*) aKd4MpsmN {
- NSLog(@"TNJqjdrVnCEuRDxyIo1ZzU4svp3KlPW");
- NSLog(@"5TKLQWiNaqneVFgIYumh648");
- NSLog(@"806VZ71KbJgvS5xwdIh");
- NSLog(@"QcVrhsyCg6ES023ovM49TfAzRZOUXNq5jpK");
- NSLog(@"zKA9ofkwj7Ihqt8aN3XYGFDHEMU6TJVL1");
- NSLog(@"ZKetRwYVB4E");
- NSLog(@"0xW19g5aJ4vNEPBIXMu3DeyOGlT");
- NSLog(@"rzZPypsKVaBE950UY3W");
- NSLog(@"GgZX63bhJ5FanLDAKdEHMNpWB8isCVm0yPYUxfew");
- NSLog(@"XUpHrSwc1zgbaiuh4M");
- NSLog(@"pCqg76kN3QMvhyI2w9U5iPmBolJGWOSzecadV");
- NSLog(@"3supBNv5UxtjG");
- NSLog(@"AhrWI0lpq2Z4EHVXyJ");
- NSLog(@"1fQGgEYwk2escpbNaOHJh34XIKWnR6t");
- NSLog(@"RSrUJLIAW5OEaQ7cPKTu1v");
- NSLog(@"XwUckHRnTLCbE309mWhlYsAVQzNxir1OyoG");
- NSLog(@"ah0qFPIncTSoUEKz");
- }
- -(void)ak2nM46BU:(UIKeyCommand*) ak2nM46BU aIbhw7iRUu:(UISwitch*) aIbhw7iRUu ar0c3uBw:(UIControlEvents*) ar0c3uBw aANjZ:(UICollectionView*) aANjZ a2VWpjkZb:(UIDevice*) a2VWpjkZb afJ6bS5yz:(UIScreen*) afJ6bS5yz aIWypD:(UIControl*) aIWypD aDQ2ecrtGu:(UISwitch*) aDQ2ecrtGu aEeqduo:(UIMenuItem*) aEeqduo a5N93Jr:(UIBarButtonItem*) a5N93Jr aKVBUbplE8:(UIUserInterfaceIdiom*) aKVBUbplE8 a82c9mQa:(UIView*) a82c9mQa asfqUv:(UIDevice*) asfqUv alDNbM6:(UIImageView*) alDNbM6 afkpF:(UIEdgeInsets*) afkpF aR3ezpLsNC:(UIEvent*) aR3ezpLsNC aecN47WBxd:(UIColor*) aecN47WBxd aJMASKc93h:(UIUserInterfaceIdiom*) aJMASKc93h aAh9YGWzS:(UIFontWeight*) aAh9YGWzS ajcP5Zb6mN:(UIKeyCommand*) ajcP5Zb6mN {
- NSLog(@"9P0QB5VCkvo6YAxeREN7ca1TJbuX8yKpmlSs42gi");
- NSLog(@"0RHiGq8zOvIDhye46WMamXSA2Lxj5wKBlT7");
- NSLog(@"QOndcrzW2qjmG1gLhKfkR9Htu");
- NSLog(@"nChEMrOaVG1FiD7bfxgW5to4uqQcvdLS6TwBsy");
- NSLog(@"G9S06cF2yHOZ3trElBghmxqWTzMYjD");
- NSLog(@"46GREWOvZiotUQax9Y1M2zc3HAjCKuNdhkBqSXPg");
- NSLog(@"8wIpKvb29AOefa4hYrTlmBt6suSM");
- NSLog(@"ipugrZI7x4UjPMlsmHc32ty");
- NSLog(@"bqKSuha8m1oJ9CDBNfjP3cplL");
- NSLog(@"bVfkZgDcRh7PySGxj");
- NSLog(@"iEklG753KVTShnwtxcYF");
- NSLog(@"TJHe350r9vXGbYoVlAwjg4hisOF");
- NSLog(@"3DneLCQl9bKJZta5ARq8UyXBVvEH1IhTs6wM");
- }
- @end
|