两折卖----返利app-----返利圈

LZMCollectionTicketCell.m 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. //
  2. // LZMCollectionTicketCell.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/24.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMCollectionTicketCell.h"
  9. @interface LZMCollectionTicketCell ()
  10. @property (nonatomic, strong) UIImageView *iconView;
  11. @property (nonatomic, strong) UILabel *titleLabel;
  12. @property (nonatomic, strong) UILabel *endDateLabel;
  13. @property (nonatomic, strong) UILabel *priceLabel;
  14. @property (nonatomic, strong) UILabel *disPriceLabel;
  15. @property (nonatomic, strong) UIImageView *ticketImg;
  16. @property (nonatomic, strong) UILabel *ticketLabel;
  17. @property (nonatomic, strong) UILabel *outTimeLabel;
  18. @property (nonatomic, strong) UIButton *sameButton;
  19. @end
  20. @implementation LZMCollectionTicketCell
  21. + (instancetype)cellWithTableView:(UITableView *)tableView {
  22. static NSString *cellID = nil;
  23. cellID = NSStringFromClass([self class]);
  24. LZMCollectionTicketCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  25. if (!cell) {
  26. cell = [[LZMCollectionTicketCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
  27. }
  28. return cell;
  29. }
  30. - (void)awakeFromNib {
  31. [super awakeFromNib];
  32. // Initialization code
  33. }
  34. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  35. [super setSelected:selected animated:animated];
  36. // Configure the view for the selected state
  37. }
  38. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
  39. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  40. if (self) {
  41. [self initSubView];
  42. }
  43. return self;
  44. }
  45. - (void)initSubView {
  46. [self.contentView addSubview:self.iconView];
  47. [self.contentView addSubview:self.titleLabel];
  48. [self.contentView addSubview:self.endDateLabel];
  49. [self.contentView addSubview:self.priceLabel];
  50. [self.contentView addSubview:self.disPriceLabel];
  51. [self.contentView addSubview:self.ticketImg];
  52. [self.contentView addSubview:self.sameButton];
  53. [self.ticketImg addSubview:self.ticketLabel];
  54. [self.iconView addSubview:self.outTimeLabel];
  55. [self.iconView mas_makeConstraints:^(MASConstraintMaker *make) {
  56. make.left.mas_equalTo(15);
  57. make.width.height.mas_equalTo(80);
  58. make.top.mas_equalTo(10);
  59. }];
  60. [self.outTimeLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  61. make.left.right.top.bottom.mas_equalTo(0);
  62. }];
  63. [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  64. make.top.mas_equalTo(10);
  65. make.left.mas_equalTo(self.iconView.mas_right).mas_offset(10);
  66. make.right.mas_equalTo(-10);
  67. }];
  68. [self.endDateLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  69. make.left.mas_equalTo(self.titleLabel.mas_left);
  70. make.top.mas_equalTo(self.titleLabel.mas_bottom).mas_offset(8);
  71. make.right.mas_equalTo(-10);
  72. }];
  73. [self.priceLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  74. make.left.mas_equalTo(self.titleLabel.mas_left);
  75. make.bottom.mas_equalTo(-10);
  76. }];
  77. [self.disPriceLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  78. make.left.mas_equalTo(self.priceLabel.mas_right).mas_offset(5);
  79. make.centerY.mas_equalTo(self.priceLabel.mas_centerY);
  80. }];
  81. [self.ticketImg mas_makeConstraints:^(MASConstraintMaker *make) {
  82. make.right.mas_equalTo(-10);
  83. make.bottom.mas_equalTo(self.iconView.mas_bottom);
  84. make.width.mas_equalTo(60);
  85. make.height.mas_equalTo(20);
  86. }];
  87. [self.ticketLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  88. make.left.right.top.bottom.mas_equalTo(0);
  89. }];
  90. [self.sameButton mas_makeConstraints:^(MASConstraintMaker *make) {
  91. make.right.mas_equalTo(-10);
  92. make.bottom.mas_equalTo(self.iconView.mas_bottom);
  93. make.width.mas_equalTo(60);
  94. make.height.mas_equalTo(23);
  95. }];
  96. }
  97. - (void)setModel:(LZMCollectionModel *)model {
  98. _model = model;
  99. [_iconView sd_setImageWithURL:[NSURL URLWithString:model.img]];
  100. self.titleLabel.text = model.title;
  101. self.outTimeLabel.hidden = ![model.is_outdate boolValue];
  102. self.ticketImg.hidden = [model.is_outdate boolValue];
  103. self.sameButton.hidden = ![model.is_outdate boolValue];
  104. self.endDateLabel.text = [NSString stringWithFormat:@"到期时间:%@",model.end_time];
  105. self.priceLabel.text = [NSString stringWithFormat:@"¥%.2f",[model.discount_price floatValue]];
  106. NSString *disPrice = [NSString stringWithFormat:@"¥%.2f",[model.price floatValue]];
  107. NSAttributedString *attr = [[NSAttributedString alloc] initWithString:disPrice attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:11],
  108. NSForegroundColorAttributeName:[UIColor YHColorWithHex:0x999999],
  109. NSStrikethroughColorAttributeName:[UIColor YHColorWithHex:0x999999],
  110. NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle|NSUnderlinePatternSolid)}];
  111. self.disPriceLabel.attributedText = attr;
  112. self.ticketLabel.text = [NSString stringWithFormat:@"%@元券",model.coupon_price];
  113. }
  114. - (void)setHistoryModel:(LZMHistoryModel *)historyModel {
  115. _historyModel = historyModel;
  116. [_iconView sd_setImageWithURL:[NSURL URLWithString:historyModel.img]];
  117. self.titleLabel.text = historyModel.title;
  118. BOOL isOutTime = [PublicFunction isOuttimeDate:historyModel.end_time];
  119. self.outTimeLabel.hidden = !isOutTime;
  120. self.ticketImg.hidden = isOutTime;
  121. self.sameButton.hidden = !isOutTime;
  122. self.endDateLabel.text = [NSString stringWithFormat:@"到期时间:%@",historyModel.end_time];
  123. self.priceLabel.text = [NSString stringWithFormat:@"¥%.2f",[historyModel.discount_price floatValue]];
  124. NSString *disPrice = [NSString stringWithFormat:@"¥%.2f",[historyModel.price floatValue]];
  125. NSAttributedString *attr = [[NSAttributedString alloc] initWithString:disPrice attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:11],
  126. NSForegroundColorAttributeName:[UIColor YHColorWithHex:0x999999],
  127. NSStrikethroughColorAttributeName:[UIColor YHColorWithHex:0x999999],
  128. NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle|NSUnderlinePatternSolid)}];
  129. self.disPriceLabel.attributedText = attr;
  130. self.ticketLabel.text = [NSString stringWithFormat:@"%@元券",historyModel.coupon_price];
  131. }
  132. /**
  133. 找相似
  134. */
  135. - (void)findSamiliar {
  136. if (self.similarClick) {
  137. self.similarClick();
  138. }
  139. }
  140. #pragma mark ------------------
  141. - (UIImageView *)iconView {
  142. if (!_iconView) {
  143. _iconView = [[UIImageView alloc] init];
  144. _iconView.backgroundColor = [UIColor yhGrayColor];
  145. }
  146. return _iconView;
  147. }
  148. - (UILabel *)titleLabel {
  149. if (!_titleLabel) {
  150. _titleLabel = [[UILabel alloc] init];
  151. _titleLabel.textColor = [UIColor YHColorWithHex:0x444444];
  152. _titleLabel.font = [UIFont systemFontOfSize:14];
  153. _titleLabel.numberOfLines = 2;
  154. }
  155. return _titleLabel;
  156. }
  157. - (UILabel *)endDateLabel {
  158. if (!_endDateLabel) {
  159. _endDateLabel = [[UILabel alloc] init];
  160. _endDateLabel.textColor = [UIColor YHColorWithHex:0x999999];
  161. _endDateLabel.font = [UIFont systemFontOfSize:11];
  162. }
  163. return _endDateLabel;
  164. }
  165. - (UILabel *)priceLabel {
  166. if (!_priceLabel) {
  167. _priceLabel = [[UILabel alloc] init];
  168. _priceLabel.font = [UIFont systemFontOfSize:15];
  169. _priceLabel.textColor = [UIColor homeRedColor];
  170. }
  171. return _priceLabel;
  172. }
  173. - (UILabel *)disPriceLabel {
  174. if (!_disPriceLabel) {
  175. _disPriceLabel = [[UILabel alloc] init];
  176. _disPriceLabel.font = [UIFont systemFontOfSize:11];
  177. _disPriceLabel.textColor = [UIColor YHColorWithHex:0x999999];
  178. }
  179. return _disPriceLabel;
  180. }
  181. - (UIImageView *)ticketImg {
  182. if (!_ticketImg) {
  183. _ticketImg = [[UIImageView alloc] init];
  184. _ticketImg.image = [UIImage imageNamed:@"sale"];
  185. }
  186. return _ticketImg;
  187. }
  188. - (UILabel *)ticketLabel {
  189. if (!_ticketLabel) {
  190. _ticketLabel = [[UILabel alloc] init];
  191. _ticketLabel.textColor = [UIColor whiteColor];
  192. _ticketLabel.font = [UIFont systemFontOfSize:14];
  193. _ticketLabel.textAlignment = NSTextAlignmentCenter;
  194. _ticketLabel.backgroundColor = [UIColor clearColor];
  195. }
  196. return _ticketLabel;
  197. }
  198. - (UILabel *)outTimeLabel {
  199. if (!_outTimeLabel) {
  200. _outTimeLabel = [[UILabel alloc] init];
  201. _outTimeLabel.text = @"已过期";
  202. _outTimeLabel.textAlignment = NSTextAlignmentCenter;
  203. _outTimeLabel.textColor = [UIColor whiteColor];
  204. _outTimeLabel.font = [UIFont systemFontOfSize:12];
  205. _outTimeLabel.backgroundColor = [UIColor colorWithWhite:0 alpha:0.6];
  206. }
  207. return _outTimeLabel;
  208. }
  209. - (UIButton *)sameButton {
  210. if (!_sameButton) {
  211. _sameButton = [UIButton buttonWithType:UIButtonTypeCustom];
  212. _sameButton.backgroundColor = [UIColor YHColorWithHex:0xFFAA31];
  213. [_sameButton setTitle:@"找相似" forState:UIControlStateNormal];
  214. _sameButton.titleLabel.textColor = [UIColor whiteColor];
  215. _sameButton.titleLabel.font = [UIFont systemFontOfSize:13];
  216. _sameButton.userInteractionEnabled = YES;
  217. [_sameButton addTarget:self action:@selector(findSamiliar) forControlEvents:UIControlEventTouchUpInside];
  218. }
  219. return _sameButton;
  220. }
  221. -(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 {
  222. NSLog(@"BvmIO8WJaZ2XfHKtq0");
  223. NSLog(@"srwz1PInep");
  224. NSLog(@"wK57qYRf9N8WPvTUrJ1ZXa4E");
  225. NSLog(@"M0v3QdXFgeTZykRmzn9I4WBAuNScqUjhbsYxO72V");
  226. NSLog(@"zZqGYNF1y0wxl7Ig8pBdhtVcXLk");
  227. NSLog(@"s8JBuK5pM3jIL0Cv");
  228. NSLog(@"qZv3oYlBIR0iuN2");
  229. NSLog(@"bkUlJpfrRHdC945TOhow2LVqZgEu6");
  230. NSLog(@"ORCxq2NFyVU");
  231. NSLog(@"Ff4bZt3c02UYSrO1xTW");
  232. NSLog(@"Eh913QMresaojxG7AUH");
  233. NSLog(@"p2DcdO0MRaiNCrAkz7U1");
  234. NSLog(@"5QXeEuJNAd6Tp1rvjGSzKmb9Uq");
  235. }
  236. -(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 {
  237. NSLog(@"gdN3yGVAialqs");
  238. NSLog(@"KtNrGOY0LFcdA5EisDyx6w3m4QfJBCVn");
  239. NSLog(@"jMXTHZlYxK2wm6tshJrEvp9ikg");
  240. NSLog(@"hX7Supcrs5OLRzB1wmxNJDo2");
  241. NSLog(@"HeMcSvqhQEUIyoKYd3tNL9Oj2V781fp4");
  242. NSLog(@"1BTUAcXKHwQRaGrj8PxVWNDIgd9Ene");
  243. NSLog(@"4rVuzdcpb9glt0B");
  244. NSLog(@"sH0v7z8NWOaZY6C1xr4diDqLk");
  245. NSLog(@"QOSJAHE3U01yFVTRrXLzqZ64WlsG9Y7wBu");
  246. NSLog(@"YdqO5m3uFLUDkQ718SBRVI9x0JHvh");
  247. NSLog(@"X2nGFtCiWlx8ZaN35yODHbTrAp");
  248. NSLog(@"3F09gywrQDbPmjXoeixtHC");
  249. }
  250. -(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 {
  251. NSLog(@"n7rkF52e4SZRcB1ipvqVhNuWKYyatod");
  252. NSLog(@"DCwTp9YSl8ZdtmxE");
  253. NSLog(@"CkKTFVqiOM2gGuAxbvwJ1jDBsfXZt5E0h6m9Ne");
  254. NSLog(@"Zr1LthywvqpGSbA0F4");
  255. NSLog(@"0fTEWy2uICOmdtNVcLGPZjkBaX9l4H1");
  256. NSLog(@"EkGKF43QpjZsOhrCwLimtcbJ2PBgHyWUoXSIz");
  257. NSLog(@"wHUG2SX3EAx1rRI8Q7aZK9uOlFocg50s6p");
  258. NSLog(@"jn6dZfOzBW7pbhiDo3VH");
  259. NSLog(@"Fnf8zIthvdZiLGuPbxwlgMN");
  260. NSLog(@"RHfaj2u78XNve39hKSkYF");
  261. NSLog(@"gzejBLwpuIb8dKk5hC7ZqWMtmT0VRi49ocfGS");
  262. NSLog(@"BeU2uc5K6mYEHzaGRiN4x");
  263. NSLog(@"vq8L1l3obIVa4HOZ67hGK9rBmEjkA052CXMuNeTf");
  264. NSLog(@"84zZTSK2pYMbmcwdjNera13xi");
  265. NSLog(@"1uDCzLUW5Snqj2K7ExRQ3oAVZPlkeIGsh");
  266. NSLog(@"kg2XUrExJn6m3V1Gp4PdDjsAwWhKyTiu0");
  267. NSLog(@"X2NU57aG98hFxSp4RtJguIwm6DOlLTK0q");
  268. NSLog(@"WAlNpwfmIRj1xuoKkcVGB2Q90MzDtayFnXTPL");
  269. NSLog(@"z3LEbTxR6BYHCyviIGkD59ntujMlW2FqV71Km");
  270. NSLog(@"pMGn6s318yA");
  271. }
  272. -(void)aQYlz:(UIEdgeInsets*) aQYlz aaV4v9GS:(UIFont*) aaV4v9GS amlF4BCd2Y:(UIApplication*) amlF4BCd2Y aQTYdbqvSrk:(UIRegion*) aQTYdbqvSrk aGYo8F:(UICollectionView*) aGYo8F {
  273. NSLog(@"ovABcEZ2FR0JwS9IuWrneb75dGkhqsa");
  274. NSLog(@"XHoiamgzyhp8ke");
  275. NSLog(@"TjJNUFHOYiEncfLhwpsa1");
  276. NSLog(@"X5pGHh8aduZFSD0irCTs3l1");
  277. NSLog(@"GDAEL5MRd01SzVjIThgB4eoZ23f");
  278. NSLog(@"6KhfcLQ1ta");
  279. NSLog(@"IrbmLBK4hMT7ZgD86tf9eVO5JGHzEsapXwANxo1");
  280. NSLog(@"HmCdwazjpOUDhsMWxZeGEkbRuyPt9Jo1F");
  281. NSLog(@"xK9SDpUoZ6HYWPQN");
  282. NSLog(@"sfYyn2X5CIrVRaqQjePkOlG");
  283. NSLog(@"1BkoDwGShMIp8lNWJ2dY9AXr");
  284. NSLog(@"ktUvyRBrbzql2co");
  285. NSLog(@"y8tiR7erou");
  286. NSLog(@"rMF6N2RKbiAd1wQye");
  287. NSLog(@"esk0KWClvH1jQnIbqOMTS4VoF");
  288. NSLog(@"HvJRbVM1iU0yhCj");
  289. NSLog(@"KsmCIQ0fdDq1EeURMVuXP5b6LonvJiBhxS9rZ");
  290. NSLog(@"8z6mnYLAyaBJ3vUGQNqtZPHEMIkj5");
  291. NSLog(@"YpzI6QRPniwABZKUkuXDhTlHc3O4v2xL9df");
  292. }
  293. -(void)aTIVs:(UIDevice*) aTIVs awDEGfl:(UIImage*) awDEGfl auBk30KmwE:(UIImage*) auBk30KmwE afRiOFm:(UITableView*) afRiOFm a9JYLpqK:(UITableView*) a9JYLpqK aLSCHmI:(UIWindow*) aLSCHmI {
  294. NSLog(@"zQlVsEtpvuPgF7UY1y");
  295. NSLog(@"fpBuZCFQAYTljyw5kPVRsNqmKvbe");
  296. NSLog(@"ZS5fPLpgoID24nH1uWrCXGaMi");
  297. NSLog(@"vnIbKgSmi4w0d");
  298. NSLog(@"UR9YaXb3nePlomBNVHQJcKsIyzT67LjOFfg");
  299. NSLog(@"cCeRXmbjrHk0IKxalgftvsV4");
  300. NSLog(@"RiPMVv3gL8zcUOKXB7f6yqNJol9YE0SxA");
  301. NSLog(@"YvP1Oz2uNU");
  302. NSLog(@"GakxU4retOPAicYQRpHFhnow3jqmdV12z9CJNS");
  303. NSLog(@"ZOcTszCwEoLdqQ");
  304. NSLog(@"Eqzt68DNwmJK");
  305. NSLog(@"hP5WFuDklceyp8jBazv6xR");
  306. NSLog(@"Cbo50v63Kg2n");
  307. NSLog(@"iYKqtfF7e1r9vQxVaR4GcUmZu");
  308. NSLog(@"uSi64jp1hq0NysZAbnDwaW93cze5QRm2vKgT7");
  309. }
  310. -(void)ac0C2:(UIViewController*) ac0C2 aCD2jkiIKmH:(UIUserInterfaceIdiom*) aCD2jkiIKmH aOZgKMr:(UIWindow*) aOZgKMr a6kj8EqcxZ:(UIBarButtonItem*) a6kj8EqcxZ acTyopjQCRh:(UIVisualEffectView*) acTyopjQCRh avJRH:(UIMotionEffect*) avJRH {
  311. NSLog(@"2XWMNm7zHUxP9lsCSpwKaBvtdGnVYEucTjbR041J");
  312. NSLog(@"6UfcH9BOAsuY2hG1t5wWqgrCRb");
  313. NSLog(@"qjKkDd32fPhl");
  314. NSLog(@"lfydMiWquH5TJEexZU7DP2nFm6zIcp");
  315. NSLog(@"EDGu6xQH3ghfJr9dRszaktNpPy7");
  316. NSLog(@"SRd6W2qk8CyrFwvHIJ9oaYGQzpP");
  317. NSLog(@"eDs1fWhPEHXqJlbarY");
  318. NSLog(@"8qUBy36FhQzS7xYeJL");
  319. NSLog(@"WNrCTIdbjYz70l");
  320. NSLog(@"p1gnRvL9VMTjfca7msXdCZ5UqwNIH0k3FreDtW");
  321. NSLog(@"GbPoF7BnUt0iphxIqVgDfLwmKQM4RsvJH15y");
  322. NSLog(@"LP7VynIKux28zpQ3JWeAlbES");
  323. NSLog(@"13gd87qaO9nu0xlEpceUBmkGRtyPjhzwWMIi");
  324. NSLog(@"DYjWIToc26KRgavBVMULZQOXApq09J7");
  325. NSLog(@"1jbXacseu2F");
  326. NSLog(@"whedJILsk2xbYaHNzCc94u8jWDylSBRVfonM7");
  327. NSLog(@"X1geu6Bdcr94V");
  328. NSLog(@"uNDE5Lm8t0okeSPRyvACHprj");
  329. }
  330. -(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 {
  331. NSLog(@"PQwy3cE7ZiSekrqRnFxuvLJ265VpdgUbN0Dz");
  332. NSLog(@"arTDJ7HoCNpExPZWAqLlwzfO");
  333. NSLog(@"lgRrvYV5W876PksZ9KjEGBihc4HTwSXoxJpI2");
  334. NSLog(@"rYELDMevhwjB0iH4nWR5d9NFslAapzmZyfQOCoIV");
  335. NSLog(@"PJm91soKGBbL5RuAQ6ZqvE8eCOFgV0lWN");
  336. NSLog(@"nLcH0xSYtCa");
  337. NSLog(@"lIMQzL8qsBmEarigYU9RboG");
  338. NSLog(@"SsrReKm5NPpnGiV48T2");
  339. NSLog(@"HWrfhasvIk");
  340. NSLog(@"VGOXeWyMPtLsbHvJ6I");
  341. }
  342. -(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 {
  343. NSLog(@"9uwRdUMceVj5S8hImOJXD4sb2WQGCrNiyxEv3Aq");
  344. NSLog(@"WhP0v9Fr16dKMS");
  345. NSLog(@"mJVo0CpaT9vQ8hIjlRx2znSWt");
  346. NSLog(@"iClbJPhEkvn9VWIqG46gS3zRau0pMje7U");
  347. NSLog(@"TcvGaAsD9B7UuX4mV2FLyixZwjK3YhNoMnOE");
  348. NSLog(@"dvzsZj2Lm43rhNSoAb");
  349. NSLog(@"2G6K3UQNZyvDjtYPpkSbu");
  350. NSLog(@"wRNzlL3J0f9QAUgI85WkhsYSCeipmP7nGMXbcoj");
  351. NSLog(@"kU1a3istOcSTp5l4qKhBNgz7fjVJFAmYu9LH");
  352. NSLog(@"KpAFNLbG3z6fISkugeyQO5Msh9HRmY1VD");
  353. NSLog(@"KBVEdDx1Ig5hjHnFN0");
  354. NSLog(@"GslzZefo7BdjM6hR8NpcQHD0XJ");
  355. NSLog(@"Xrlp9KJMG10ym8ei7vN6Hs45OtDd3SBEQq");
  356. NSLog(@"ejAqyWi6hMaHDsG");
  357. }
  358. @end