123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- //
- // LZMShopDetailViewController.m
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/29.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMShopDetailViewController.h"
- #import "LZMGoodDetailModel.h"
- #import "LZMCollectionView.h"
- #import "LZMGoodCollectionCell.h"
- #import "LZMGoodDetailRequestViewModel.h"
- #import "LZMGoodDetailViewController.h"
- static NSString *const cellID = @"LZMGoodCollectionCell";
- static NSString *const collectionViewHeader = @"collectionViewHeader";
- static NSInteger page = 1;
- @interface LZMShopDetailViewController () <UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @property (nonatomic, strong) UICollectionView *collectionView;
- @property (nonatomic, strong) UIImageView *shopImageView;
- @property (nonatomic, strong) UILabel *shopTitleLabel;
- @property (nonatomic, strong) CALayer *lineLayer;
- @property (nonatomic, strong) UIButton *goodIntro;
- @property (nonatomic, strong) UIButton *shopService;
- @property (nonatomic, strong) UIButton *postService;
- @property (nonatomic, strong) NSMutableArray *goodsArr;
- @end
- @implementation LZMShopDetailViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- [self initNavBar];
- [self initSubviews];
- [self request];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- }
- - (void)initNavBar {
- [self.navigationBar setBackButtonWithTarget:self selector:@selector(backAction)];
- [self.navigationBar setNavTitle:@"商家店铺"];
- [self.navigationBar setShowNavigationBarBottomLine:YES];
- }
- - (void)backAction {
- [self.navigationController popViewControllerAnimated:YES];
- }
- - (void)initSubviews {
- [self.view addSubview:self.collectionView];
- }
- - (void)setGoodModel:(LZMGoodDetailModel *)goodModel {
- _goodModel = goodModel;
-
- [self.shopImageView yy_setImageWithURL:[NSURL URLWithString:goodModel.shop_pict_url] options:YYWebImageOptionProgressiveBlur | YYWebImageOptionSetImageWithFadeAnimation];
- self.shopTitleLabel.text = goodModel.shop_title;
- [self.goodIntro setTitle:[NSString stringWithFormat:@"宝贝描述:%@", goodModel.item_score] forState:UIControlStateNormal];
- [self.shopService setTitle:[NSString stringWithFormat:@"卖家服务:%@", goodModel.service_score] forState:UIControlStateNormal];
- [self.postService setTitle:[NSString stringWithFormat:@"物流服务:%@", goodModel.delivery_score] forState:UIControlStateNormal];
- }
- #pragma mark - request
- - (void)request {
- [LZMGoodDetailRequestViewModel requestShopGoodParamSellerId:self.goodModel.sellerId Page:page success:^(NSArray *array) {
- if (array.count > 0) {
- [self.goodsArr addObjectsFromArray:array];
- [self.collectionView reloadData];
- }
-
- [self noMoreDataWithArray:array];
-
- [self.collectionView.mj_header endRefreshing];
- [self.collectionView.mj_footer endRefreshing];
- } failure:^(NSError *error) {
- [self.collectionView.mj_header endRefreshing];
- [self.collectionView.mj_footer endRefreshing];
- }];
- }
- - (void)noMoreDataWithArray:(NSArray *)array {
- if (array.count <= 0) {
- MJRefreshBackNormalFooter *foot = (MJRefreshBackNormalFooter *)self.collectionView.mj_footer;
- [foot setTitle:@"到底啦" forState:MJRefreshStateIdle];
- }
- }
- #pragma mark - collectionView
- - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
- return 1;
- }
- - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
- return self.goodsArr.count;
- }
- - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
- LZMGoodCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
- cell.backgroundColor = [UIColor whiteColor];
- cell.backgroundView.backgroundColor = [UIColor whiteColor];
- cell.contentView.backgroundColor = [UIColor whiteColor];
- LZMChildGoodModel *model = self.goodsArr[indexPath.item];
- cell.model = model;
- return cell;
- }
- - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
- UICollectionReusableView *view = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:collectionViewHeader forIndexPath:indexPath];
- view.backgroundColor = [UIColor whiteColor];
-
- [view.layer addSublayer:self.lineLayer];
-
- for (NSInteger i=0; i<3; i++) {
- CALayer *layer = [CALayer layer];
- layer.frame = CGRectMake(kScreenWidth/3*i, FITSIZE(105)+FITSIZE(40)/2-FITSIZE(5)/2, 1, FITSIZE(5));
- layer.backgroundColor = [UIColor YHColorWithHex:0x999999].CGColor;
- [view.layer addSublayer:layer];
- }
-
- [view addSubview:self.shopImageView];
- [view addSubview:self.shopTitleLabel];
- [view addSubview:self.goodIntro];
- [view addSubview:self.shopService];
- [view addSubview:self.postService];
-
- [self.shopImageView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(view).offset(FITSIZE(20));
- make.top.equalTo(view).offset(FITSIZE(22));
- make.size.mas_equalTo(CGSizeMake(FITSIZE(60), FITSIZE(60)));
- }];
-
- [self.shopTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.shopImageView.mas_right).offset(FITSIZE(14));
- make.centerY.equalTo(self.shopImageView);
- }];
-
- [self.goodIntro mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(view);
- make.top.equalTo(view).offset(FITSIZE(105));
- make.width.mas_equalTo(kScreenWidth/3);
- make.bottom.equalTo(view);
- }];
-
- [self.shopService mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.goodIntro.mas_right);
- make.top.equalTo(self.goodIntro);
- make.width.equalTo(self.goodIntro);
- make.bottom.equalTo(self.goodIntro);
- }];
-
- [self.postService mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.shopService.mas_right);
- make.top.equalTo(self.shopService);
- make.width.equalTo(self.shopService);
- make.bottom.equalTo(self.shopService);
- }];
-
- return view;
- }
- - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section {
- return CGSizeMake(kScreenWidth, FITSIZE(145));
- }
- - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
- LZMChildGoodModel *model = self.goodsArr[indexPath.item];
- //详情
- LZMGoodDetailViewController *detailVC = [[LZMGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithChildModel:model];
- detailVC.requestModel = requestModel;
-
- LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:@"0" category_id:@"0" source:merchantShopAction];
- detailVC.eventModel = evevtModel;
-
- [self.navigationController pushViewController:detailVC animated:YES];
- }
- #pragma mark - lazy
- - (UICollectionView *)collectionView {
- if (!_collectionView) {
- UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
- flowLayout.scrollDirection = UICollectionViewScrollDirectionVertical;
- flowLayout.itemSize = CGSizeMake(FITSIZE(184.9), FITSIZE(287));
- flowLayout.minimumLineSpacing = FITSIZE(5);
- flowLayout.minimumInteritemSpacing = FITSIZE(5);
-
- _collectionView = [[LZMCollectionView alloc] initWithFrame:CGRectMake(0, NavBarHeight, kScreenWidth, kScreenHeight-NavBarHeight) collectionViewLayout:flowLayout];
- _collectionView.delegate = self;
- _collectionView.dataSource = self;
- [_collectionView registerClass:[LZMGoodCollectionCell class] forCellWithReuseIdentifier:cellID];
- [_collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:collectionViewHeader];
- if (@available(iOS 11.0, *)) {
- _collectionView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
- }
- kWeak(self);
- _collectionView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
- [self.goodsArr removeAllObjects];
- page = 1;
- [selfWeak request];
- }];
- _collectionView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
- page ++;
- [selfWeak request];
- }];
-
- }
- return _collectionView;
- }
- - (CALayer *)lineLayer {
- if (!_lineLayer) {
- _lineLayer = [CALayer layer];
- _lineLayer.frame = CGRectMake(0, FITSIZE(100), kScreenWidth, FITSIZE(5));
- _lineLayer.backgroundColor = [UIColor YHColorWithHex:0xf5f4f4].CGColor;
- }
- return _lineLayer;
- }
- - (UIImageView *)shopImageView {
- if (!_shopImageView) {
- _shopImageView = [[UIImageView alloc] init];
- _shopImageView.backgroundColor = [UIColor clearColor];
- _shopImageView.layer.borderColor = [UIColor YHColorWithHex:0xdddddd].CGColor;
- _shopImageView.layer.borderWidth = 0.5f;
- }
- return _shopImageView;
- }
- - (UILabel *)shopTitleLabel {
- if (!_shopTitleLabel) {
- _shopTitleLabel = [[UILabel alloc] init];
- _shopTitleLabel.backgroundColor = [UIColor clearColor];
- _shopTitleLabel.textColor = [UIColor YHColorWithHex:0x222222];
- _shopTitleLabel.font = [UIFont systemFontOfSize:FITSIZE(14)];
- }
- return _shopTitleLabel;
- }
- - (UIButton *)goodIntro {
- if (!_goodIntro) {
- _goodIntro = [UIButton buttonWithType:UIButtonTypeCustom];
- _goodIntro.backgroundColor = [UIColor clearColor];
- [_goodIntro setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- _goodIntro.titleLabel.font = [UIFont systemFontOfSize:FITSIZE(11)];
- }
- return _goodIntro;
- }
- - (UIButton *)shopService {
- if (!_shopService) {
- _shopService = [UIButton buttonWithType:UIButtonTypeCustom];
- _shopService.backgroundColor = [UIColor clearColor];
- [_shopService setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- _shopService.titleLabel.font = [UIFont systemFontOfSize:FITSIZE(11)];
- }
- return _shopService;
- }
- - (UIButton *)postService {
- if (!_postService) {
- _postService = [UIButton buttonWithType:UIButtonTypeCustom];
- _postService.backgroundColor = [UIColor clearColor];
- [_postService setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- _postService.titleLabel.font = [UIFont systemFontOfSize:FITSIZE(11)];
- }
- return _postService;
- }
- - (NSMutableArray *)goodsArr {
- if (!_goodsArr) {
- _goodsArr = [NSMutableArray array];
- }
- return _goodsArr;
- }
- -(void)aIktgKXw:(UIButton*) aIktgKXw aXdFYv:(UIControlEvents*) aXdFYv au6jdmo:(UIActivity*) au6jdmo aAbp0RlEPg4:(UIFontWeight*) aAbp0RlEPg4 afb7p3EAja:(UIAlertView*) afb7p3EAja a4eJ5hkuRl:(UIControl*) a4eJ5hkuRl a43mLaj5ly:(UIDevice*) a43mLaj5ly ak08RKZec2:(UIWindow*) ak08RKZec2 aoEgPtzwDfv:(UIBarButtonItem*) aoEgPtzwDfv aBTvX:(UIScreen*) aBTvX {
- NSLog(@"vXe0UcBOCAIRuWxf8VKG3sJao76b");
- NSLog(@"crhsIW3u7CZx5F9YbMANjU6ntgwDqO");
- NSLog(@"EhoqXregcJ");
- NSLog(@"T4LIlcFObikC6B");
- NSLog(@"39EauvAeyWVI754LS");
- NSLog(@"Owqb2vzE5FxnT9LQXVfhjoW736IpuU1rHey");
- NSLog(@"ZIbMyagnz2mQATsSXih3Y");
- NSLog(@"XTLelyOs91");
- NSLog(@"mtq7TeDPUwOXvCjAzirVHRZlSWx1uoF3IkQGs");
- NSLog(@"DziMRskWJ4lOVf5y1eZtFb6YSv0gjPNqucroG");
- NSLog(@"ZF3TqSUvYIl");
- NSLog(@"3Kise6FuJ2AByxhdvaYIcr8nGW5Tgl");
- NSLog(@"c4Me0iHhrpobY97DNTwm5yORZ1zPB3lESfWjA");
- NSLog(@"MKJ2pQILReEBA0lGf74toX3TicHyF98muPbxV6d");
- NSLog(@"RBwp2gftidaz");
- }
- -(void)amIA9y:(UISwitch*) amIA9y axITLOWi:(UIApplication*) axITLOWi aV7vh9muF:(UIBarButtonItem*) aV7vh9muF aAJ1S:(UIBarButtonItem*) aAJ1S ae0A7:(UIDevice*) ae0A7 {
- NSLog(@"yYoODXHie3Sxu7NE");
- NSLog(@"6lbOAr80KyN9eJhStx75w3");
- NSLog(@"snwx9Kf4Ep7qO0yAdSWTGJI5F");
- NSLog(@"Qo7hAYqZ6vrf1ywueHKkM2m3TzxaJ8G5dp");
- NSLog(@"fc2UAgwCx9ZuFVXvSOJ3iNTr41Ie");
- NSLog(@"cTfyKSP4OajNqFtG16gIuz5AexXd");
- NSLog(@"y7SkIt9QYOlVmU");
- NSLog(@"4pQWumMRoztnY1OaI8EFPr3ADUL7BT9JHbdqsive");
- NSLog(@"KwJahVW5Lrnm");
- NSLog(@"lprHnbk8ORyuivNQLjg4dW5SwCaEhmP9VfJ0tZ");
- NSLog(@"siFbCY67H3BMeGLqEQc");
- }
- -(void)azZjq:(UIDevice*) azZjq a7e3DQyg:(UIButton*) a7e3DQyg a2JxrLp:(UIColor*) a2JxrLp abDyNY4W:(UIUserInterfaceIdiom*) abDyNY4W aBbvgraX:(UIButton*) aBbvgraX arqeoP:(UIControlEvents*) arqeoP abSKA:(UIDevice*) abSKA a3XmwS:(UIUserInterfaceIdiom*) a3XmwS az9uLCStjI:(UIControl*) az9uLCStjI aqKFcjUVl:(UIButton*) aqKFcjUVl asqjh:(UIInputView*) asqjh aNqWS9:(UIMotionEffect*) aNqWS9 aPigYy:(UIEdgeInsets*) aPigYy aGKuMwS8:(UIScreen*) aGKuMwS8 aOaikTvUW9:(UIInputView*) aOaikTvUW9 {
- NSLog(@"MNLdkXvf7Zty6SqGgWp4h");
- NSLog(@"aRj0BP4tw1z9Jyim7ZK");
- NSLog(@"nfAYS7LQj6WIGs3KoE9DtHygU1FOZXzxRB2");
- NSLog(@"SxQjaZgPThk0bAu4Bwq3");
- NSLog(@"2Usw3oKatZ");
- NSLog(@"OPTDvNkeA3V65ZMschoti");
- NSLog(@"cRQyZ86DMLweJFKWm0lTgCHrPoiBGzbua");
- NSLog(@"4asJHfMn95ASWvUEZl8I7kYQRgtxhob");
- NSLog(@"x5bS9MFCGoIymNfz2aUYlq");
- NSLog(@"Un836MAETodB5Yu");
- NSLog(@"bWmAUhKsPlupVoGg0TjirwYSQ7ZqJeRFnDOaCy");
- NSLog(@"N4qaGEJZbrcOILwv");
- NSLog(@"TN4C1pHR2u8b9AmynB");
- NSLog(@"wHDe3NcbkGTRn4VYXflzvI2jgM80K5");
- NSLog(@"f42UVqDIQdeiMN9W0");
- NSLog(@"URaYmcfOTq4ysX1hwSC6vxBJn8uL7FH2ie");
- NSLog(@"eU8yjk73OMabB4ihzSHoZmIE");
- NSLog(@"Ib8C0VW4q3hDNOTEUm1ndXGZScF9ylrvxiLRJje");
- NSLog(@"mMovezg4UCQcBXjIHsaW6JdKx58");
- }
- -(void)aehEnaD5:(UIAlertView*) aehEnaD5 aoC2d0UB:(UIInputView*) aoC2d0UB aI75fMWQ:(UIWindow*) aI75fMWQ awpoe0:(UIApplication*) awpoe0 absQOWXAB:(UIButton*) absQOWXAB ak4Llsiy1G:(UIScreen*) ak4Llsiy1G aFedBna:(UIImage*) aFedBna aJfyx:(UIControlEvents*) aJfyx aVbgqyIuic:(UISwitch*) aVbgqyIuic aco3qQ:(UIVisualEffectView*) aco3qQ aCjI5l46Y:(UIImageView*) aCjI5l46Y aRihTpo:(UIViewController*) aRihTpo aB1xz63FLHK:(UIBezierPath*) aB1xz63FLHK ayP3NHnfI:(UIBarButtonItem*) ayP3NHnfI aKxr97wL:(UISearchBar*) aKxr97wL aDCLZR:(UIVisualEffectView*) aDCLZR aYc25r:(UIControlEvents*) aYc25r ayBwRvm8:(UIControl*) ayBwRvm8 aPgQItWHKp:(UIAlertView*) aPgQItWHKp aXigfjD9:(UIControlEvents*) aXigfjD9 {
- NSLog(@"dAyQSYKXh8NpjftRcb7k3H16vCEarLFWGmJB");
- NSLog(@"aXgtc1sINkDxyOe6JC");
- NSLog(@"Dn4thA5YmPkgIWKqVlvUEZorNaeCxO8BJSuf");
- NSLog(@"3wFBeRvDVGsZbz8kopWcOCHx6EtQni0KXYIl");
- NSLog(@"XHuwY9kNABZozQDb2");
- NSLog(@"R1WTJFUKO6AQqjx4wuki02EZNypl");
- NSLog(@"s7iIwdkubYLcV1zMJn4lEBOHamRUXejvTfWGP");
- NSLog(@"Y6qELDIl28jtGHo3zfNJZ4");
- NSLog(@"KwbxANOSlPWfGHhtB7pFDcX");
- NSLog(@"XCV7jyY4E1Lh9zklG5WZbxd6cQI3");
- NSLog(@"byGfVdpzIwTsY190SQoLBZDu62mMPcFX3");
- NSLog(@"gtDwZM3KO8LHJ7BTARyY");
- }
- -(void)a6DoS:(UIColor*) a6DoS aD6sXpOl9:(UIColor*) aD6sXpOl9 awQBAiF0MGO:(UIColor*) awQBAiF0MGO a6pD1ARckW:(UIImageView*) a6pD1ARckW a58vWiT:(UILabel*) a58vWiT aLHKqZ:(UIWindow*) aLHKqZ aRJ8l13L7vs:(UIControlEvents*) aRJ8l13L7vs ar9pW5nq:(UIVisualEffectView*) ar9pW5nq awHKr0s:(UIButton*) awHKr0s avhp8FbeRtL:(UIMenuItem*) avhp8FbeRtL aj690CPy:(UIImageView*) aj690CPy aMqcSLd:(UILabel*) aMqcSLd as7dBqoZk5Y:(UIControl*) as7dBqoZk5Y aljmpM9daoO:(UISearchBar*) aljmpM9daoO agYJiEr:(UIAlertView*) agYJiEr aLTnCNPth:(UIButton*) aLTnCNPth {
- NSLog(@"lAGUMp3kPSR");
- NSLog(@"WcfIa7FMRAQwgqEG9Vd28hrs3uxNnvb");
- NSLog(@"u7tPi03E6ZGghj9InsyH");
- NSLog(@"9NbpYBxyPfCtXiUw7Lor5F1h6RMW8QGZSEn4");
- NSLog(@"DdfyAmOat1s8K9P2RkcI53n");
- NSLog(@"ouh53HzrXBxQ");
- NSLog(@"0KUYjIQNJ2lzCdmH8LrREPxXeqS");
- NSLog(@"UZz6AXtVORJrHbqskTjLxB7IlS1K3wveQ5d");
- NSLog(@"iFIGhtzpqJvdLP3OuCmY6");
- NSLog(@"7bAZvYep3gLSWq5HtGoJsyKaVhimT2BNCdMIjQr");
- NSLog(@"mLIFcZk7Y0UrdoTtzRPyNMswK5n8q4Xj9uvVhA");
- NSLog(@"Cmi0ZWbcEler");
- NSLog(@"XBxiThL1EnSCOAQelHWyV0Imq6F2dJGY");
- NSLog(@"sxtSX0vgWrH5fDIcGQe8Tum");
- NSLog(@"dX7FkyqNOTuUMh9fSH4W56K");
- NSLog(@"7KCw5rpinajuJtvELh4MDQz31B6dgSOq");
- NSLog(@"4mr7KnMYeWQBGTXgotHIui3l");
- }
- -(void)aFXVM3:(UIWindow*) aFXVM3 athEr:(UIMenuItem*) athEr arEei:(UIKeyCommand*) arEei aXPGth:(UIDocument*) aXPGth aCr03x48di:(UIMenuItem*) aCr03x48di aejPL:(UIBarButtonItem*) aejPL aD1a23S:(UIInputView*) aD1a23S a1QuFq5Nc:(UIFontWeight*) a1QuFq5Nc aQlNf:(UIVisualEffectView*) aQlNf aMhxtwDiSRk:(UIAlertView*) aMhxtwDiSRk anyYLselvx:(UIButton*) anyYLselvx azWxr:(UISearchBar*) azWxr aT71dwYs:(UIButton*) aT71dwYs {
- NSLog(@"tzgx5ijQ8I0sFf1Mdlbc");
- NSLog(@"UtSx3ruZVbCwX2dMBe");
- NSLog(@"5XjV7a2reCcdABZm");
- NSLog(@"IEpKaQjP3USyilNOBv7cfH92uY5T8eCrzW4xq");
- NSLog(@"XYoEVRe50S2BscxmCMNpQw");
- NSLog(@"p5HamsEOdLbI9");
- NSLog(@"oWC1nz9rcjYi84hIlfQOMmDXxqZ5");
- NSLog(@"NKbjs7FqxAXnfJr3P8HGLiuT6Wk");
- NSLog(@"361aLMzRZIyejYJugwOShPkF");
- NSLog(@"MvPrVuwsOC4WmE2flYyz6cb");
- NSLog(@"UfJegZO5pW");
- NSLog(@"4IQ0G1qb35u");
- NSLog(@"urPeExGcNaMK6f");
- NSLog(@"9zN8Eut6sjMe2T4odvk3XAyWS");
- NSLog(@"O7pAvRCBgYi3z6XUwTxrFPeoKNtVj8c94Ls2WaSd");
- NSLog(@"rLCAWUex8Gl0bYMQ7cTtHizRskIOgh5q");
- NSLog(@"ITpabUWtr8eohEVqJw3FRusnZiKYgA2DcGPQ");
- NSLog(@"SMWhr6EymsfwqK1");
- NSLog(@"UgvtcoZQE8lH3MSprwXxJsjL7");
- }
- -(void)aYgMkS5u:(UIAlertView*) aYgMkS5u asmZjfW03:(UIImageView*) asmZjfW03 adXbm:(UIImage*) adXbm aMxLq:(UIUserInterfaceIdiom*) aMxLq aHfREa:(UIImageView*) aHfREa ajmnfO:(UIInputView*) ajmnfO {
- NSLog(@"RZQk2I0eCWOmY");
- NSLog(@"ML2QSFs1AEDfrPqBIhOz");
- NSLog(@"dfBqAvVDUg5");
- NSLog(@"zVn6iHegA49BmOTS371pqdhMkNXCD");
- NSLog(@"ZkFuC71bHPyMOl4KGepT8mLh9Dsznv3");
- NSLog(@"AF89wSmpfKyuD4aWtXbVH1e6xBU3ET0sclL");
- NSLog(@"lYFnieAhsSypVLdTtB1fcPoJ8743gm");
- NSLog(@"ZYMnzkcRKbeP1UawN8xj4OpfHuQA9F7yrmilE");
- NSLog(@"NC42Hi8InlvLc6Dyjme3WxXsOMZuR7");
- NSLog(@"J1Wlp9kqhsFC02xZi5G3AObY8gE");
- NSLog(@"ST3b4foyECrm0d9uzLhqZHY2aAgx");
- NSLog(@"ol83dCkz4ymx0uq1AJtGr");
- NSLog(@"cJYSKnp0zQHjrWwkaT6MEyXvq84uoftUB92bd");
- NSLog(@"vRgaT254eEJ");
- NSLog(@"9uZXU2d5Cv1latsVoRjAYTghWHy");
- NSLog(@"nJ6rtZHRMCL5meKqoyFV93DEXg8a1u");
- NSLog(@"j6NvfDErFQaTPCIRs9dwY3oOXGWL01Jtkg74ebyA");
- NSLog(@"Qe4qXsSPBazZT2fo10jbW9ArYk");
- NSLog(@"zQEGWdV0g7JiYTswa8bSUch9XpOrfuAxH");
- }
- -(void)aOF7oeQY3z8:(UIMotionEffect*) aOF7oeQY3z8 aCtPK9UR7vD:(UIInputView*) aCtPK9UR7vD aOecfNX:(UIScreen*) aOecfNX afQCLnDkbR:(UICollectionView*) afQCLnDkbR aoC7UigrBH:(UIControl*) aoC7UigrBH a1XGR:(UIWindow*) a1XGR anUjTlgk:(UIBarButtonItem*) anUjTlgk aCWbGvKNaQ:(UIRegion*) aCWbGvKNaQ adQRYz6Com2:(UIBarButtonItem*) adQRYz6Com2 aM8Xcj:(UIFont*) aM8Xcj azxBH:(UIInputView*) azxBH aITVU:(UIInputView*) aITVU {
- NSLog(@"5oINmTGrMUndf2iVOawQSP");
- NSLog(@"GkRLoz8vs1xHj0n3");
- NSLog(@"WEYvjPnNe34s8Kk69uHl5");
- NSLog(@"DAagPw5WXxzJT2qC8u");
- NSLog(@"EvdfGhK4lkTRJ9DeCgO2ILYaFP56X8iywx7HNbU");
- NSLog(@"DkuqZLcWQ2G7zyMsvTgjCEbJwS");
- NSLog(@"LVyvSt5josQzUpdxC7lMR");
- NSLog(@"MrL1cAOlCmQFaPvnUkS5e6Nq");
- NSLog(@"YiBoZ92rmSPJuqhlzN4gVUKk1QT8IRXcwEAjaCbF");
- NSLog(@"VpbhWn02EtAseuNz6FDJvmH");
- }
- -(void)abVZ6eE:(UIFont*) abVZ6eE aK9iO74A:(UIView*) aK9iO74A abyrzAY8Z:(UITableView*) abyrzAY8Z aMwJlG:(UICollectionView*) aMwJlG auQjpU9KSc:(UIView*) auQjpU9KSc aWxZo:(UIVisualEffectView*) aWxZo {
- NSLog(@"G2q8x4fCZNOLtTAsn0Vep9MQBgFjJylI7kvzdKH");
- NSLog(@"ewGBDREL0Q4W3Z5uFj");
- NSLog(@"Klt4JU8T3ZPfv");
- NSLog(@"tyUWxjMdsugXbzVDerA1SRvqf2h");
- NSLog(@"MJVIsUr5YNcvAQ0xoy4lpZK");
- NSLog(@"BUsi84tXu6");
- NSLog(@"VowePnSjiCEfGYF491Ur");
- NSLog(@"Q4TPs0VaA15ZevhdolwCB");
- NSLog(@"sM9LSjHnlC5m3YaXxyUAephu0EvI1kcFNiG4oJfV");
- NSLog(@"XdEtkY9KIac0oxbQieh2nyLj");
- NSLog(@"Q4sKjTiOknXe");
- NSLog(@"THpbhSJ6Ge3vwDcxliINyQRW0L1YfdFkM");
- }
- -(void)adyMprsFwD:(UIEvent*) adyMprsFwD anbIZsDS5mw:(UIActivity*) anbIZsDS5mw aVGs35:(UIFontWeight*) aVGs35 aIDQMqRj:(UIScreen*) aIDQMqRj am9faRHp08:(UIKeyCommand*) am9faRHp08 aTCGzpZ3iY8:(UIRegion*) aTCGzpZ3iY8 ariKD4:(UIImageView*) ariKD4 {
- NSLog(@"86E4p0oVScWIwyGZLFBN2sm");
- NSLog(@"XRmSV5GnMc1Jsv3");
- NSLog(@"kKN4VC73GuOJoHqrbmynTEWZIdA8lSeRv10MDtz");
- NSLog(@"ajXuriL0Rxk1E2VI86cA4wSNGeoMKvzTl");
- NSLog(@"DYMCOGzT9lp2sWb");
- NSLog(@"HKFycsCiO0ajXdflhU4WtP1pQqYwSZ93MvR");
- NSLog(@"EXNBSoKGdJFpgr6cQeM7VsaOu");
- NSLog(@"Qn4CrUW0igpeZbl7kxG89sVATEB5ORM");
- NSLog(@"yZXhA2zvipWxHLENDrId3eJ");
- NSLog(@"eB5cNDzGFuA");
- NSLog(@"FhMQkLBnUfDNz7RxCEctY5pr");
- NSLog(@"DFuZ3leiNUyJ");
- NSLog(@"vsoWAxOZYlwN0fSMaPuXbgtejQBdi5");
- NSLog(@"lFRGPW0ZcCt7Uz5qEdf39Hj1ohL2TVBwaxKmrANJ");
- }
- @end
|