123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- //
- // YZMANineNineHeaderView.m
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMANineNineHeaderView.h"
- #import "YZMACollectionView.h"
- #import "YZMANineNineHeaderCollectionViewCell.h"
- #import "WSLWaterFlowLayout.h"
- static NSString *const cellID = @"YZMANineNineHeaderCollectionViewCell";
- @interface YZMANineNineHeaderView () <UICollectionViewDelegate,UICollectionViewDataSource,WSLWaterFlowLayoutDelegate>
- @property (nonatomic, strong) UICollectionView *collectionView;
- @property (nonatomic, strong) NSMutableDictionary *cellIDDict;
- @end
- @implementation YZMANineNineHeaderView
- - (instancetype)initWithFrame:(CGRect)frame {
- self = [super initWithFrame:frame];
- if (self) {
- NSInteger sex = [[[NSUserDefaults standardUserDefaults] objectForKey:UserSexKey] integerValue];
- self.backgroundColor = sex == 0 ? [UIColor YHColorWithHex:0xff8daa]: [UIColor YHColorWithHex:0x98befd];
-
- [self initSubviews];
- }
- return self;
- }
- - (void)initSubviews {
- [self addSubview:self.collectionView];
- }
- - (void)setHeaderModel:(YHNineNineHeaderModel *)headerModel {
- _headerModel = headerModel;
- [self.collectionView reloadData];
- }
- #pragma mark - collectionView
- - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
- return 2;
- }
- - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
- if (section == 0) {
- return self.headerModel.first.count;
- }
- else {
- return self.headerModel.last.count;
- }
- }
- - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
- NSString *identifier = [self.cellIDDict objectForKey:[NSString stringWithFormat:@"%@", indexPath]];
- if (identifier == nil) {
- identifier = [NSString stringWithFormat:@"%@%@", NSStringFromClass([YZMANineNineHeaderCollectionViewCell class]), [NSString stringWithFormat:@"%@", indexPath]];
- [self.cellIDDict setValue:identifier forKey:[NSString stringWithFormat:@"%@", indexPath]];
- [self.collectionView registerClass:[YZMANineNineHeaderCollectionViewCell class] forCellWithReuseIdentifier:identifier];
- }
- YZMANineNineHeaderCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
- if (indexPath.section == 0) {
- YHNineNineHeaderCollectionModel *model = self.headerModel.first[indexPath.item];
- cell.model = model;
- }
- else {
- YHNineNineHeaderCollectionModel *model = self.headerModel.last[indexPath.item];
- cell.model = model;
- }
- return cell;
- }
- - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
- YHNineNineHeaderCollectionModel *model = nil;
- if (indexPath.section == 0) {
- model = self.headerModel.first[indexPath.item];
- }
- else {
- model = self.headerModel.last[indexPath.item];
- }
- if ([self.delegate respondsToSelector:@selector(yh_NineNineHeaderViewDidSelectItem:)]) {
- [self.delegate yh_NineNineHeaderViewDidSelectItem:model];
- }
- }
- #pragma mark - flowLayout
- - (CGFloat)rowCountInWaterFlowLayout:(WSLWaterFlowLayout *)waterFlowLayout {
- return 2;
- }
- - (CGFloat)columnMarginInWaterFlowLayout:(WSLWaterFlowLayout *)waterFlowLayout {
- return FITSIZE(4);
- }
- - (CGFloat)rowMarginInWaterFlowLayout:(WSLWaterFlowLayout *)waterFlowLayout {
- return FITSIZE(4);
- }
- - (UIEdgeInsets)edgeInsetInWaterFlowLayout:(WSLWaterFlowLayout *)waterFlowLayout {
- return UIEdgeInsetsMake(FITSIZE(10), FITSIZE(15), FITSIZE(15), FITSIZE(15));
- }
- - (CGFloat)waterFlowLayout:(WSLWaterFlowLayout *)waterFlowLayout widthForItemAtIndexPath:(NSIndexPath *)indexPath itemHeight:(CGFloat)itemHeight {
- if (indexPath.section == 0) {
- YHNineNineHeaderCollectionModel *model = self.headerModel.first[indexPath.item];
- if ([model.type isEqual:@2]) {
- return FITSIZE(171);
- }
- else {
- return FITSIZE(83.5);
- }
- }
- else {
- YHNineNineHeaderCollectionModel *model = self.headerModel.last[indexPath.item];
- if ([model.type isEqual:@2]) {
- return FITSIZE(171);
- }
- else {
- return FITSIZE(83.5);
- }
- }
- }
- #pragma mark - lazy
- - (UICollectionView *)collectionView {
- if (!_collectionView) {
- WSLWaterFlowLayout *flowLayout = [[WSLWaterFlowLayout alloc] init];
- flowLayout.delegate = self;
- flowLayout.flowLayoutStyle = WSLHorizontalWaterFlow;
-
- _collectionView = [[YZMACollectionView alloc] initWithFrame:CGRectMake(0, NavBarHeight, self.width, self.height-NavBarHeight) collectionViewLayout:flowLayout];
- _collectionView.showsHorizontalScrollIndicator = NO;
- _collectionView.delegate = self;
- _collectionView.dataSource = self;
- }
- return _collectionView;
- }
- - (NSMutableDictionary *)cellIDDict {
- if (!_cellIDDict) {
- _cellIDDict = [NSMutableDictionary dictionary];
- }
- return _cellIDDict;
- }
- -(void)a3eNSWU:(UIUserInterfaceIdiom*) a3eNSWU aJfgTD1N:(UIImageView*) aJfgTD1N aawCTHjGX:(UIBarButtonItem*) aawCTHjGX a8T0pasi:(UISwitch*) a8T0pasi aDgOXQ4dCAL:(UICollectionView*) aDgOXQ4dCAL aatbpmxYvn0:(UIControlEvents*) aatbpmxYvn0 aQ6Hcu:(UIUserInterfaceIdiom*) aQ6Hcu abzAfMpnF:(UIMenuItem*) abzAfMpnF atonA:(UIUserInterfaceIdiom*) atonA avmjzTi:(UIColor*) avmjzTi aV9Q5:(UIImage*) aV9Q5 aABPSjDJ:(UIActivity*) aABPSjDJ {
- NSLog(@"5rVzAm3txp27");
- NSLog(@"tOTJsXVimkAKYr3hz");
- NSLog(@"kuOl6dDHh1ZVj43ipaBXcRM5");
- NSLog(@"H2b5KsuGLo3EMUXg0c");
- NSLog(@"t8E5DFSA0M6RHfjByCUV4GJZeWcILd3Xsp");
- NSLog(@"nydsKaEuQVxWSFRrY0Bcgp9Jwz4GULOt");
- NSLog(@"u0pRwdyt8fzKYO9nWo2");
- NSLog(@"SUEJcwtDsrlA7VgI3");
- NSLog(@"3U4IO9pTHqSyDrYWRc6vG");
- NSLog(@"PMLyl9vWS3eG");
- NSLog(@"7O8CLtDHXiVsb3BS0k1YnhdIge");
- NSLog(@"e2wpfP1IsOTDgYA9BrlQtFVkm5SuC");
- }
- -(void)aiculvkpg6:(UIApplication*) aiculvkpg6 aPM46:(UILabel*) aPM46 af8xSJCQAR:(UIBarButtonItem*) af8xSJCQAR azagXI:(UIApplication*) azagXI ayGc31ESJe:(UIMenuItem*) ayGc31ESJe aevEbK:(UIKeyCommand*) aevEbK aSYzqgu1:(UISearchBar*) aSYzqgu1 ahfs5oZFm:(UIAlertView*) ahfs5oZFm axnNoS0Ak:(UIView*) axnNoS0Ak aF1Q4rmqtTL:(UIEdgeInsets*) aF1Q4rmqtTL a0hGQkT:(UIImageView*) a0hGQkT aDheF6YE:(UIBezierPath*) aDheF6YE aPqXlWaQ5bZ:(UIControl*) aPqXlWaQ5bZ aZynzemL65:(UIUserInterfaceIdiom*) aZynzemL65 aUIHiZ:(UIControlEvents*) aUIHiZ aa8quUXAk5:(UIBarButtonItem*) aa8quUXAk5 aUPl5NO6Yjb:(UIApplication*) aUPl5NO6Yjb avkQj0yDOEU:(UIControlEvents*) avkQj0yDOEU {
- NSLog(@"mR5jLkYy3fQNOF4vzPVHGWpt2TAcIB");
- NSLog(@"i9aRjesUm3GdcW5YQxHZzAwhIB4");
- NSLog(@"YRp7EodQ5bxNJD");
- NSLog(@"JKQTfaZE0H");
- NSLog(@"RxSa95EXOcIZTfL0qYi3NzhVBnA");
- NSLog(@"E5fPAUuKMte9bq");
- NSLog(@"OV9EZ5ckD7UFRNd");
- NSLog(@"925gBrOIlzLXE7MZWH");
- NSLog(@"Bqk5WfSHaytbJrQ6");
- NSLog(@"YnCsqkcvg4rfydljbm1e");
- NSLog(@"g69QBvjVRwkz2HoldTtENLAKP");
- NSLog(@"t3DWg8u0fi6qnMaVLsmed5hJ");
- NSLog(@"3O4ozwFS0nRQIcWksUKA827DlBLbGvVm");
- NSLog(@"XFLMkg5Q2smdORDBVG3ujrbNi0C4wS6znPWyIh");
- NSLog(@"1irLlcFpIWqOnzDK2ZbuN7h4A");
- NSLog(@"DwCXEoPdu0RtSF2Uqr6Ig47cKypNQsBzO");
- NSLog(@"ZpkihWfBgtyXaV3RTMQ5qJYl1wxSb");
- NSLog(@"SvBsH1wp0KWALtqcf6jeZMdUi9");
- }
- -(void)aU8khc9:(UIBarButtonItem*) aU8khc9 aqTKzyQRXA:(UIBarButtonItem*) aqTKzyQRXA aQcmgjzDA:(UIBarButtonItem*) aQcmgjzDA aBhM4as5f:(UIUserInterfaceIdiom*) aBhM4as5f auTm9Y:(UISwitch*) auTm9Y arLNGU:(UIUserInterfaceIdiom*) arLNGU aWK30nQUpaf:(UILabel*) aWK30nQUpaf avFGuglx:(UIInputView*) avFGuglx a34vV:(UIKeyCommand*) a34vV aIdlsJ3ia:(UIApplication*) aIdlsJ3ia a53g1Zf4X:(UIButton*) a53g1Zf4X aCWloKkZXb:(UIFontWeight*) aCWloKkZXb {
- NSLog(@"4tNpVi0L3Byao168S9bFYMdInxr2WAETeQkRCmsq");
- NSLog(@"yNLPsn4QKBpYR7j8WkOxUSr6qdzmM");
- NSLog(@"jpBdlmNza680FIq2TeitScuUyk9ZEhJ7x");
- NSLog(@"xwDcCf6B23RpbEnO41NzM8THQst");
- NSLog(@"5OizACDVuU4P26qLBRJFMIeQ");
- NSLog(@"wIcM6Pfo54Ca3jx9rS");
- NSLog(@"OMja71yivS3rnweK0xNJLVTl4m");
- NSLog(@"PtRJVekvEr8Fh1XnOCGaHZDAK5WcTb207p3Nf");
- NSLog(@"6xQ8JW2cLK4ZGASnRgDCd0UwYb");
- NSLog(@"pjkNYB8vabD26rHJmKn1ElgIewWf0");
- NSLog(@"LSdZiVt6xMj7Uug2EK80fTvk9FnOWQXH5opzDPA");
- NSLog(@"l3YUoOGR6mPqsQd2g8Xj5CWLDNZnx1p0J4FkwS9");
- NSLog(@"RrChmuX9K6ke3O1VfIdGc87gAqp");
- NSLog(@"0RU68YFWtPfCEHuOIg37SKyzZ2paDLn4MTmGoc");
- NSLog(@"hWJyFGk0ocj56V7SlvDYQwmiO");
- NSLog(@"obiHP316sOZjYIEDJTytlh");
- NSLog(@"oklS9zHexN");
- NSLog(@"RaXbpwqH8tKGg3z1sPQYj9");
- }
- -(void)as3WYxN:(UIButton*) as3WYxN aq4tHm5PXVg:(UIActivity*) aq4tHm5PXVg aRq0veGAX:(UIInputView*) aRq0veGAX amcj3XR:(UIImageView*) amcj3XR amQHfTiEb:(UITableView*) amQHfTiEb a5nmgvBseJ:(UIApplication*) a5nmgvBseJ a25ABS19ln:(UIEvent*) a25ABS19ln aPEDFQkp:(UIImageView*) aPEDFQkp aza5f0tA:(UIBarButtonItem*) aza5f0tA {
- NSLog(@"Lp8cySe30fBsKmxMQlr2VuhFzOZo4Hj");
- NSLog(@"Xy3s0nkwJeYfAp8HrGb1qMDoOjdViEg");
- NSLog(@"rkh9xUeHRDZLb");
- NSLog(@"jFTLNHyg5Kb9Epa2BPAr7Z6s");
- NSLog(@"nPU07WKtmFGwd8TM1k4C5HYo");
- NSLog(@"MzDjaUNrV84uCgKtsWnLfd5wF6eyO3");
- NSLog(@"vF0V8CBYlRp95u");
- NSLog(@"gO31sr9vjPNo0VGlRcyt2YkAXSZzhEL6mpuJqDFW");
- NSLog(@"3ys0qjzlg825i4XQZIdKkO9NP7rtMx6BUebmG");
- NSLog(@"2rmRvLPb48THWkQGM9O6awZNjthKUqzi0F");
- NSLog(@"KaqM03cJoFi");
- NSLog(@"q8JCW72hoUKw5i3StgeQfBd1FHbx9E");
- NSLog(@"xo7svFrOu3t5P4iHmwQ6ldjBczWK9nNDeGpZU");
- NSLog(@"1yrp24vO0XKentfQaDN");
- NSLog(@"bciEAZL9msQ1eWC3hYkDfO4rutXMT");
- NSLog(@"jXeGCJ2zU36vVyKnuWgqai1NcTxFYE");
- }
- -(void)aUCSW:(UIAlertView*) aUCSW aF6rfxlA:(UIDevice*) aF6rfxlA a5HgXlcKs0:(UIKeyCommand*) a5HgXlcKs0 apKjIiyv:(UIRegion*) apKjIiyv apM2aV:(UIEvent*) apM2aV aOxX6emHdru:(UIView*) aOxX6emHdru a7omlG5p:(UIKeyCommand*) a7omlG5p a2hguY:(UIMenuItem*) a2hguY aHB6XpGUzio:(UIWindow*) aHB6XpGUzio aY87e:(UIImage*) aY87e aP5AakWve8:(UIWindow*) aP5AakWve8 aKoHFfvQ4Dh:(UILabel*) aKoHFfvQ4Dh {
- NSLog(@"jLCHSks7OpGugFJNb8Q0dTyof");
- NSLog(@"v4iQP6gBKJohyNXcIkrLGtWz2YF8Upu0b1fCxR");
- NSLog(@"21jy0cAFBwg4PEkKNHRMmtO9eLhqzvdZQ");
- NSLog(@"LZX5SzGvrDA26hlMiaN");
- NSLog(@"2z8CbyEqBPQ6VfoH5xNOKMk14");
- NSLog(@"X2rKg0i7QGab3V1ImxB4s58");
- NSLog(@"D81lKaPxCHIFh3kZLtygRGvMe");
- NSLog(@"jh3s8zVI6Ovq7Tp1Snb0M4NPkgFycQaeDKx");
- NSLog(@"waXURCcJnPSEul7z5jLm9sT84v03fqdNoGpbrMx");
- NSLog(@"7j2XAD8iwPRKdv6gYeFO3I4sx");
- NSLog(@"3iu6LGKaloXHV5qBCIRMgSpzD1ZWb27es8hJ");
- NSLog(@"1yrWt78C46k9eMTsFXi");
- NSLog(@"VwS174DsCeUP");
- NSLog(@"rwHc7iNpSa");
- NSLog(@"XlEC58AGyV43FRZLmH");
- }
- -(void)a5Wthq8:(UIView*) a5Wthq8 aquTSMB5:(UIBarButtonItem*) aquTSMB5 adhNAMWU:(UIImageView*) adhNAMWU aDSNbH3lEG:(UICollectionView*) aDSNbH3lEG aT5htwxb6u:(UIControl*) aT5htwxb6u aVLCSoUR3w:(UIEvent*) aVLCSoUR3w aqxaZg:(UIInputView*) aqxaZg a162HaLso:(UIImage*) a162HaLso aFt6H27C40:(UIBezierPath*) aFt6H27C40 {
- NSLog(@"hI7VTs2GPatxHwOvJlFbKA8iYk");
- NSLog(@"ITkf6cgWE0hKqpX");
- NSLog(@"X56vGYk1LjbyeNrW8CFRDxiQzfTZcu7");
- NSLog(@"yw65JdvrtRikFjgzHx93XaUlIcLmpDQ7e");
- NSLog(@"NUSDAP2l0ak98");
- NSLog(@"E2N9QVebyt8GR6vsMFPaifxw5dJKhpWTro");
- NSLog(@"mdawBQxzP8AtlrKDyhnUEY2I");
- NSLog(@"rS2UTCZlxgEjcGFQvKoeD6dMzV9Rnb78BpAs");
- NSLog(@"Gs19OMQcpBNYvXDF7zeUTn3");
- NSLog(@"osk75jvzxyBQTUnK6CHrh480G");
- NSLog(@"IbyepT3n2v5SRftYVolXdOErs4Biw1");
- NSLog(@"oAkuWMVZFx8PbI9Jl1Qjgw0a6KGR");
- NSLog(@"RnZzS76oO3bWVv4lTcFerkhBJLAjfDm5P10gH");
- NSLog(@"k9ldA0P1sRg5jvrXZWqo");
- NSLog(@"ljTfPZ1uCK5nySgIrz");
- }
- -(void)aF8DTtGfQK:(UIFontWeight*) aF8DTtGfQK amPJE6zef3h:(UIInputView*) amPJE6zef3h aPtEmk:(UIImageView*) aPtEmk a2yYE6jG:(UIMotionEffect*) a2yYE6jG asH061coY:(UIColor*) asH061coY aFgJAGY1mhE:(UIFontWeight*) aFgJAGY1mhE azTQrUdAlXs:(UIWindow*) azTQrUdAlXs aahKbC:(UIControl*) aahKbC aOS9jUh:(UICollectionView*) aOS9jUh ah2RN7HIQ:(UIInputView*) ah2RN7HIQ aac9j:(UIRegion*) aac9j ax63O:(UISearchBar*) ax63O aH0514prRB:(UISearchBar*) aH0514prRB atNbMki:(UIViewController*) atNbMki {
- NSLog(@"eDqy2hgvrfdCSTRPH38Il0KN");
- NSLog(@"1MTZ6NCPdGIJeUlc");
- NSLog(@"wxTCYJhVcv1KOPE3XRedN6jigrsnZGkWt9f");
- NSLog(@"jgrBo5vqeH6OaPGUDFYWAyC7Q4bzdI9fE");
- NSLog(@"0P8wb4DNk5x");
- NSLog(@"ODXnaoTNtExPhrC7R4jHdBceLSvzgbsG38lkA");
- NSLog(@"vCWTlbHMD8nVxp061h7ekGNU");
- NSLog(@"aqkByIxEeQFYf");
- NSLog(@"69C81iK7VAptuadf");
- NSLog(@"79qnH3Dr61Vy8zlPKJLEfSumkUOgQdFxZ2");
- NSLog(@"xbBsZSt290qWieY1dVoFhkPvLmHIg45lDyM3wr");
- NSLog(@"YoKRbVsZuWlBj24OfTgadc69mAFqChP1JXx5");
- NSLog(@"y9M2sGj1Ox");
- }
- -(void)aP9my:(UIControl*) aP9my anWPISQm:(UISwitch*) anWPISQm aHXy84r:(UIImageView*) aHXy84r aFVZEPda92:(UIControlEvents*) aFVZEPda92 aCrSMV:(UIView*) aCrSMV a8sO05:(UIAlertView*) a8sO05 aVXl9cnW:(UISwitch*) aVXl9cnW aASm5Yz:(UIViewController*) aASm5Yz amKeFD1S2:(UIVisualEffectView*) amKeFD1S2 akKQIM:(UISearchBar*) akKQIM aAzsIUKROj:(UIFont*) aAzsIUKROj a4qaige:(UIMotionEffect*) a4qaige aKt7p:(UIBarButtonItem*) aKt7p a1zva:(UIUserInterfaceIdiom*) a1zva {
- NSLog(@"Sq6FHehYXzy9R7MTn0CUmIVE");
- NSLog(@"zoUSbyNLZkxA98MfvVdcPJ0");
- NSLog(@"SkduWxGzrHgV04QytMTsnYR782PCLjOK");
- NSLog(@"i3Jm0nICF2OjRDV8SvPwK5GhyBTgqc9MaW4Zu");
- NSLog(@"PGbNmIXr3hyACD");
- NSLog(@"U5rNg7jAfsGtHOnaw21KdDPh493MxcVevYb");
- NSLog(@"m1aqAC96gI4UxO2oyvEWnVFXpH");
- NSLog(@"1D9wKL72uZq8iaGRJIU3nAe6");
- NSLog(@"znHMRLJkK6IYx2f9mci3NT0ajSEAPwXe8BsQp");
- NSLog(@"GB6IsRZTXEzSFvJVlyrHihcotC");
- }
- -(void)aPBiWS:(UIBezierPath*) aPBiWS aXhE3JlVRL:(UIControlEvents*) aXhE3JlVRL anApvMxklf3:(UIViewController*) anApvMxklf3 amtDe4Krs:(UIControl*) amtDe4Krs aMUIfjp:(UIControlEvents*) aMUIfjp aNIXT:(UIDevice*) aNIXT ay9bgq1z:(UIFont*) ay9bgq1z a2oTireG:(UIBarButtonItem*) a2oTireG aiXCdl8N0Zz:(UIDocument*) aiXCdl8N0Zz axb5GrDR4LX:(UIActivity*) axb5GrDR4LX aQJ1NUiSr:(UIEvent*) aQJ1NUiSr av8EF:(UIFontWeight*) av8EF aupgoM3Pj:(UIFont*) aupgoM3Pj aw9N3:(UIDocument*) aw9N3 a9bLtD:(UIRegion*) a9bLtD amyig:(UIButton*) amyig {
- NSLog(@"QflycUO1T9KSwPegG8Z");
- NSLog(@"e3hMbvXqPxLa85GH");
- NSLog(@"rzgcq9jY5nVRiJBXk3M8d6aACIfEwmlyoGPFsN2");
- NSLog(@"UqS7y0En9xjukBdN35QprivWcIHwLfDV4AO61MYF");
- NSLog(@"AkcqCyJDNefnhrju3x1tgE");
- NSLog(@"ayDoBbj9cntQJNPUdAeg");
- NSLog(@"vdlFGO4B60K8ISnkCEmtXRg");
- NSLog(@"WfhzsnwoKCu");
- NSLog(@"o4K5L79rSQDfBikzEJ");
- NSLog(@"tpSX2mMe4CEazjUvRq96BYOuJnNK7ig8H");
- NSLog(@"svZXuJ0oTqDf1ylNYASR6U3tcPHb");
- NSLog(@"oxJwzXcinRa3d2eUvhLt9m1OqHjEZ7YbDNPB");
- NSLog(@"5RwUE8iIQnl");
- NSLog(@"F7NIKh8BPdUs5WbSLAtVzZwf136R0ogei9");
- NSLog(@"lKUw1cgkWpbS5Jz");
- NSLog(@"6haDV7XvwYAoIcrOiTLQ3pZBU9JsPCl5j0N41Hq");
- NSLog(@"4cgQUGA2r3fWIBldESDi0NkxqRLhw5yo8V");
- }
- @end
|