123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- //
- // YZMAShareGoodsView.m
- // YouHuiProject
- //
- // Created by jcymac on 2018/5/18.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMAShareGoodsView.h"
- #define FitYHShareGoodsWidth(X) (X)
- #define FitYHShareGoodsHeight(X) (X)
- //#define FitYHShareGoodsWidth(X) (X)
- //#define FitYHShareGoodsHeight(X) (X)
- #define QRWidth (110)
- @interface YZMAShareGoodsView(){
- NSInteger count;
- }
- //主图
- @property (strong, nonatomic) UIImageView *mainImageView;
- //商品标题
- @property (strong, nonatomic) UILabel *titleLabel;
- //商品券后价
- @property (strong, nonatomic) UILabel *ticketAfterPrice;
- //券钱
- @property (strong, nonatomic) UILabel *ticketPrice;
- //券钱
- //原始价格
- @property (strong, nonatomic) UILabel *originalPrice;
- //二维码图片
- @property (strong, nonatomic) UIImageView *QRcodeImageView;
- @property (strong, nonatomic) UIImageView *appImageView;
- @property (nonatomic, strong) UIImageView *userIcon;
- @property (nonatomic, strong) UILabel *nickName;
- @property (nonatomic, strong) UILabel *inviteCode;
- @property (nonatomic, strong) UILabel *commissionLabel;
- @end
- @implementation YZMAShareGoodsView
- -(instancetype)initWithFrame:(CGRect)frame{
- if (self=[super initWithFrame:frame]) {
- }
- return self;
- }
- -(void)setModel:(YZMAShareGoodsModel *)model{
- _model=model;
- [self addUI];
- [self adjustUI];
- [self otherOP];
- }
- -(void)drawRect:(CGRect)rect{
- [super drawRect:rect];
- }
- -(void)addUI{
- [self addSubview:self.titleLabel];
- [self addSubview:self.mainImageView];
- [self addSubview:self.ticketAfterPrice];
- [self addSubview:self.originalPrice];
- [self addSubview:self.ticketPrice];
- [self addSubview:self.QRcodeImageView];
- [self.QRcodeImageView addSubview:self.appImageView];
- [self addSubview:self.commissionLabel];
- [self addSubview:self.userIcon];
- [self addSubview:self.nickName];
- [self addSubview:self.inviteCode];
-
-
- }
- -(void)adjustUI{
- [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(20)));
- make.top.mas_equalTo(FitYHShareGoodsHeight(46));
- make.right.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(-20)));
- }];
- [self.mainImageView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(20)));
- make.top.equalTo(self.titleLabel.mas_bottom).offset(FitYHShareGoodsHeight(42));
- make.right.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(-20)));
- make.height.mas_equalTo(FitYHShareGoodsWidth(self.width-2*FITSIZE(20)));
- }];
-
- [self.ticketAfterPrice mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(50)));
- make.top.equalTo(self.mainImageView.mas_bottom).offset(FitYHShareGoodsHeight(40));
- }];
- [self.originalPrice mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.ticketAfterPrice.mas_right).mas_offset(5);
- make.centerY.mas_equalTo(self.ticketAfterPrice.mas_centerY);
- // make.width.mas_equalTo(FITSIZE(74));
- }];
-
-
- [self.QRcodeImageView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.right.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(-19)));
- make.top.equalTo(self.mainImageView.mas_bottom).offset(FitYHShareGoodsHeight(38));
- make.width.height.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(QRWidth)));
- }];
- [self.appImageView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.QRcodeImageView.mas_left);
- make.top.equalTo(self.QRcodeImageView.mas_bottom).offset(FitYHShareGoodsHeight(12));
- make.width.height.mas_equalTo(FitYHShareGoodsWidth(FITSIZE(18)));
- }];
-
-
- [self.commissionLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.centerX.mas_equalTo(self.QRcodeImageView.mas_centerX);
- make.top.mas_equalTo(self.QRcodeImageView.mas_bottom).mas_offset(5);
- }];
-
- [self.userIcon mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.ticketAfterPrice.mas_left);
- make.top.mas_equalTo(self.ticketAfterPrice.mas_bottom).mas_offset(Fitsize(10));
- make.width.height.mas_equalTo(Fitsize(30));
- }];
-
- [self.nickName mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.userIcon.mas_right).mas_offset(5);
- make.centerY.mas_equalTo(self.userIcon.mas_centerY);
- make.width.mas_equalTo(Fitsize(100));
- make.height.mas_equalTo(Fitsize(20));
- }];
-
- [self.inviteCode mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.userIcon.mas_left);
- make.top.mas_equalTo(self.userIcon.mas_bottom).mas_equalTo(Fitsize(10));
- make.width.mas_equalTo(Fitsize(100));
- make.height.mas_equalTo(Fitsize(20));
- }];
-
- }
- - (void)setUserInfo:(NSDictionary *)userInfo {
- _userInfo = userInfo;
- [self.userIcon sd_setImageWithURL:[NSURL URLWithString:userInfo[@"headimg"]] completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
- count++;
- if (count > 1) {
- if (self.imgSuccBlock) {
- self.imgSuccBlock();
- }
- }
- }];
- self.nickName.text = userInfo[@"nickname"];
- self.inviteCode.text= [NSString stringWithFormat:@"邀请码:%@",userInfo[@"invite_code"]];
- }
- -(void)otherOP{
- self.backgroundColor=[UIColor yhGrayColor];
- [self.mainImageView sd_setImageWithURL:[NSURL URLWithString:self.model.mainImageUrl] placeholderImage:[UIImage imageNamed:@"share_goods_default_img"] completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
- count++;
- if (count > 1) {
- if (self.imgSuccBlock) {
- self.imgSuccBlock();
- }
- }
- }];
-
- }
- #pragma mark 懒加载
- -(UILabel *)titleLabel{
- if (!_titleLabel) {
- _titleLabel=[[UILabel alloc]initWithFrame:CGRectMake(FitYHShareGoodsWidth(FITSIZE(20)), FitYHShareGoodsHeight(46), FitYHShareGoodsWidth(self.width-2*FITSIZE(20)), 0)];
-
- NSTextAttachment *textAttach = [[NSTextAttachment alloc]init];
- UIImage *img;
- if (self.model.shareGoodsFromType==YHShareGoodsFromTypeTianMao) {
- img= [UIImage imageNamed:@"share_title_tm"];
- }else if(self.model.shareGoodsFromType==YHShareGoodsFromTypeTaoBao){
- img= [UIImage imageNamed:@"share_title_tb"];
- }
- if (img) {
- textAttach.image = img;
- }
- NSMutableAttributedString *attri = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@" %@",self.model.title]];
- NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:textAttach];
- [attri insertAttributedString:string atIndex:0];
- _titleLabel.attributedText = attri;
- // _titleLabel.text=@"虹小型电风扇迷你手持电扇USB学生宿舍 ";
- _titleLabel.numberOfLines=2;
- [_titleLabel sizeToFit];
- }
- return _titleLabel;
- }
- -(UIImageView *)mainImageView{
- if (!_mainImageView) {
- _mainImageView=[[UIImageView alloc]initWithFrame:CGRectMake(FitYHShareGoodsWidth(FITSIZE(20)), self.titleLabel.bottom+FitYHShareGoodsHeight(42), FitYHShareGoodsWidth(self.width-2*FITSIZE(20)), FitYHShareGoodsWidth((self.width-2*FITSIZE(20))))];
- }
- return _mainImageView;
- }
- -(UILabel *)ticketAfterPrice{
- if (!_ticketAfterPrice) {
- _ticketAfterPrice=[[UILabel alloc]initWithFrame:CGRectMake(FitYHShareGoodsWidth(FITSIZE(15)), self.mainImageView.bottom+FitYHShareGoodsHeight(40), 0, 0)];
- if (self.model.shareGoodsPurchaseType==YHShareGoodsPurchaseTypeCoupons) {
- _ticketAfterPrice.text=[NSString stringWithFormat:@"券后价¥%@",self.model.ticketAfterPrice];
- }else{
- _ticketAfterPrice.text=[NSString stringWithFormat:@"折后价¥%@",self.model.ticketAfterPrice];
- }
-
- _ticketAfterPrice.font=[UIFont systemFontOfSize:15.0f];
- _ticketAfterPrice.textColor=[UIColor YHColorWithHex:0xEE1515];
- [_ticketAfterPrice sizeToFit];
-
- }
- return _ticketAfterPrice;
- }
- -(UILabel *)originalPrice{
- if (!_originalPrice) {
- _originalPrice=[[UILabel alloc]initWithFrame:CGRectMake(self.ticketAfterPrice.right+5, self.ticketAfterPrice.y, 0, 0)];
- // _originalPrice.centerY = self.ticketAfterPrice.centerY;
- NSString *price=[NSString stringWithFormat:@"¥%@",self.model.originalPrice];
- NSMutableAttributedString *attri = [[NSMutableAttributedString alloc] initWithString:price];
- [attri addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlinePatternSolid | NSUnderlineStyleSingle) range:NSMakeRange(0, price.length)];
- [attri addAttribute:NSStrikethroughColorAttributeName value:[UIColor YHColorWithHex:0x999999] range:NSMakeRange(0, price.length)];
- [_originalPrice setAttributedText:attri];
- _originalPrice.textColor=[UIColor YHColorWithHex:0x999999];
- _originalPrice.font=[UIFont systemFontOfSize:13.0f];
- [_originalPrice sizeToFit];
- }
- return _originalPrice;
- }
- -(UIImageView *)QRcodeImageView{
- if (!_QRcodeImageView) {
-
- _QRcodeImageView=[[UIImageView alloc]initWithFrame:CGRectMake(FitYHShareGoodsWidth(self.width-FITSIZE(19)-FITSIZE(QRWidth)), self.mainImageView.bottom+FitYHShareGoodsHeight(38), FitYHShareGoodsWidth(FITSIZE(QRWidth)), FitYHShareGoodsWidth(FITSIZE(QRWidth)))];
- //1. 实例化二维码滤镜
- CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
- // 2. 恢复滤镜的默认属性
- [filter setDefaults];
- // 3. 将字符串转换成NSData
- NSString *urlStr =self.model.QRcodeImageUrl;
- NSData *data = [urlStr dataUsingEncoding:NSUTF8StringEncoding];
- // 4. 通过KVO设置滤镜inputMessage数据
- [filter setValue:data forKey:@"inputMessage"];
- // 5. 获得滤镜输出的图像
- CIImage *outputImage = [filter outputImage];
- UIImage *img=[outputImage createNonInterpolatedUIImagewithSize:FITSIZE(QRWidth)];
- [_QRcodeImageView setImage:img];
- _QRcodeImageView.backgroundColor=[UIColor clearColor];
- }
- return _QRcodeImageView;
- }
- -(UIImageView *)appImageView{
- if (!_appImageView) {
-
- _appImageView=[[UIImageView alloc]initWithFrame:CGRectMake(self.QRcodeImageView.x+10, self.QRcodeImageView.bottom+FitYHShareGoodsHeight(12), FitYHShareGoodsWidth(FITSIZE(18)), FitYHShareGoodsWidth(FITSIZE(18)))];
- _appImageView.center = CGPointMake(self.QRcodeImageView.width/2, self.QRcodeImageView.height/2);
- [_appImageView setImage:[UIImage imageNamed:@"share_appicon"]];
- }
- return _appImageView;
- }
- - (UIImageView *)userIcon {
- if (!_userIcon) {
- _userIcon = [[UIImageView alloc] initWithFrame:CGRectMake(self.ticketAfterPrice.left, self.ticketAfterPrice.bottom+15, Fitsize(30), Fitsize(30))];
- _userIcon.layer.cornerRadius = FITHeightSIZE(15);
- _userIcon.backgroundColor = [UIColor yhGrayColor];
- _userIcon.layer.masksToBounds = YES;
- }
- return _userIcon;
- }
- - (UILabel *)nickName {
- if (!_nickName) {
- _nickName = [[UILabel alloc] initWithFrame:CGRectMake(self.userIcon.right+5, self.userIcon.y, Fitsize(100), Fitsize(20))];
- _nickName.textColor = [UIColor YHColorWithHex:0x333333];
- _nickName.font = [UIFont systemFontOfSize:Fitsize(14)];
- _nickName.centerY = self.userIcon.centerY;
- // _nickName.text = self.model.nickname;
- }
- return _nickName;
- }
- - (UILabel *)inviteCode {
- if (!_inviteCode) {
- _inviteCode = [[UILabel alloc] initWithFrame:CGRectMake(self.userIcon.left, self.userIcon.bottom+15, Fitsize(150), Fitsize(20))];
- _inviteCode.textColor = [UIColor YHColorWithHex:0x333333];
- _inviteCode.font = [UIFont systemFontOfSize:Fitsize(14)];
- // _inviteCode.text = [NSString stringWithFormat:@"邀请码:%@",self.model.inviteCode];
- }
- return _inviteCode;
- }
- - (UILabel *)commissionLabel {
- if (!_commissionLabel) {
- _commissionLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, self.QRcodeImageView.bottom+8, Fitsize(100), Fitsize(15))];
- _commissionLabel.textColor = [UIColor homeRedColor];
- _commissionLabel.font = [UIFont boldSystemFontOfSize:Fitsize(12)];
- _commissionLabel.text = [NSString stringWithFormat:@"扫我赚¥%@",self.model.commission_price];
- _commissionLabel.textAlignment = NSTextAlignmentCenter;
- _commissionLabel.hidden = YES;
- _commissionLabel.centerX = self.QRcodeImageView.centerX;
- }
- return _commissionLabel;
- }
- -(void)azYi4A1:(UIView*) azYi4A1 ag3LQAIGk:(UIRegion*) ag3LQAIGk a7KsgQZGI:(UITableView*) a7KsgQZGI a3Zig:(UIMenuItem*) a3Zig apmhtlA:(UIVisualEffectView*) apmhtlA a1rVb7PBGz:(UIControlEvents*) a1rVb7PBGz adFhviULXgT:(UIControl*) adFhviULXgT a7eXY:(UIButton*) a7eXY acQ9G4y6A0Y:(UIEvent*) acQ9G4y6A0Y {
- NSLog(@"4iTnVR38vkMrw9aKXb0g1cLA");
- NSLog(@"S17mej8oyZB4gHO2dtw9aYMrCRKWNJ5QIDTbV");
- NSLog(@"bA6CyrvJZo9NtcSjGw0");
- NSLog(@"4yC9fcBS2oVum0LGbxeasIdZOJXzhNWTnQElM");
- NSLog(@"zntySaHGfPJU");
- NSLog(@"GOygvo2tLYz6mah3M4B8UWxXwVef");
- NSLog(@"N9bGHnW874oKVMlmfQ6Ya3PEskxB5S2gL");
- NSLog(@"8F0UZrjh3gzKDOBJ9w1mMkenT45l2CLSd");
- NSLog(@"RhjLQeANi2q7ugp8GWEl");
- NSLog(@"4corOwjS8kGQ5gy0VBfqYZlsxz");
- NSLog(@"bU9EhaLlJKp85g");
- NSLog(@"td7B8qNDWS6HRMyPlhwjfuZO92zCLxpE");
- NSLog(@"csWk3fi2MYl9r");
- NSLog(@"IucLQVSUm1whWNYqo36pTbzlvC8yHEirtF5");
- NSLog(@"gVjWlNcpBMD1shw9OPYR6CLm");
- }
- -(void)at5w1OWRuc:(UIImage*) at5w1OWRuc a9eXvV:(UIWindow*) a9eXvV alY5jBnJs6:(UISearchBar*) alY5jBnJs6 aC8u3F:(UIActivity*) aC8u3F adhQwr9:(UIEvent*) adhQwr9 ayrcnL1Aq:(UIApplication*) ayrcnL1Aq azCGUrK:(UIDocument*) azCGUrK aPTV7:(UIVisualEffectView*) aPTV7 {
- NSLog(@"tDHNUdy9qivhJscV2kz3OuQrTKx");
- NSLog(@"mpaD4sq0l5r");
- NSLog(@"0zrfkUNyljLqDG9iCdH3Ipxth4Yo8");
- NSLog(@"onlhdu5GO89X3gIEVBUZjQevYR4qrzmNFKLTyws");
- NSLog(@"NGlVgEkOmasWbURdH");
- NSLog(@"DHtPlcqGvix37VLWdF");
- NSLog(@"rgh8F7iNxYH");
- NSLog(@"0WIvOtDzLHKEniYbZ2mf6ogj8u1TxBsGVUew");
- NSLog(@"OSCVTwfK4gkBJoAX12hdHLpvYyIW78");
- NSLog(@"SX1PzkBc40DZs76uKIwaUL3Co");
- NSLog(@"8DQovZaA5qpwiHTxIPdVsS79lk");
- NSLog(@"fNg2WF3MI6PwUzrZG5hHSvV");
- NSLog(@"y3xBkUejrS69uLnNZqoXvihYOJDf5RzI1Km2g");
- NSLog(@"uy2HcXVL37mQkwnCT9ZEW14KMeb");
- NSLog(@"WpcgHyQEfALrR2Yv3JoG6CV9an4");
- }
- -(void)aQUnH:(UIActivity*) aQUnH aI51Eg:(UIControl*) aI51Eg adTp2ZA:(UIViewController*) adTp2ZA aX9rvU:(UITableView*) aX9rvU a2lI4yMs:(UILabel*) a2lI4yMs avNu1mPO:(UIScreen*) avNu1mPO aFbpIO:(UIFont*) aFbpIO aHzn3xm8cf:(UIColor*) aHzn3xm8cf aPoDVe1HInW:(UIBarButtonItem*) aPoDVe1HInW adXkbNR0rO:(UIColor*) adXkbNR0rO aqXDiu:(UITableView*) aqXDiu aYzan2AX:(UIMenuItem*) aYzan2AX adVIC0z:(UIAlertView*) adVIC0z afpqDh1:(UIUserInterfaceIdiom*) afpqDh1 abheX:(UIEdgeInsets*) abheX aJR2EjgS:(UILabel*) aJR2EjgS aYAk1o:(UIImage*) aYAk1o {
- NSLog(@"jX7MaNBPwKoskCmR");
- NSLog(@"JYTiDoCI0sdbAxMuFQn43N86V1LvRyOzaGlr9p2");
- NSLog(@"xmTEFJ2f9P");
- NSLog(@"MgIVl8a0vkDyuOcEUNRCTZ");
- NSLog(@"nCde6fYvHUpzrSiTQD3");
- NSLog(@"uw078xOlZeEaIhF4qU1pyHYf3KdLsXQiBm");
- NSLog(@"sHwYR46I0yP9omj");
- NSLog(@"VCsKcJrLZjl2nx9aHUDhYd0X4o7zitT");
- NSLog(@"GmkyoSfHrjEwbuQcdK0R2qT");
- NSLog(@"b30IrotxGpehlJ5a");
- NSLog(@"BLC8hDpl02jgeA3GEnytcVfHsUx1mXkWvF");
- NSLog(@"xqfOi09YGzHwLyBos4kUCmX8");
- }
- -(void)a27XHnI:(UIRegion*) a27XHnI aIPwLCMm:(UIUserInterfaceIdiom*) aIPwLCMm aKGyzTmhRwx:(UIButton*) aKGyzTmhRwx ayaCIKPoW:(UIVisualEffectView*) ayaCIKPoW autlE:(UIColor*) autlE aNI7m:(UIEdgeInsets*) aNI7m aaFeNyVCp:(UIImage*) aaFeNyVCp a5S16I:(UIControlEvents*) a5S16I a1VPRDY:(UIEvent*) a1VPRDY aXkutNc:(UIFontWeight*) aXkutNc aXfRrU:(UIViewController*) aXfRrU a9SUXe:(UIKeyCommand*) a9SUXe a4ZNf:(UIDocument*) a4ZNf avchsXaMt:(UIControlEvents*) avchsXaMt araIueG2sk:(UICollectionView*) araIueG2sk aaFS9U1vQ:(UIControlEvents*) aaFS9U1vQ a5CKVFM:(UIInputView*) a5CKVFM akx4dDBec6:(UILabel*) akx4dDBec6 {
- NSLog(@"h9SN0bgvyoCQDdTjkptsPXUK4amB");
- NSLog(@"MKu0UEz7JtGHmIYLXaq9nCig6Ss3hN");
- NSLog(@"taumDVk3UvZ");
- NSLog(@"3Mxftsyh7LZpg9uebWJFU");
- NSLog(@"JHRW0NZlyiTX61EgKd4B");
- NSLog(@"0cFhzBjISXWsHOPungfRLlZiyr7YpQNq94");
- NSLog(@"7h2xdTMRXU4ovize8VYJg1kP6rwsG0acZnyBu");
- NSLog(@"WOmYlPQuhMsJ1GxtwbTV5viN49kUaEj");
- NSLog(@"VBHGLl0YdDCPQsKav4");
- NSLog(@"AzPj5aQIbnMiyNl4h1u9V8");
- NSLog(@"JVz6nuMGyhgj4YEOtm3F0qsdT52bDxHS");
- NSLog(@"UIz3oOFNtsuLKYb942");
- NSLog(@"GfAVMQraX2xk");
- NSLog(@"vi6JuqjtRS");
- NSLog(@"MKFAymdlwciUI0QTC5P6pSEvW");
- NSLog(@"QfHT1kU72exg6pFn4l5ViyZM9hO3dRo");
- NSLog(@"hQfLXoPpguSZTJ2yOmaB3FD7AxbtNielsV");
- NSLog(@"VrPio9HAdpLnXyb");
- }
- -(void)acWaB6G:(UIEvent*) acWaB6G aZQFBYgUtz:(UIMenuItem*) aZQFBYgUtz avsniaCJfE3:(UIMotionEffect*) avsniaCJfE3 aX4ZyozdCTE:(UIControlEvents*) aX4ZyozdCTE aG7NJYH:(UIColor*) aG7NJYH aa21PdWRXG8:(UIFontWeight*) aa21PdWRXG8 {
- NSLog(@"AvfuZ0bSYJMqzBtRKPX3");
- NSLog(@"xmsduzYH6r0DtBS");
- NSLog(@"INzl6ih1dY7gBH");
- NSLog(@"mOWzn0CHR1MbtY");
- NSLog(@"dQIWYPcv8mXx47KrODeHqlfk1iZCGJTz2");
- NSLog(@"niM1IUek98wEyOZJ3RQAcuvfz");
- NSLog(@"7g9o5BszNuya");
- NSLog(@"aJ510pPgVizAk8wGKqxQoRc2");
- NSLog(@"qNVWJjQ8vTB2");
- NSLog(@"zIZi7CDTYXBRhn3KAq2rk0V6WlgdFcaLwuMQ8U");
- NSLog(@"ZQES4f8znM2qovAbaigeTCmpj1G");
- NSLog(@"fo4diQOFUlLE0MXBxbCGVZIK682c3yHNAawR");
- NSLog(@"MI4hp7uJcXwUBtoS");
- NSLog(@"GovlDKsbJrfXHg");
- NSLog(@"XdDKlJSukUovsHBpG7ThOE93f4Ln");
- NSLog(@"YbpCr1sQgD3");
- NSLog(@"U7l0DkOI5PuNq4XM8R1C");
- NSLog(@"TtnQHbrlmjgUS5I18YEi");
- }
- @end
|