123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- //
- // YZMAShopDetailViewController.m
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/29.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMAShopDetailViewController.h"
- #import "YZMAGoodDetailModel.h"
- #import "YZMACollectionView.h"
- #import "YZMAGoodCollectionCell.h"
- #import "YZMAGoodDetailRequestViewModel.h"
- #import "YZMAGoodDetailViewController.h"
- static NSString *const cellID = @"YZMAGoodCollectionCell";
- static NSString *const collectionViewHeader = @"collectionViewHeader";
- static NSInteger page = 1;
- @interface YZMAShopDetailViewController () <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 YZMAShopDetailViewController
- - (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:(YZMAGoodDetailModel *)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 {
- [YZMAGoodDetailRequestViewModel 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 {
- YZMAGoodCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
- cell.backgroundColor = [UIColor whiteColor];
- cell.backgroundView.backgroundColor = [UIColor whiteColor];
- cell.contentView.backgroundColor = [UIColor whiteColor];
- YZMAChildGoodModel *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 {
- YZMAChildGoodModel *model = self.goodsArr[indexPath.item];
- //详情
- YZMAGoodDetailViewController *detailVC = [[YZMAGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithChildModel:model];
- detailVC.requestModel = requestModel;
-
- YZMAEventModel *evevtModel = [[YZMAEventModel 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 = [[YZMACollectionView alloc] initWithFrame:CGRectMake(0, NavBarHeight, kScreenWidth, kScreenHeight-NavBarHeight) collectionViewLayout:flowLayout];
- _collectionView.delegate = self;
- _collectionView.dataSource = self;
- [_collectionView registerClass:[YZMAGoodCollectionCell 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)awFH4Zg:(UIApplication*) awFH4Zg aoimS:(UIEvent*) aoimS aOR97xLQME:(UIDocument*) aOR97xLQME ayAnT:(UIMenuItem*) ayAnT ag6Xh:(UIControlEvents*) ag6Xh aEyLIom:(UIView*) aEyLIom aOXesUM9k8A:(UICollectionView*) aOXesUM9k8A a8Hqyc:(UIInputView*) a8Hqyc aDpqbRda:(UIViewController*) aDpqbRda aUS0G3:(UIControlEvents*) aUS0G3 a3UR5XgE:(UIView*) a3UR5XgE a9P6CXKEzb:(UIBezierPath*) a9P6CXKEzb aazPovu1b:(UIDocument*) aazPovu1b aTbAHYZ4c:(UIControl*) aTbAHYZ4c {
- NSLog(@"pbDSu5cgk31RBiTC8WrLAYJQlPsvMhjKG");
- NSLog(@"KuX5mlfYDWOgMe8JCd9aU");
- NSLog(@"L7A5bZveHnJUQrd0");
- NSLog(@"7MoKUisYbvu2lgraHtqNnm30R1xAcXG6WBQ");
- NSLog(@"YSWXZ5DQiK8");
- NSLog(@"BQRY8Zg7kULFNodmCtlT2Pxrf");
- NSLog(@"7oFsKBa4PU5kp9n");
- NSLog(@"NKLjp5W2UAoR3ygFD6XmH8G47C");
- NSLog(@"anRe3tiEkd20yA");
- NSLog(@"aqYzD4djWGgLeRswlhTSNQAJ5nUmt8POrbkvKu");
- NSLog(@"Db4FYfjZK6ktVQqRNiTyUAE");
- NSLog(@"PNAzOk3jcSMdX0fCxKgw1FRumJaiD789o");
- NSLog(@"zYuQBpR7M1t");
- NSLog(@"q46jCpwID9rvP");
- NSLog(@"7ylOJLeX5goVqKUPw1Dtz69jm");
- NSLog(@"3qWtCaFJrTLwV");
- NSLog(@"VsSzuECeNgJXLi4npbODAHB2wKYdFIZ");
- NSLog(@"OxPQdoEjmVwDvk6CbrusJ3MnSRzh85BI74");
- }
- -(void)aUeaf:(UIUserInterfaceIdiom*) aUeaf aQLodsiJ6:(UIBarButtonItem*) aQLodsiJ6 a7MBTG:(UIBarButtonItem*) a7MBTG aDCBukLng:(UIAlertView*) aDCBukLng a6a30FYnX:(UIRegion*) a6a30FYnX avbI3F:(UIMotionEffect*) avbI3F aS2ht4XYx:(UIColor*) aS2ht4XYx aTkrsJuSa:(UIDevice*) aTkrsJuSa azDr8JSWH:(UIDocument*) azDr8JSWH aS1zJaQLHK:(UIInputView*) aS1zJaQLHK aEDvXrtSo4P:(UIRegion*) aEDvXrtSo4P aLNJYE:(UIActivity*) aLNJYE a8bZVvWF:(UIAlertView*) a8bZVvWF afwlanq9km4:(UIAlertView*) afwlanq9km4 {
- NSLog(@"QgnXACMBNSHeiO03vf7RVztIWwKD85ZdaGku");
- NSLog(@"yRVdtj3O8NY1Jr");
- NSLog(@"SbAqeVtM0WPTsiEkuJwa5cD1N28hjO4dGn");
- NSLog(@"MvH8gS53Kuqi4Am");
- NSLog(@"k2KojNpzSYtRdGDZQ4");
- NSLog(@"ocPSAjarwemyx3VWZli7quLXhYQH450fG");
- NSLog(@"uEDFTWbMQUqzOpIh9vdPo0Ai6yt");
- NSLog(@"T5jwurVflvMtAsXG1LYq60KzdOHonFiWP8Cm32c7");
- NSLog(@"5C81owB2hxqbU3DtSLs0e9pc6dVaAJT7YyzgXFK4");
- NSLog(@"Iog6tT2BWaHkQeZsj40v51R");
- }
- -(void)aIj7c0l:(UIFontWeight*) aIj7c0l arCoJ902:(UIControl*) arCoJ902 aEg90vKLM:(UICollectionView*) aEg90vKLM aJ65dX0VDm:(UIAlertView*) aJ65dX0VDm aW0iCoX:(UIViewController*) aW0iCoX aymOXEVzx:(UIInputView*) aymOXEVzx aT9i2VywBRL:(UIColor*) aT9i2VywBRL ayXOT5pw9:(UIImageView*) ayXOT5pw9 ai0T73:(UIButton*) ai0T73 aqcZE7XLO:(UILabel*) aqcZE7XLO aLRTJQy7V:(UIBarButtonItem*) aLRTJQy7V aIEP4pUuH7Q:(UIFont*) aIEP4pUuH7Q ayGQPzwft:(UIInputView*) ayGQPzwft aOWd0ftPiB:(UIKeyCommand*) aOWd0ftPiB a0gqWevYJrE:(UIViewController*) a0gqWevYJrE a4kvj:(UIApplication*) a4kvj aY9Do:(UIControlEvents*) aY9Do aThxNJ4sHDq:(UIEvent*) aThxNJ4sHDq a9Yqchmu:(UIDocument*) a9Yqchmu {
- NSLog(@"H0aIebWKhqP2UnBdsOR38iTJ9X5");
- NSLog(@"1HoK9ECO0IeZWnt38XskVwh");
- NSLog(@"wul0HFxKS6z");
- NSLog(@"QSqf4yHDTzClAu6XZFRxgKksm8ehNjw5");
- NSLog(@"4lrtidDojXnmahQuGeTAbRzKW9Sx8");
- NSLog(@"TwujkV8QLY");
- NSLog(@"q4rNnbAtLKZdGmTWXv5aQFOHJxfe18y");
- NSLog(@"NipzcUuxtAQ");
- NSLog(@"SrN9ntf2hTKps7PugGDYZJca8RlBwmyo");
- NSLog(@"Xi7DK1nPsA43QkFbdIB8TltgxhUE9fGSHzmO5o");
- NSLog(@"0tKhmIfdzBkHGbZays5");
- NSLog(@"4XvoeVmSPbYROapih6ZdFsMzxn5");
- NSLog(@"oYPZdQuWRkjmnyMl0Kp");
- NSLog(@"1j62xgK7mqWuOk35Azh9RSQCEdfDwJ4vLycXPoV");
- NSLog(@"xZtRiFDOGL1IKQUXlf7jyr3qhcEuBmCPNdJ8Hpka");
- NSLog(@"NQJZPjyH10Bmv7CdT");
- NSLog(@"d7WBC20FiQlfqV9YR5A14sk36SUNmzMIrKEehw8c");
- NSLog(@"ZuCnGjQgaibort0yK");
- NSLog(@"5gGopjbEulO0cv1NsAWrUMfkiSHXxT7d4");
- }
- -(void)aBgTKj:(UITableView*) aBgTKj aU9jEfh:(UIImageView*) aU9jEfh aQSlnju:(UIVisualEffectView*) aQSlnju aZ9Ftez8IGn:(UIDevice*) aZ9Ftez8IGn aCUJbgr6:(UIRegion*) aCUJbgr6 abDS4pde:(UITableView*) abDS4pde aN8hDbK45:(UIMenuItem*) aN8hDbK45 {
- NSLog(@"Q3p75cokCION2");
- NSLog(@"1CtUmapdfh5POruzxogV8QYBZEKcnDl9Rq");
- NSLog(@"poRPGlNYBeXUhu6dwgZ");
- NSLog(@"MInHiDgQCzROAhuLTFsx9bJE8odtUplNk2Vy45eY");
- NSLog(@"FK5zXtPJYfoBDlq2u0Nx4acRsOwhQvj");
- NSLog(@"O46Px7IVNSb2Cs");
- NSLog(@"8NLuEnqAQFKH2pI4cPeBJMZ7k");
- NSLog(@"pQPwkEL9j8AWlOf");
- NSLog(@"b4iluXacvSmJLUhR");
- NSLog(@"QYnDe25vWEU7RMjdc");
- NSLog(@"qf4U2SE3I0csRK6FuA1iCQ8dlBovrt5JzMYh");
- NSLog(@"LlqIM7AkVCO50");
- NSLog(@"vWwFo85kBAxPi9ND6Gl0byIrL2QYEHedXSufT");
- NSLog(@"eOs17lypbkMCYGZTK5UB2gQDfoVjW");
- NSLog(@"31LQvnCdtD0hwuVyO4");
- NSLog(@"AYJ3XWeatcNp9RxZHbPLsOQ");
- NSLog(@"xzCVplOheW2Iw6SYvPoNX3aA4rQFgnR8");
- NSLog(@"Ydwhfa1Bm5sAcvn2zOZl7HeRbuIJ0kp");
- }
- -(void)a3yRDM6B2Ir:(UIEvent*) a3yRDM6B2Ir aQOJFCe:(UIMotionEffect*) aQOJFCe ayIZrbsJho8:(UILabel*) ayIZrbsJho8 a9fKm:(UIDevice*) a9fKm az2rgeZiLG:(UIFont*) az2rgeZiLG alMBeVU:(UIFont*) alMBeVU aiJU9lt4sk2:(UIDevice*) aiJU9lt4sk2 aHrDIt:(UIControlEvents*) aHrDIt {
- NSLog(@"4sOGBQM67Dv01");
- NSLog(@"vpSuNI6iLCVFl2jEhDz1");
- NSLog(@"f6XsCK2YpI7nZTrR38tbqmyzSdHic");
- NSLog(@"8NW1fwaIdxgOm0ZiuY2MXSUth");
- NSLog(@"pU4xQaPKgJ9");
- NSLog(@"mhZV4BpXDueWv2MFSxRJy0lAYTCNK9af5tL");
- NSLog(@"myPfG98awuHzXxCMJIEWcZL");
- NSLog(@"nDx7RMm3GlwjfqUS9Zhc850yeI6zkHWE");
- NSLog(@"fHW02UgmSdzIjQsxJNCB7ZDu");
- NSLog(@"M8boYmWeSOpI5GF9a12CsndwJQL7i3H6UjVAPrT");
- NSLog(@"UsR1Y6tujO8iA0XbNSKGkQ");
- NSLog(@"DG34lVeFir1SEgZJIwOc");
- NSLog(@"Y7PTHyW5X2sezfwqdkLV30KaIiJNgAchb");
- NSLog(@"VpnO8eWYF2Bj7P6GA3vIlZuqiC");
- NSLog(@"7j5fmX0aMkrO46C8zuREchP3BYA2TiqJsvnlG");
- NSLog(@"LACIgGMTP6hkyJdtZHQ8OKcBNzWn5");
- NSLog(@"lyXPonSqskmEhi6vWN");
- }
- -(void)aF4Lkoqf5wx:(UIRegion*) aF4Lkoqf5wx aFAOLI:(UIBezierPath*) aFAOLI aadme6T1DS:(UIMotionEffect*) aadme6T1DS aBNdSrp:(UISwitch*) aBNdSrp awJYS2GF:(UIViewController*) awJYS2GF as13P9wgRN:(UIDocument*) as13P9wgRN axTZYSEO:(UIBarButtonItem*) axTZYSEO axqgno:(UIVisualEffectView*) axqgno aaSAfrR:(UISwitch*) aaSAfrR adDfYCApxL:(UIEdgeInsets*) adDfYCApxL aR3Ueu1pBND:(UIFontWeight*) aR3Ueu1pBND a2v7ubQB:(UIFontWeight*) a2v7ubQB a89axbB:(UIMenuItem*) a89axbB aauHOnDT:(UIAlertView*) aauHOnDT {
- NSLog(@"Cqm5zGc4jyQLDkVHKvEbr");
- NSLog(@"wQyC8IhWXo6BnYPerMNduaRZ");
- NSLog(@"QRaDEYgpqtnikWv");
- NSLog(@"STiJOGuhCsDQZ9qP8RoFeH");
- NSLog(@"1vOzTSWG6Fu9E7JAqQkbRhpL2ZgPVcanNf4xwI");
- NSLog(@"67gd0oanbB");
- NSLog(@"VSk1FPTWymIhYDrbONigG2vM5w0x8Zca");
- NSLog(@"zRtK3AmSIfuox1qW7FwBLZ8P6aUsDv");
- NSLog(@"PyFADsnZelM6KN178v9cWtXJBEi3woYGgfL");
- NSLog(@"p3Ue0QPtfY4EnVgLdWskJaqMri");
- NSLog(@"Fq9abycM3Eh");
- NSLog(@"eSKOIj5XtxzlRB8mMLU");
- NSLog(@"u9yDbN4P2Rvrx");
- NSLog(@"lnIjkgO5BADrCMUbufJ4NV9wvxWLH2KtG3Zay");
- NSLog(@"VrYzUm3aXRs1NbfGDFTECAknLOwJ");
- NSLog(@"jE9CQVwDiPZBsKUSTNvnYl0oeWJFtA65cq3fLGkX");
- NSLog(@"6nYeS9u5GzqZ");
- NSLog(@"kyXH9R8dmLDfaxlTJM");
- NSLog(@"sFISmw18t0HDbfApL5BOgQPu");
- }
- -(void)aXgZsfU5v:(UIBarButtonItem*) aXgZsfU5v aucN1fzM9:(UIEdgeInsets*) aucN1fzM9 aJPTEluLXxb:(UILabel*) aJPTEluLXxb aS3mFgUr:(UIWindow*) aS3mFgUr alLeFBa:(UIBarButtonItem*) alLeFBa aFWHBO1:(UIImage*) aFWHBO1 a8pUPM:(UIApplication*) a8pUPM a013J6R:(UIInputView*) a013J6R aygazr:(UIScreen*) aygazr a3q6KJeA:(UIActivity*) a3q6KJeA ayUBj:(UIImage*) ayUBj aVy3ZsP:(UIFont*) aVy3ZsP az46GsVH10:(UIEdgeInsets*) az46GsVH10 aGR6dYDaxSq:(UIVisualEffectView*) aGR6dYDaxSq {
- NSLog(@"vdLlX8BwYgWCE6emn70U2AckGPSfODjZ3uypVo41");
- NSLog(@"AyCKdDl1B6m93E4GnxMk");
- NSLog(@"71WnzEtI6M");
- NSLog(@"dXJnHWYyp4tUe8kr9TmG0PKEBxbQfjwZ3oIhS1a");
- NSLog(@"bszALx3i6odWfG0kC");
- NSLog(@"OjpFYUnThMoD9HefQ40qES2i5Vcz7KBCNyugL");
- NSLog(@"MyJg5x8ljuRhKUAZkTBYbzSEVDvs");
- NSLog(@"Df0uVhUQXC195oikevYlOxEngBMHwAW");
- NSLog(@"XQZKgFG0tf3cPHW8Y1T6");
- NSLog(@"GYIZiaCuASVkxtcjD");
- NSLog(@"K7fRDjTZPdvU3zLHyupXI8ShQ4GbY");
- NSLog(@"u9YlHC4tqD1X");
- NSLog(@"Lbe7G8QWJFxmjyz0Cf2vBkZEdcp5gVol9qsTND");
- NSLog(@"r2mh4M08XpQ");
- NSLog(@"8mJnPshQS9");
- NSLog(@"1Rd7yZWYUB5AgS9sjOwDaKLxQmpnk4Il");
- NSLog(@"ou406xZVE5pRjCU71hy9zfNnHmDl2QGIsa");
- NSLog(@"p2CZvcx78DLhfd6HwmqbsJMrlP");
- NSLog(@"h2RSA74stYK58JecTMVX3fNwPCvlQjWy1gZB");
- }
- -(void)afpoPH2a:(UIRegion*) afpoPH2a amazGj9:(UIMenuItem*) amazGj9 aXZozFTuvD:(UIRegion*) aXZozFTuvD aRNMhpf7:(UIBezierPath*) aRNMhpf7 aw4pm:(UIButton*) aw4pm aTjdank:(UIBezierPath*) aTjdank aziyCT6jYlZ:(UIWindow*) aziyCT6jYlZ aGrcoCgskYK:(UIViewController*) aGrcoCgskYK ah9B41z:(UIAlertView*) ah9B41z awIWVd45K:(UIView*) awIWVd45K amUICnQlr:(UIActivity*) amUICnQlr aJdmVn4E6t:(UIRegion*) aJdmVn4E6t aT15eR:(UIView*) aT15eR {
- NSLog(@"t8giOPknquhy7GT6BoEJpfclsMd");
- NSLog(@"y0C1DHbvdfgnIxk4RVpG");
- NSLog(@"XDFxP27cRZm9vitqhbop");
- NSLog(@"CEDhXnHg8mBjU4WkbIro9ZGNz");
- NSLog(@"amA5vzEOSHWb6PM4QlCGn3TJF7YZ9LctXK8");
- NSLog(@"1ZUKqmPH9D0YERjd3egsk8lIQGifaBnMor");
- NSLog(@"I5gEPCZw7rQF6OTVa2M0t38bhiGkYDpsUNeS4LX");
- NSLog(@"MLsChAYHk7c8ydQjDwnoRr");
- NSLog(@"SU6DxFPl4czsae1Xq");
- NSLog(@"sEH9M4LwNDUglA6u");
- NSLog(@"70pDS6fUVzHeTY9rht8Gj3m4KdCscJvLFRiX");
- }
- -(void)aupex9h6A:(UIDevice*) aupex9h6A abfT4NMyB6:(UITableView*) abfT4NMyB6 aayBRsj4:(UIUserInterfaceIdiom*) aayBRsj4 aUfYcmLx5:(UIRegion*) aUfYcmLx5 a2fdtQGiW:(UIRegion*) a2fdtQGiW ap6UXQPZaFN:(UIInputView*) ap6UXQPZaFN a8leL:(UIWindow*) a8leL {
- NSLog(@"zwZcph2db0FUrt81S3jOgYxHBs4uTvl");
- NSLog(@"fp6yGVQ0HbWD7NTdB");
- NSLog(@"LaCJNfw7j3TqOuS1Zx");
- NSLog(@"smeBq0JrRMEAdXpftFV9D4I8");
- NSLog(@"uW1sZxe4InP6lwA9jpdDg37EFOTXSL2rGMaCzH");
- NSLog(@"zx25onc7q4YwNHP9Wg8VFd");
- NSLog(@"kdS9DiL3epY1MZ");
- NSLog(@"JbDrnjT0KAvk4o");
- NSLog(@"EhdV0esOK81IW2SYBnAkfcNjlwzRD5tqZQx");
- NSLog(@"b2ihFAupPO");
- NSLog(@"yGoTd61HhfMAwtVU0BpJN5jPbWl7IkFm");
- NSLog(@"2t1pExXblNJYZMRTIGdqj6zhugrvOwVAW4KLeB");
- NSLog(@"BTgps4eChAzYrGcL5U6qbmRwkFf2PDHXO");
- NSLog(@"cAsHFr1uW8L37hiGK");
- NSLog(@"h3PLZw5CzJuMeaVXdfjlqQEm7O8SUogKs");
- NSLog(@"j1GZ7h9EMb5UHCKW3ozDVIrge2v");
- NSLog(@"3SeBVuYxO1npCjtF");
- NSLog(@"2u1aP7tDZo45MlnULi0XmIbRBjw3fGFhc8rp");
- }
- @end
|