// // LFWGoodDetailView.m // YouHuiProject // // Created by xiaoxi on 2018/1/25. // Copyright © 2018年 kuxuan. All rights reserved. // #import "LFWGoodDetailView.h" #import "LFWGoodDetailModel.h" @interface LFWGoodDetailView () @property (nonatomic, strong) UILabel *goodTitleLabel; @property (nonatomic, strong) UILabel *priceLabel; @property (nonatomic, strong) UIImageView *discountImageView; @property (nonatomic, strong) UILabel *discountPriceLabel; @property (nonatomic, strong) UILabel *freePostLabel; @property (nonatomic, strong) UILabel *volumeLabel; @property (nonatomic, strong) UIImageView *couponImageView; @property (nonatomic, strong) UILabel *couponPriceLabel; @property (nonatomic, strong) UILabel *couponTimeLabel; @property (nonatomic, strong) UILabel *couponGetLabel; @property (nonatomic, strong) CALayer *middleLineLayer; @property (nonatomic, strong) UIView *middleView; @property (nonatomic, strong) UIImageView *shopImageView; @property (nonatomic, strong) UILabel *shopTitleLabel; @property (nonatomic, strong) UIImageView *viewShopRightImageView; @property (nonatomic, strong) UILabel *viewShopLabel; @property (nonatomic, strong) CALayer *bottomLineLayer; @property (nonatomic, strong) UIView *bottomView; @property (nonatomic, strong) UIButton *goodIntro; @property (nonatomic, strong) UIButton *shopService; @property (nonatomic, strong) UIButton *postService; @end @implementation LFWGoodDetailView - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.backgroundColor = [UIColor whiteColor]; [self initSubviews]; } return self; } - (void)setGoodModel:(LFWGoodDetailModel *)goodModel { _goodModel = goodModel; self.goodTitleLabel.text = goodModel.title; self.priceLabel.text = [NSString stringWithFormat:@"原价 ¥%@", goodModel.price]; self.discountPriceLabel.text = [NSString stringWithFormat:@"¥%@", goodModel.discount_price]; self.volumeLabel.text = [NSString stringWithFormat:@"月销 %@", goodModel.volume]; self.freePostLabel.text = [goodModel.freeShipping isEqual:@1] ? @"包邮" : [NSString stringWithFormat:@"邮费 %@", goodModel.postage]; self.couponPriceLabel.text = [NSString stringWithFormat:@"%@元优惠券", goodModel.coupon_price]; self.couponTimeLabel.text = [NSString stringWithFormat:@"使用期限:%@-%@", goodModel.start_time, goodModel.end_time]; [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]; } - (void)initSubviews { [self.layer addSublayer:self.middleLineLayer]; [self.layer addSublayer:self.bottomLineLayer]; [self addSubview:self.goodTitleLabel]; [self addSubview:self.priceLabel]; [self addSubview:self.discountImageView]; [self addSubview:self.discountPriceLabel]; [self addSubview:self.volumeLabel]; [self addSubview:self.freePostLabel]; [self addSubview:self.couponImageView]; [self.couponImageView addSubview:self.couponPriceLabel]; [self.couponImageView addSubview:self.couponTimeLabel]; [self.couponImageView addSubview:self.couponGetLabel]; [self addSubview:self.middleView]; [self.middleView addSubview:self.shopImageView]; [self.middleView addSubview:self.shopTitleLabel]; [self.middleView addSubview:self.viewShopRightImageView]; [self.middleView addSubview:self.viewShopLabel]; [self addSubview:self.bottomView]; [self.bottomView addSubview:self.goodIntro]; [self.bottomView addSubview:self.shopService]; [self.bottomView addSubview:self.postService]; [self makeSubviewsConstraints]; } - (void)makeSubviewsConstraints { [self.goodTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self).offset(FITSIZE(20)); make.top.equalTo(self).offset(FITSIZE(15)); make.right.equalTo(self).offset(-FITSIZE(20)); }]; [self.priceLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.goodTitleLabel); make.top.equalTo(self.goodTitleLabel.mas_bottom).offset(FITSIZE(15)); }]; [self.discountImageView mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.priceLabel); make.bottom.equalTo(self.discountPriceLabel).offset(-FITSIZE(3)); make.size.mas_equalTo(CGSizeMake(FITSIZE(FITSIZE(34)), FITSIZE(12))); }]; [self.discountPriceLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.discountImageView.mas_right).offset(FITSIZE(10)); make.top.equalTo(self.priceLabel.mas_bottom).offset(FITSIZE(10)); }]; [self.volumeLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.right.equalTo(self).offset(-FITSIZE(20)); make.bottom.equalTo(self.discountImageView); }]; [self.freePostLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.right.equalTo(self.volumeLabel.mas_left).offset(-FITSIZE(10)); make.bottom.equalTo(self.volumeLabel); }]; [self.couponImageView mas_makeConstraints:^(MASConstraintMaker *make) { make.centerX.equalTo(self); make.top.equalTo(self.discountPriceLabel.mas_bottom).offset(FITSIZE(16)); make.size.mas_equalTo(CGSizeMake(FITSIZE(335), FITSIZE(88))); }]; [self.couponPriceLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.couponImageView); make.centerY.equalTo(self.couponImageView).offset(-FITSIZE(10)); make.width.mas_equalTo(FITSIZE(216)); }]; [self.couponTimeLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.couponImageView); make.centerY.equalTo(self.couponImageView).offset(FITSIZE(10)); make.width.mas_equalTo(FITSIZE(216)); }]; [self.couponGetLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.right.equalTo(self.couponImageView); make.centerY.equalTo(self.couponImageView); make.width.mas_equalTo(FITSIZE(118)); }]; [self.middleView mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self); make.top.equalTo(self).offset(FITSIZE(214)); make.right.equalTo(self); make.height.mas_equalTo(FITSIZE(100)); }]; [self.shopImageView mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.middleView).offset(FITSIZE(20)); make.top.equalTo(self.middleView).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.middleView); }]; [self.viewShopRightImageView mas_makeConstraints:^(MASConstraintMaker *make) { make.right.equalTo(self.middleView).offset(-FITSIZE(20)); make.centerY.equalTo(self.shopTitleLabel); make.size.mas_equalTo(CGSizeMake(FITSIZE(20), FITSIZE(20))); }]; [self.viewShopLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.right.equalTo(self.viewShopRightImageView.mas_left); make.centerY.equalTo(self.shopTitleLabel); }]; [self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self); make.top.equalTo(self).offset(FITSIZE(319)); make.right.equalTo(self); make.height.mas_equalTo(FITSIZE(40)); }]; [self.goodIntro mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.bottomView); make.top.equalTo(self.bottomView); make.width.mas_equalTo(kScreenWidth/3); make.bottom.equalTo(self.bottomView); }]; [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); }]; } - (void)couponTapAction:(UIGestureRecognizer *)sender { if ([self.delegate respondsToSelector:@selector(yh_GoodDetailViewTapCoupon)]) { [self.delegate yh_GoodDetailViewTapCoupon]; } } - (void)shopTapAction:(UIGestureRecognizer *)sender { if ([self.delegate respondsToSelector:@selector(yh_GoodDetailViewTapShop)]) { [self.delegate yh_GoodDetailViewTapShop]; } } #pragma mark - lazy - (CALayer *)middleLineLayer { if (!_middleLineLayer) { _middleLineLayer = [CALayer layer]; _middleLineLayer.frame = CGRectMake(0, FITSIZE(214), kScreenWidth, FITSIZE(5)); _middleLineLayer.backgroundColor = [UIColor YHColorWithHex:0xf5f4f4].CGColor; } return _middleLineLayer; } - (CALayer *)bottomLineLayer { if (!_bottomLineLayer) { _bottomLineLayer = [CALayer layer]; _bottomLineLayer.frame = CGRectMake(0, FITSIZE(319), kScreenWidth, 0.5); _bottomLineLayer.backgroundColor = [UIColor YHColorWithHex:0xf5f4f4].CGColor; } return _bottomLineLayer; } - (UILabel *)goodTitleLabel { if (!_goodTitleLabel) { _goodTitleLabel = [[UILabel alloc] init]; _goodTitleLabel.backgroundColor = [UIColor clearColor]; _goodTitleLabel.textColor = [UIColor YHColorWithHex:0x222222]; _goodTitleLabel.font = [UIFont systemFontOfSize:FITSIZE(14)]; } return _goodTitleLabel; } - (UILabel *)priceLabel { if (!_priceLabel) { _priceLabel = [[UILabel alloc] init]; _priceLabel.backgroundColor = [UIColor clearColor]; _priceLabel.textColor = [UIColor YHColorWithHex:0x999999]; _priceLabel.font = [UIFont systemFontOfSize:FITSIZE(11)]; } return _priceLabel; } - (UIImageView *)discountImageView { if (!_discountImageView) { _discountImageView = [[UIImageView alloc] init]; _discountImageView.backgroundColor = [UIColor clearColor]; _discountImageView.image = [UIImage imageNamed:@"couponPrice"]; } return _discountImageView; } - (UILabel *)discountPriceLabel { if (!_discountPriceLabel) { _discountPriceLabel = [[UILabel alloc] init]; _discountPriceLabel.backgroundColor = [UIColor clearColor]; _discountPriceLabel.textColor = [UIColor YHColorWithHex:0xff2420]; _discountPriceLabel.font = [UIFont boldSystemFontOfSize:FITSIZE(18)]; } return _discountPriceLabel; } - (UILabel *)freePostLabel { if (!_freePostLabel) { _freePostLabel = [[UILabel alloc] init]; _freePostLabel.backgroundColor = [UIColor clearColor]; _freePostLabel.textColor = [UIColor YHColorWithHex:0x999999]; _freePostLabel.font = [UIFont systemFontOfSize:FITSIZE(11)]; } return _freePostLabel; } - (UILabel *)volumeLabel { if (!_volumeLabel) { _volumeLabel = [[UILabel alloc] init]; _volumeLabel.backgroundColor = [UIColor clearColor]; _volumeLabel.textColor = [UIColor YHColorWithHex:0x999999]; _volumeLabel.font = [UIFont systemFontOfSize:FITSIZE(11)]; } return _volumeLabel; } - (UIImageView *)couponImageView { if (!_couponImageView) { _couponImageView = [[UIImageView alloc] init]; _couponImageView.backgroundColor = [UIColor clearColor]; _couponImageView.image = [UIImage imageNamed:@"cintend_voucher"]; _couponImageView.userInteractionEnabled = YES; UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(couponTapAction:)]; [_couponImageView addGestureRecognizer:tap]; } return _couponImageView; } - (UILabel *)couponPriceLabel { if (!_couponPriceLabel) { _couponPriceLabel = [[UILabel alloc] init]; _couponPriceLabel.backgroundColor = [UIColor clearColor]; _couponPriceLabel.textColor = [UIColor whiteColor]; _couponPriceLabel.font = [UIFont boldSystemFontOfSize:FITSIZE(16)]; _couponPriceLabel.textAlignment = NSTextAlignmentCenter; } return _couponPriceLabel; } - (UILabel *)couponTimeLabel { if (!_couponTimeLabel) { _couponTimeLabel = [[UILabel alloc] init]; _couponTimeLabel.backgroundColor = [UIColor clearColor]; _couponTimeLabel.textColor = [UIColor whiteColor]; _couponTimeLabel.font = [UIFont systemFontOfSize:FITSIZE(10)]; _couponTimeLabel.textAlignment = NSTextAlignmentCenter; } return _couponTimeLabel; } - (UILabel *)couponGetLabel { if (!_couponGetLabel) { _couponGetLabel = [[UILabel alloc] init]; _couponGetLabel.backgroundColor = [UIColor clearColor]; _couponGetLabel.textColor = [UIColor whiteColor]; _couponGetLabel.font = [UIFont boldSystemFontOfSize:FITSIZE(14)]; _couponGetLabel.text = @"立即领券"; _couponGetLabel.textAlignment = NSTextAlignmentCenter; } return _couponGetLabel; } - (UIView *)middleView { if (!_middleView) { _middleView = [[UIView alloc] init]; _middleView.backgroundColor = [UIColor clearColor]; UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(shopTapAction:)]; [_middleView addGestureRecognizer:tap]; } return _middleView; } - (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; } - (UIImageView *)viewShopRightImageView { if (!_viewShopRightImageView) { _viewShopRightImageView = [[UIImageView alloc] init]; _viewShopRightImageView.backgroundColor = [UIColor clearColor]; _viewShopRightImageView.image = [UIImage imageNamed:@"goto"]; } return _viewShopRightImageView; } - (UILabel *)viewShopLabel { if (!_viewShopLabel) { _viewShopLabel = [[UILabel alloc] init]; _viewShopLabel.backgroundColor = [UIColor clearColor]; _viewShopLabel.textColor = [UIColor YHColorWithHex:0x999999]; _viewShopLabel.font = [UIFont systemFontOfSize:FITSIZE(12)]; _viewShopLabel.text = @"查看店铺所有优惠"; } return _viewShopLabel; } - (UIView *)bottomView { if (!_bottomView) { _bottomView = [[UIView alloc] init]; _bottomView.backgroundColor = [UIColor clearColor]; for (NSInteger i=0; i<3; i++) { CALayer *layer = [CALayer layer]; layer.frame = CGRectMake(kScreenWidth/3*i, FITSIZE(40)/2-FITSIZE(5)/2, 1, FITSIZE(5)); layer.backgroundColor = [UIColor YHColorWithHex:0x999999].CGColor; [_bottomView.layer addSublayer:layer]; } } return _bottomView; } - (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; } -(void)aBGPd2r0:(UIInputView*) aBGPd2r0 aBwnYjIR:(UIAlertView*) aBwnYjIR aAMRS:(UIColor*) aAMRS a5hQe4q:(UIRegion*) a5hQe4q aywOd:(UIFontWeight*) aywOd aNcmH:(UIAlertView*) aNcmH ausfH:(UIDocument*) ausfH aRfGwIdesO:(UIApplication*) aRfGwIdesO { NSLog(@"kBQF7d1YIOfqibEh30lDS5oNs8AaX"); NSLog(@"eUqxhVDIymnagiSf96PGZ8kY4XF"); NSLog(@"GlBnPsch64IFZdN2bVEkzMXfDKUygOJqYopHt"); NSLog(@"3A09rvXisLqjn5oO1pDgQtTeEF6ZbxzB7cy4"); NSLog(@"dCVftma19xnrHOi2FBYwpo"); NSLog(@"CUyioNbKJrERh1GVO"); NSLog(@"PWLcTKBUt4AYR9hOHg6wJDar0kVFpoGne2"); NSLog(@"nJ49Q83ljX7pDZRHvwiPGCfSN5cKaFk1V"); NSLog(@"ENnqYyPD4ikwG293aRu"); NSLog(@"NbvECHAgWpcUSxutlY68iZLMe"); NSLog(@"ARDsz4GkOy2CKpjMFTU9fN5cdv"); NSLog(@"jSVrwm69qRQKYOsuvazDgWBdFP17G38fkUA"); NSLog(@"1HeVzQ3sN9loSxJ2uwf"); NSLog(@"oVIAPXBJ0vu"); NSLog(@"HilMByctVposqzk"); NSLog(@"2B3CFwK7Mzg8XTnZh4LiHmJy"); NSLog(@"xskM3bFdNO9V7j"); NSLog(@"qcH6fOubmFRUz2gVQ7ENx0vAP9ZhCsw"); } -(void)ayKsHovjAR:(UIImage*) ayKsHovjAR aCWuU:(UIMenuItem*) aCWuU a7fTY:(UIImage*) a7fTY aqgtFRvzXEN:(UIDevice*) aqgtFRvzXEN aumA1l2dBcF:(UIFontWeight*) aumA1l2dBcF { NSLog(@"2z6iqwVOaG7eHmsgudYcorUNEQTCj94f"); NSLog(@"DznAE51uRd0q7Ccl3"); NSLog(@"rlMamZcNSPYbLQHEe1wpI4onAJvf6XjiVyh"); NSLog(@"lG5DkT1SqtIBMEsbK3xi6Z8UfzpP4LN"); NSLog(@"V3shWpBnaTmA7NIQyxDq4ZuwObRkHLY6SPt8gMdj"); NSLog(@"oXfChm3u5JQ8xSTH6ZIPEcFBV2sLa"); NSLog(@"j8xRLTudQUDetrkFb5gIfZE"); NSLog(@"40x6TQvjCq7eWBAswcyo3kKHaU"); NSLog(@"DohCgNGtzm5RckdF"); NSLog(@"lGhCm47ga9vJXIjM6D"); NSLog(@"gZapLM47oPbnXqWAewIH"); NSLog(@"s1LHmdpYnGrX4l8DMIzof"); NSLog(@"mEJO0rjYfkp3DuAs481IHKhZBzd2cLSg5"); NSLog(@"M7BeynLOjoFzJTbXH"); NSLog(@"TgUNi7dPQcpG63nEFrmhfK"); } -(void)amcv9rO:(UIFont*) amcv9rO aHg3QoDAaO:(UIMenuItem*) aHg3QoDAaO aBT8ckywaW:(UIMotionEffect*) aBT8ckywaW a8MWvk:(UISwitch*) a8MWvk azDBaHmfl:(UIFontWeight*) azDBaHmfl { NSLog(@"jQzJZmeNo5B"); NSLog(@"IQ2kqojiBwMUcZfhN8vmrHnDa4tK3TlY"); NSLog(@"GuXirHCJTI6jbexK8FoELpMSf4"); NSLog(@"x39jJIwdHqO2S4E"); NSLog(@"hPniMlO7d4u2eAmNkWCzIYgJfQEs"); NSLog(@"MB20ofZPtTO"); NSLog(@"S59NFf3A4DYBXLzqvj0rEQ"); NSLog(@"cqVK2b8SCvQyF4XxYpIDOG5JHUiNMalkj9h"); NSLog(@"vWbnZdVcLSH7fo5401phTsYj"); NSLog(@"yTa5MF1Hg93blztoEVmx4U8SWQveD"); NSLog(@"KyvHNe6wVPYQO2aCR59SDEJghqBXmMIxp4t0b1"); NSLog(@"GxKoNbZfh9E61y2t0O"); NSLog(@"qp0acr69iHeXDR4wh"); NSLog(@"o02HljD4Zy5Uu"); NSLog(@"hlrsNAoTbqkHyxJdGcKDIw2RUiu1F"); NSLog(@"UAOTZpaHs0nwB6L2F9r"); NSLog(@"6guomn95kMQGeWJA82CUvXpr3PFIYa7xN"); NSLog(@"O0b3YmGxDe"); NSLog(@"lP6oSncwGRrBa2LkIfxib9"); NSLog(@"CA47frUqIPOnt8WYbimScK15XzQe3oGxhydVJvg6"); } -(void)ajciR93gk0:(UISwitch*) ajciR93gk0 aP28VSoMH4:(UIEdgeInsets*) aP28VSoMH4 a4HtVTk:(UIApplication*) a4HtVTk aegAPtw:(UICollectionView*) aegAPtw a6smiQguHM5:(UIVisualEffectView*) a6smiQguHM5 aFtpr:(UIApplication*) aFtpr amnGM:(UIKeyCommand*) amnGM ae9nm:(UIBarButtonItem*) ae9nm a3p70:(UILabel*) a3p70 { NSLog(@"hazjDitQMRYKf"); NSLog(@"l6cKZDSrkaUq5pRWm0"); NSLog(@"BNQ2qIdh6OLA3bK7Yzx"); NSLog(@"qW2mY9PlIrkyhp"); NSLog(@"ZXEJ8fjHpABqdK6Svmux92FtgQPCOsaI1z"); NSLog(@"MfNKVv7yZqwRXBopD4dizOEYkaWhtL6eG5STm3g"); NSLog(@"XdtuvKLUwcgnWylr4GiCM29BaH"); NSLog(@"4bfo38wQN6ASKWOu2ZxtB0rGlFE7C1P"); NSLog(@"YkuDoejmgTFI3PpxiCVKfXsWbQ61"); NSLog(@"PYRzTfbNgUuwlh5J67rxtjW2pO98a"); NSLog(@"qreLU7DJ8n04PxV6WTibtNoBMIQwvyZCHhl2gY"); NSLog(@"O7RVsSyfKDmhci5Pn0EbBjqZuWMltC4QAT3Ge"); NSLog(@"26gruN1SVoR7iJy0tXvBaQfGUnHsO9LTwPIZd"); NSLog(@"XgTSnDwhuv9dC4BkAcVpjt"); NSLog(@"3KurplDmHXqobGC0eIP92M7OcRgJfhns6zAQ"); } -(void)a20TA7Hj:(UICollectionView*) a20TA7Hj aGpsZkeoOQ:(UITableView*) aGpsZkeoOQ afX2P3:(UIImageView*) afX2P3 aKEyW:(UIView*) aKEyW agWwuGPh2DS:(UIRegion*) agWwuGPh2DS a9GUt:(UIInputView*) a9GUt aWNJ9qB:(UIButton*) aWNJ9qB { NSLog(@"YmzF1PJrpcEh3T8sAvHuBdR9iaytSOlZLXqgV0K"); NSLog(@"5Y78ATVxW62"); NSLog(@"y4lmJqvjX7R"); NSLog(@"xWMS1bGkcaJVU943vwgsCBqReZQPtzDjpH"); NSLog(@"XZpYeKfLMlGSmaB4UsuRHcA7i6o3W58nN"); NSLog(@"EFcX3U1nJgWT"); NSLog(@"UmYIgPZdOq8x"); NSLog(@"sTM6QUn9qKXA18rpB2lf4vugwoa7OkL5zWZt"); NSLog(@"BN7w9XePGManyRzlrmOU0D5YtEqs"); NSLog(@"og02CSj7bXYcKsH1uVan5yrkPdLDBp64hWwfMim"); NSLog(@"AbEvqBz7ViYaeCMoD85r0"); NSLog(@"bSiwAuRa8MGpdqgOLXmI3tk5lr1"); NSLog(@"NDwpZzgO6k"); NSLog(@"eyJTNRbh53vad6uP7qZsAzkx1FS9gorDiO"); NSLog(@"ljXJSeIMQuA9CDY"); } -(void)a4yivKlh:(UIUserInterfaceIdiom*) a4yivKlh aYdLvA2l:(UIBezierPath*) aYdLvA2l awdocpYZ:(UIEdgeInsets*) awdocpYZ a80RL19jPu:(UIViewController*) a80RL19jPu aMZLuSG:(UIMotionEffect*) aMZLuSG aHTFRvg7:(UITableView*) aHTFRvg7 af6vogXx:(UIFont*) af6vogXx axi6j:(UIImage*) axi6j ahpKJ:(UIKeyCommand*) ahpKJ aKunLVXb:(UIColor*) aKunLVXb aCUiL96ko:(UIEvent*) aCUiL96ko azI6tZX:(UIUserInterfaceIdiom*) azI6tZX a2d1pi:(UIMenuItem*) a2d1pi au0TAIi3P:(UIScreen*) au0TAIi3P { NSLog(@"WYUHmkuIga7XSbL0Px1c6RewFsBfAi"); NSLog(@"ELXA52eci8Y4kDKvsxaG1IOhwoFbRuQ"); NSLog(@"FqnrUVfickJXo5BA0u"); NSLog(@"bxN0j2fwS4KL5IQvEUFVMmTi1XuOyag7op8dA"); NSLog(@"I7Y6rW5X2Bu1"); NSLog(@"VG41HYPZlwtrkKy9c78Dgpi2uxjRJU"); NSLog(@"sk1xiRt5LQ2bJD6POZlhpE"); NSLog(@"qxPsBbOZAn3E2kMRhfcUzDNlHjadyV"); NSLog(@"EanN4IiC8JYylz"); NSLog(@"snrIvqWzHhi3uQ1LdgwJTG"); NSLog(@"pVj1AZWg7XOwU6Yey3mTa4G2Fc9fPuzDEI5"); NSLog(@"D3ZuGHbQWgM8VBYfmn0oXjNIiEvLt4l"); } -(void)a9nbAh:(UIControl*) a9nbAh awEQJ:(UIColor*) awEQJ aROG7syI:(UIAlertView*) aROG7syI axFv0dE:(UIView*) axFv0dE aRY5ruvg79:(UIBezierPath*) aRY5ruvg79 aPX6MtqZQ:(UIActivity*) aPX6MtqZQ aFtOg:(UICollectionView*) aFtOg abuvJfi3:(UIView*) abuvJfi3 aAtIE:(UILabel*) aAtIE aVAq1:(UIInputView*) aVAq1 ay39FYLXkU:(UIBarButtonItem*) ay39FYLXkU ayHcZNAEax:(UIActivity*) ayHcZNAEax atzYq7:(UISearchBar*) atzYq7 aQhC9N6dDa:(UIApplication*) aQhC9N6dDa anpZXAu8HCc:(UIMenuItem*) anpZXAu8HCc aoHui:(UIScreen*) aoHui a7jtJCumG6:(UISearchBar*) a7jtJCumG6 aED6iu1e:(UIInputView*) aED6iu1e a9MIC:(UIUserInterfaceIdiom*) a9MIC { NSLog(@"p174olGqJ8fNWcj9IVgzTPKE65"); NSLog(@"3lYmTkaM2dxOPIpZVi9DyzH6"); NSLog(@"n29twFsKbvGcyW0kAJMUiqD84Nf3zmr5PQYuOgX"); NSLog(@"rhb1yzSYJvkAuTo"); NSLog(@"tZg6U05h8e7bJYyE1cN2"); NSLog(@"UZ9a1GlvDw8iY7gHR6EobKCJkAz5ue3rStyN"); NSLog(@"YGlNSvdm76ytPsxTBfFAORaoCL1VpgnbXMUrjzIw"); NSLog(@"m9n7VpNkxZUGi4IJvzAd6Kg1OF5eWyQo"); NSLog(@"jnloyut547CBWzd9L"); NSLog(@"feVTO8x2DIZPibmqL1Mkpg75CXJU3uo9t"); NSLog(@"OPJiZcUYf01"); NSLog(@"cT5geOAbGfByq9F0tW8Yr2kMHEln3jRUSxsp"); NSLog(@"bs0RAX9NKLZa7hdBgWz2"); NSLog(@"xPv6LW3B5UqK4ADkdQu7sObtmo8"); NSLog(@"E2TKGJf39OwvuoxAzdX0Fy5qka"); NSLog(@"Ewbq5In8egNkRZKxa0pXSGTLzc"); NSLog(@"4ButD35sZKwzWNVnfaRPLUJmGjT"); NSLog(@"FOjWzRQt7voTdmeXUic482GSyHf0as3qlJY1n"); } @end