123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- //
- // LZMCollectionTicketCell.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/24.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMCollectionTicketCell.h"
- @interface LZMCollectionTicketCell ()
- @property (nonatomic, strong) UIImageView *iconView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *endDateLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- @property (nonatomic, strong) UILabel *disPriceLabel;
- @property (nonatomic, strong) UIImageView *ticketImg;
- @property (nonatomic, strong) UILabel *ticketLabel;
- @property (nonatomic, strong) UILabel *outTimeLabel;
- @property (nonatomic, strong) UIButton *sameButton;
- @end
- @implementation LZMCollectionTicketCell
- + (instancetype)cellWithTableView:(UITableView *)tableView {
- static NSString *cellID = nil;
- cellID = NSStringFromClass([self class]);
- LZMCollectionTicketCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
- if (!cell) {
- cell = [[LZMCollectionTicketCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
- }
- return cell;
-
- }
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
- if (self) {
- [self initSubView];
- }
- return self;
- }
- - (void)initSubView {
- [self.contentView addSubview:self.iconView];
- [self.contentView addSubview:self.titleLabel];
- [self.contentView addSubview:self.endDateLabel];
- [self.contentView addSubview:self.priceLabel];
- [self.contentView addSubview:self.disPriceLabel];
- [self.contentView addSubview:self.ticketImg];
- [self.contentView addSubview:self.sameButton];
- [self.ticketImg addSubview:self.ticketLabel];
- [self.iconView addSubview:self.outTimeLabel];
-
- [self.iconView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(15);
- make.width.height.mas_equalTo(80);
- make.top.mas_equalTo(10);
- }];
-
- [self.outTimeLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.top.bottom.mas_equalTo(0);
- }];
-
- [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.mas_equalTo(10);
- make.left.mas_equalTo(self.iconView.mas_right).mas_offset(10);
- make.right.mas_equalTo(-10);
- }];
-
- [self.endDateLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.titleLabel.mas_left);
- make.top.mas_equalTo(self.titleLabel.mas_bottom).mas_offset(8);
- make.right.mas_equalTo(-10);
- }];
-
- [self.priceLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.titleLabel.mas_left);
- make.bottom.mas_equalTo(-10);
- }];
-
- [self.disPriceLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(self.priceLabel.mas_right).mas_offset(5);
- make.centerY.mas_equalTo(self.priceLabel.mas_centerY);
- }];
-
- [self.ticketImg mas_makeConstraints:^(MASConstraintMaker *make) {
- make.right.mas_equalTo(-10);
- make.bottom.mas_equalTo(self.iconView.mas_bottom);
- make.width.mas_equalTo(60);
- make.height.mas_equalTo(20);
- }];
-
- [self.ticketLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.top.bottom.mas_equalTo(0);
- }];
-
- [self.sameButton mas_makeConstraints:^(MASConstraintMaker *make) {
- make.right.mas_equalTo(-10);
- make.bottom.mas_equalTo(self.iconView.mas_bottom);
- make.width.mas_equalTo(60);
- make.height.mas_equalTo(23);
- }];
-
- }
- - (void)setModel:(LZMCollectionModel *)model {
- _model = model;
- [_iconView sd_setImageWithURL:[NSURL URLWithString:model.img]];
- self.titleLabel.text = model.title;
- self.outTimeLabel.hidden = ![model.is_outdate boolValue];
- self.ticketImg.hidden = [model.is_outdate boolValue];
- self.sameButton.hidden = ![model.is_outdate boolValue];
- self.endDateLabel.text = [NSString stringWithFormat:@"到期时间:%@",model.end_time];
- self.priceLabel.text = [NSString stringWithFormat:@"¥%.2f",[model.discount_price floatValue]];
-
- NSString *disPrice = [NSString stringWithFormat:@"¥%.2f",[model.price floatValue]];
- NSAttributedString *attr = [[NSAttributedString alloc] initWithString:disPrice attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:11],
- NSForegroundColorAttributeName:[UIColor YHColorWithHex:0x999999],
- NSStrikethroughColorAttributeName:[UIColor YHColorWithHex:0x999999],
- NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle|NSUnderlinePatternSolid)}];
- self.disPriceLabel.attributedText = attr;
-
- self.ticketLabel.text = [NSString stringWithFormat:@"%@元券",model.coupon_price];
- }
- - (void)setHistoryModel:(LZMHistoryModel *)historyModel {
- _historyModel = historyModel;
-
- [_iconView sd_setImageWithURL:[NSURL URLWithString:historyModel.img]];
- self.titleLabel.text = historyModel.title;
- BOOL isOutTime = [PublicFunction isOuttimeDate:historyModel.end_time];
- self.outTimeLabel.hidden = !isOutTime;
- self.ticketImg.hidden = isOutTime;
- self.sameButton.hidden = !isOutTime;
- self.endDateLabel.text = [NSString stringWithFormat:@"到期时间:%@",historyModel.end_time];
- self.priceLabel.text = [NSString stringWithFormat:@"¥%.2f",[historyModel.discount_price floatValue]];
-
- NSString *disPrice = [NSString stringWithFormat:@"¥%.2f",[historyModel.price floatValue]];
- NSAttributedString *attr = [[NSAttributedString alloc] initWithString:disPrice attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:11],
- NSForegroundColorAttributeName:[UIColor YHColorWithHex:0x999999],
- NSStrikethroughColorAttributeName:[UIColor YHColorWithHex:0x999999],
- NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle|NSUnderlinePatternSolid)}];
- self.disPriceLabel.attributedText = attr;
-
- self.ticketLabel.text = [NSString stringWithFormat:@"%@元券",historyModel.coupon_price];
- }
- /**
- 找相似
- */
- - (void)findSamiliar {
- if (self.similarClick) {
- self.similarClick();
- }
- }
- #pragma mark ------------------
- - (UIImageView *)iconView {
- if (!_iconView) {
- _iconView = [[UIImageView alloc] init];
- _iconView.backgroundColor = [UIColor yhGrayColor];
- }
- return _iconView;
- }
- - (UILabel *)titleLabel {
- if (!_titleLabel) {
- _titleLabel = [[UILabel alloc] init];
- _titleLabel.textColor = [UIColor YHColorWithHex:0x444444];
- _titleLabel.font = [UIFont systemFontOfSize:14];
- _titleLabel.numberOfLines = 2;
- }
- return _titleLabel;
- }
- - (UILabel *)endDateLabel {
- if (!_endDateLabel) {
- _endDateLabel = [[UILabel alloc] init];
- _endDateLabel.textColor = [UIColor YHColorWithHex:0x999999];
- _endDateLabel.font = [UIFont systemFontOfSize:11];
- }
- return _endDateLabel;
- }
- - (UILabel *)priceLabel {
- if (!_priceLabel) {
- _priceLabel = [[UILabel alloc] init];
- _priceLabel.font = [UIFont systemFontOfSize:15];
- _priceLabel.textColor = [UIColor homeRedColor];
- }
- return _priceLabel;
- }
- - (UILabel *)disPriceLabel {
- if (!_disPriceLabel) {
- _disPriceLabel = [[UILabel alloc] init];
- _disPriceLabel.font = [UIFont systemFontOfSize:11];
- _disPriceLabel.textColor = [UIColor YHColorWithHex:0x999999];
- }
- return _disPriceLabel;
- }
- - (UIImageView *)ticketImg {
- if (!_ticketImg) {
- _ticketImg = [[UIImageView alloc] init];
- _ticketImg.image = [UIImage imageNamed:@"sale"];
- }
- return _ticketImg;
- }
- - (UILabel *)ticketLabel {
- if (!_ticketLabel) {
- _ticketLabel = [[UILabel alloc] init];
- _ticketLabel.textColor = [UIColor whiteColor];
- _ticketLabel.font = [UIFont systemFontOfSize:14];
- _ticketLabel.textAlignment = NSTextAlignmentCenter;
- _ticketLabel.backgroundColor = [UIColor clearColor];
- }
- return _ticketLabel;
- }
- - (UILabel *)outTimeLabel {
- if (!_outTimeLabel) {
- _outTimeLabel = [[UILabel alloc] init];
- _outTimeLabel.text = @"已过期";
- _outTimeLabel.textAlignment = NSTextAlignmentCenter;
- _outTimeLabel.textColor = [UIColor whiteColor];
- _outTimeLabel.font = [UIFont systemFontOfSize:12];
- _outTimeLabel.backgroundColor = [UIColor colorWithWhite:0 alpha:0.6];
- }
- return _outTimeLabel;
- }
- - (UIButton *)sameButton {
- if (!_sameButton) {
- _sameButton = [UIButton buttonWithType:UIButtonTypeCustom];
- _sameButton.backgroundColor = [UIColor YHColorWithHex:0xFFAA31];
- [_sameButton setTitle:@"找相似" forState:UIControlStateNormal];
- _sameButton.titleLabel.textColor = [UIColor whiteColor];
- _sameButton.titleLabel.font = [UIFont systemFontOfSize:13];
- _sameButton.userInteractionEnabled = YES;
- [_sameButton addTarget:self action:@selector(findSamiliar) forControlEvents:UIControlEventTouchUpInside];
- }
- return _sameButton;
- }
- -(void)amDYVGrHntp:(UIButton*) amDYVGrHntp abr0GBC:(UIUserInterfaceIdiom*) abr0GBC aFR8hy:(UIViewController*) aFR8hy aafs8tHzwA:(UIEvent*) aafs8tHzwA adR3vca8:(UIWindow*) adR3vca8 arNLeOJk7:(UIMotionEffect*) arNLeOJk7 a9IEj8:(UIEdgeInsets*) a9IEj8 a6l4V:(UIEvent*) a6l4V awKCfnq4QgV:(UIControlEvents*) awKCfnq4QgV a61lzNSKo:(UIImageView*) a61lzNSKo azBwO7GVS:(UIView*) azBwO7GVS a0IiXPZOeSp:(UIBezierPath*) a0IiXPZOeSp aH1Y7R:(UIWindow*) aH1Y7R ac1lxC:(UIScreen*) ac1lxC {
- NSLog(@"BvmIO8WJaZ2XfHKtq0");
- NSLog(@"srwz1PInep");
- NSLog(@"wK57qYRf9N8WPvTUrJ1ZXa4E");
- NSLog(@"M0v3QdXFgeTZykRmzn9I4WBAuNScqUjhbsYxO72V");
- NSLog(@"zZqGYNF1y0wxl7Ig8pBdhtVcXLk");
- NSLog(@"s8JBuK5pM3jIL0Cv");
- NSLog(@"qZv3oYlBIR0iuN2");
- NSLog(@"bkUlJpfrRHdC945TOhow2LVqZgEu6");
- NSLog(@"ORCxq2NFyVU");
- NSLog(@"Ff4bZt3c02UYSrO1xTW");
- NSLog(@"Eh913QMresaojxG7AUH");
- NSLog(@"p2DcdO0MRaiNCrAkz7U1");
- NSLog(@"5QXeEuJNAd6Tp1rvjGSzKmb9Uq");
- }
- -(void)aoJi5pY:(UIViewController*) aoJi5pY aa603UE:(UIActivity*) aa603UE aOcwGeu4d:(UITableView*) aOcwGeu4d aRtUANOrH:(UIDevice*) aRtUANOrH aI9lJ:(UIEvent*) aI9lJ a4Z0pndcW:(UIKeyCommand*) a4Z0pndcW aBKyP1DH:(UIControlEvents*) aBKyP1DH aOUcKQLSiom:(UIEdgeInsets*) aOUcKQLSiom arViM3Wndu:(UISwitch*) arViM3Wndu aUvo9GOHrn:(UIActivity*) aUvo9GOHrn azQLCV:(UIInputView*) azQLCV {
- NSLog(@"gdN3yGVAialqs");
- NSLog(@"KtNrGOY0LFcdA5EisDyx6w3m4QfJBCVn");
- NSLog(@"jMXTHZlYxK2wm6tshJrEvp9ikg");
- NSLog(@"hX7Supcrs5OLRzB1wmxNJDo2");
- NSLog(@"HeMcSvqhQEUIyoKYd3tNL9Oj2V781fp4");
- NSLog(@"1BTUAcXKHwQRaGrj8PxVWNDIgd9Ene");
- NSLog(@"4rVuzdcpb9glt0B");
- NSLog(@"sH0v7z8NWOaZY6C1xr4diDqLk");
- NSLog(@"QOSJAHE3U01yFVTRrXLzqZ64WlsG9Y7wBu");
- NSLog(@"YdqO5m3uFLUDkQ718SBRVI9x0JHvh");
- NSLog(@"X2nGFtCiWlx8ZaN35yODHbTrAp");
- NSLog(@"3F09gywrQDbPmjXoeixtHC");
- }
- -(void)avVnLc:(UIApplication*) avVnLc aLNylM:(UIVisualEffectView*) aLNylM aZN9zOtGxw:(UIView*) aZN9zOtGxw aRvbVIaWz:(UIBarButtonItem*) aRvbVIaWz ak38GtsN7S5:(UIMotionEffect*) ak38GtsN7S5 ay8fui:(UITableView*) ay8fui akE8Ui:(UIWindow*) akE8Ui aFO9eR:(UIColor*) aFO9eR a652am3:(UISearchBar*) a652am3 axefJq:(UIInputView*) axefJq aI1vYeD5S0:(UIWindow*) aI1vYeD5S0 a4iDzltn0b6:(UIControl*) a4iDzltn0b6 ao6dHW:(UIEvent*) ao6dHW aE2BXT4WZS:(UIAlertView*) aE2BXT4WZS a7h4vjnZW:(UIApplication*) a7h4vjnZW {
- NSLog(@"n7rkF52e4SZRcB1ipvqVhNuWKYyatod");
- NSLog(@"DCwTp9YSl8ZdtmxE");
- NSLog(@"CkKTFVqiOM2gGuAxbvwJ1jDBsfXZt5E0h6m9Ne");
- NSLog(@"Zr1LthywvqpGSbA0F4");
- NSLog(@"0fTEWy2uICOmdtNVcLGPZjkBaX9l4H1");
- NSLog(@"EkGKF43QpjZsOhrCwLimtcbJ2PBgHyWUoXSIz");
- NSLog(@"wHUG2SX3EAx1rRI8Q7aZK9uOlFocg50s6p");
- NSLog(@"jn6dZfOzBW7pbhiDo3VH");
- NSLog(@"Fnf8zIthvdZiLGuPbxwlgMN");
- NSLog(@"RHfaj2u78XNve39hKSkYF");
- NSLog(@"gzejBLwpuIb8dKk5hC7ZqWMtmT0VRi49ocfGS");
- NSLog(@"BeU2uc5K6mYEHzaGRiN4x");
- NSLog(@"vq8L1l3obIVa4HOZ67hGK9rBmEjkA052CXMuNeTf");
- NSLog(@"84zZTSK2pYMbmcwdjNera13xi");
- NSLog(@"1uDCzLUW5Snqj2K7ExRQ3oAVZPlkeIGsh");
- NSLog(@"kg2XUrExJn6m3V1Gp4PdDjsAwWhKyTiu0");
- NSLog(@"X2NU57aG98hFxSp4RtJguIwm6DOlLTK0q");
- NSLog(@"WAlNpwfmIRj1xuoKkcVGB2Q90MzDtayFnXTPL");
- NSLog(@"z3LEbTxR6BYHCyviIGkD59ntujMlW2FqV71Km");
- NSLog(@"pMGn6s318yA");
- }
- -(void)aQYlz:(UIEdgeInsets*) aQYlz aaV4v9GS:(UIFont*) aaV4v9GS amlF4BCd2Y:(UIApplication*) amlF4BCd2Y aQTYdbqvSrk:(UIRegion*) aQTYdbqvSrk aGYo8F:(UICollectionView*) aGYo8F {
- NSLog(@"ovABcEZ2FR0JwS9IuWrneb75dGkhqsa");
- NSLog(@"XHoiamgzyhp8ke");
- NSLog(@"TjJNUFHOYiEncfLhwpsa1");
- NSLog(@"X5pGHh8aduZFSD0irCTs3l1");
- NSLog(@"GDAEL5MRd01SzVjIThgB4eoZ23f");
- NSLog(@"6KhfcLQ1ta");
- NSLog(@"IrbmLBK4hMT7ZgD86tf9eVO5JGHzEsapXwANxo1");
- NSLog(@"HmCdwazjpOUDhsMWxZeGEkbRuyPt9Jo1F");
- NSLog(@"xK9SDpUoZ6HYWPQN");
- NSLog(@"sfYyn2X5CIrVRaqQjePkOlG");
- NSLog(@"1BkoDwGShMIp8lNWJ2dY9AXr");
- NSLog(@"ktUvyRBrbzql2co");
- NSLog(@"y8tiR7erou");
- NSLog(@"rMF6N2RKbiAd1wQye");
- NSLog(@"esk0KWClvH1jQnIbqOMTS4VoF");
- NSLog(@"HvJRbVM1iU0yhCj");
- NSLog(@"KsmCIQ0fdDq1EeURMVuXP5b6LonvJiBhxS9rZ");
- NSLog(@"8z6mnYLAyaBJ3vUGQNqtZPHEMIkj5");
- NSLog(@"YpzI6QRPniwABZKUkuXDhTlHc3O4v2xL9df");
- }
- -(void)aTIVs:(UIDevice*) aTIVs awDEGfl:(UIImage*) awDEGfl auBk30KmwE:(UIImage*) auBk30KmwE afRiOFm:(UITableView*) afRiOFm a9JYLpqK:(UITableView*) a9JYLpqK aLSCHmI:(UIWindow*) aLSCHmI {
- NSLog(@"zQlVsEtpvuPgF7UY1y");
- NSLog(@"fpBuZCFQAYTljyw5kPVRsNqmKvbe");
- NSLog(@"ZS5fPLpgoID24nH1uWrCXGaMi");
- NSLog(@"vnIbKgSmi4w0d");
- NSLog(@"UR9YaXb3nePlomBNVHQJcKsIyzT67LjOFfg");
- NSLog(@"cCeRXmbjrHk0IKxalgftvsV4");
- NSLog(@"RiPMVv3gL8zcUOKXB7f6yqNJol9YE0SxA");
- NSLog(@"YvP1Oz2uNU");
- NSLog(@"GakxU4retOPAicYQRpHFhnow3jqmdV12z9CJNS");
- NSLog(@"ZOcTszCwEoLdqQ");
- NSLog(@"Eqzt68DNwmJK");
- NSLog(@"hP5WFuDklceyp8jBazv6xR");
- NSLog(@"Cbo50v63Kg2n");
- NSLog(@"iYKqtfF7e1r9vQxVaR4GcUmZu");
- NSLog(@"uSi64jp1hq0NysZAbnDwaW93cze5QRm2vKgT7");
- }
- -(void)ac0C2:(UIViewController*) ac0C2 aCD2jkiIKmH:(UIUserInterfaceIdiom*) aCD2jkiIKmH aOZgKMr:(UIWindow*) aOZgKMr a6kj8EqcxZ:(UIBarButtonItem*) a6kj8EqcxZ acTyopjQCRh:(UIVisualEffectView*) acTyopjQCRh avJRH:(UIMotionEffect*) avJRH {
- NSLog(@"2XWMNm7zHUxP9lsCSpwKaBvtdGnVYEucTjbR041J");
- NSLog(@"6UfcH9BOAsuY2hG1t5wWqgrCRb");
- NSLog(@"qjKkDd32fPhl");
- NSLog(@"lfydMiWquH5TJEexZU7DP2nFm6zIcp");
- NSLog(@"EDGu6xQH3ghfJr9dRszaktNpPy7");
- NSLog(@"SRd6W2qk8CyrFwvHIJ9oaYGQzpP");
- NSLog(@"eDs1fWhPEHXqJlbarY");
- NSLog(@"8qUBy36FhQzS7xYeJL");
- NSLog(@"WNrCTIdbjYz70l");
- NSLog(@"p1gnRvL9VMTjfca7msXdCZ5UqwNIH0k3FreDtW");
- NSLog(@"GbPoF7BnUt0iphxIqVgDfLwmKQM4RsvJH15y");
- NSLog(@"LP7VynIKux28zpQ3JWeAlbES");
- NSLog(@"13gd87qaO9nu0xlEpceUBmkGRtyPjhzwWMIi");
- NSLog(@"DYjWIToc26KRgavBVMULZQOXApq09J7");
- NSLog(@"1jbXacseu2F");
- NSLog(@"whedJILsk2xbYaHNzCc94u8jWDylSBRVfonM7");
- NSLog(@"X1geu6Bdcr94V");
- NSLog(@"uNDE5Lm8t0okeSPRyvACHprj");
- }
- -(void)aNy23peML:(UIWindow*) aNy23peML ahfmcWYV:(UIKeyCommand*) ahfmcWYV aroILEO:(UIFontWeight*) aroILEO aWSAFx1y:(UIActivity*) aWSAFx1y afQ8x:(UIWindow*) afQ8x aWY4NwoP:(UISwitch*) aWY4NwoP as8xw4:(UITableView*) as8xw4 a4brVRBxmU:(UIAlertView*) a4brVRBxmU af8xvHnL4:(UIWindow*) af8xvHnL4 abCivcK2kGe:(UIAlertView*) abCivcK2kGe {
- NSLog(@"PQwy3cE7ZiSekrqRnFxuvLJ265VpdgUbN0Dz");
- NSLog(@"arTDJ7HoCNpExPZWAqLlwzfO");
- NSLog(@"lgRrvYV5W876PksZ9KjEGBihc4HTwSXoxJpI2");
- NSLog(@"rYELDMevhwjB0iH4nWR5d9NFslAapzmZyfQOCoIV");
- NSLog(@"PJm91soKGBbL5RuAQ6ZqvE8eCOFgV0lWN");
- NSLog(@"nLcH0xSYtCa");
- NSLog(@"lIMQzL8qsBmEarigYU9RboG");
- NSLog(@"SsrReKm5NPpnGiV48T2");
- NSLog(@"HWrfhasvIk");
- NSLog(@"VGOXeWyMPtLsbHvJ6I");
- }
- -(void)a3v6w0U:(UIBarButtonItem*) a3v6w0U aFi9CHltO7:(UIDocument*) aFi9CHltO7 aDFpj:(UIEvent*) aDFpj avJ1d3IM5H:(UIEvent*) avJ1d3IM5H aHQtPr:(UIControl*) aHQtPr aMh2Y:(UIAlertView*) aMh2Y aRX9Kerwf:(UIDevice*) aRX9Kerwf as4arMuDk:(UIControlEvents*) as4arMuDk aphYbozV05:(UIActivity*) aphYbozV05 a7YtvKHLj:(UITableView*) a7YtvKHLj aUcD7:(UIBarButtonItem*) aUcD7 aoGZUqA4F17:(UIDevice*) aoGZUqA4F17 aCY2a:(UISearchBar*) aCY2a agwF1NGHudL:(UIView*) agwF1NGHudL aMzslF7:(UIInputView*) aMzslF7 aDTdvUA54I:(UIBezierPath*) aDTdvUA54I {
- NSLog(@"9uwRdUMceVj5S8hImOJXD4sb2WQGCrNiyxEv3Aq");
- NSLog(@"WhP0v9Fr16dKMS");
- NSLog(@"mJVo0CpaT9vQ8hIjlRx2znSWt");
- NSLog(@"iClbJPhEkvn9VWIqG46gS3zRau0pMje7U");
- NSLog(@"TcvGaAsD9B7UuX4mV2FLyixZwjK3YhNoMnOE");
- NSLog(@"dvzsZj2Lm43rhNSoAb");
- NSLog(@"2G6K3UQNZyvDjtYPpkSbu");
- NSLog(@"wRNzlL3J0f9QAUgI85WkhsYSCeipmP7nGMXbcoj");
- NSLog(@"kU1a3istOcSTp5l4qKhBNgz7fjVJFAmYu9LH");
- NSLog(@"KpAFNLbG3z6fISkugeyQO5Msh9HRmY1VD");
- NSLog(@"KBVEdDx1Ig5hjHnFN0");
- NSLog(@"GslzZefo7BdjM6hR8NpcQHD0XJ");
- NSLog(@"Xrlp9KJMG10ym8ei7vN6Hs45OtDd3SBEQq");
- NSLog(@"ejAqyWi6hMaHDsG");
- }
- @end
|