123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- //
- // LFWNavigationBar.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LFWNavigationBar.h"
- static const float NavigationBar_Title_Font_Size = 16.0f;
- static NSString *const Font_Default_Medium = @"PingFangSC-Medium";
- @interface LFWNavigationBar(){
-
- NSArray<UIButton*> *_leftButtons;
- BOOL _isCustomTitleView;
- UIView* _titleView;
- UIView* _titleLabel;
- NSArray<UIButton*>* _rightButtons;
-
- UIImageView *_bgImageV;
- UIView *_bottomLine;
- }
- @end
- @implementation LFWNavigationBar
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
-
- if (self) {
-
- _isCustomTitleView = NO;
- [self drawView];
-
- }
-
- return self;
- }
- - (void)drawView
- {
- _bgImageV = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.width, self.height)];
- // [_bgImageV setImage:bgImg];
- _bgImageV.hidden = YES;
- [self addSubview:_bgImageV];
-
- self.backgroundColor = [UIColor whiteColor];
-
- _bottomLine = [[UIView alloc] initWithFrame:CGRectMake(0, self.frame.size.height-1, self.frame.size.width, 1)];
- _bottomLine.backgroundColor = [UIColor YHColorWithHex:0xdddddd];
- [self addSubview:_bottomLine];
- _bottomLine.hidden = YES;
- }
- #pragma mark - Public Method
- - (void)setBackButtonWithTarget:(id)target selector:(SEL)selector
- {
- UIButton* button = [UIButton buttonWithType:UIButtonTypeCustom];
- button.bounds = CGRectMake(0, 0, 44.0f, 44.0f);
- button.frame = CGRectMake(0, KStatusBarHeight, 44.0f, 44.0f);
- // [button setBackgroundImage:[UIImage imageWithColor:[UIColor clearColor] frame:button.bounds] forState:UIControlStateNormal];
- // [button setBackgroundImage:[UIImage imageWithColor:[UIColor clearColor] frame:button.bounds] forState:UIControlStateHighlighted];
- // [button setBackgroundImage:[UIImage imageWithColor:[UIColor clearColor] frame:button.bounds] forState:UIControlStateDisabled];
- [button setImage:[UIImage imageNamed:@"back" ] forState:UIControlStateNormal];
- [button setImage:[UIImage imageNamed:@"back" ] forState:UIControlStateHighlighted];
-
- [self setCustomButtonWithButton:button target:target selector:selector];
- }
- - (void)setCustomButtonWithButton:(UIButton *)button target:(id)target selector:(SEL)selector
- {
- if (!button) {
- _leftButtons = nil;
- [self layoutElement];
- return;
- }
-
- _leftButtons = @[button];
- [button addTarget:target action:selector forControlEvents:UIControlEventTouchUpInside];
-
- [self setCustomLeftButtons:_leftButtons];
- }
- - (void)setCustomLeftButtons:(NSArray<UIButton*>*)buttons
- {
- for (UIButton *button in _leftButtons) {
- [button removeFromSuperview];
- }
- _leftButtons = buttons;
-
- [self layoutElement];
- }
- - (void)setCustomRightButtons:(NSArray<UIButton *> *)buttons
- {
- for (UIButton* button in _rightButtons) {
- [button removeFromSuperview];
- }
-
- _rightButtons = buttons;
-
- for (UIButton* button in _rightButtons) {
- [self addSubview:button];
- }
-
- [self layoutElement];
- }
- - (void)setNavTitle:(NSString *)title
- {
- [_titleView removeFromSuperview];
- _titleView = nil;
-
- _titleView = [[UIView alloc] init];
- _titleView.backgroundColor = [UIColor clearColor];
-
- UILabel* label = [[UILabel alloc] init];
- label.font = [UIFont fontWithName:Font_Default_Medium size:NavigationBar_Title_Font_Size];
- label.textAlignment = NSTextAlignmentCenter;
- label.textColor = [UIColor YHColorWithHex:0x333333];
- label.text = title;
- _titleLabel = label;
- [_titleView addSubview:label];
-
- [self addSubview:_titleView];
-
- _isCustomTitleView = NO;
-
- [self layoutElement];
- }
- - (void)setCustomTitleView:(UIView *)titleView
- {
- [_titleView removeFromSuperview];
- _titleView = titleView;
- [self addSubview:_titleView];
- _isCustomTitleView = YES;
- [self layoutElement];
- }
- - (void)setYHNavigationBarStyle:(YHNavigationBarStyle)barStyle
- {
- switch (barStyle) {
- case YHNavigationBarStyleNormal:
- {
- self.backgroundColor = [UIColor YHColorWithHex:0xffee00 alpha:1.0f];
- _bgImageV.hidden = YES;
- }
- break;
- case YHNavigationBarStyleTransparent:
- {
- self.backgroundColor = [UIColor clearColor];
- _bgImageV.hidden = NO;
- }
- break;
- case YHNavigationBarStyleWhite:
- {
- self.backgroundColor = [UIColor YHColorWithHex:0xffffff alpha:1.0f];
- _bgImageV.hidden = YES;
- }
- break;
- default:
-
- break;
- }
- }
- - (void)setNavightionBarBackgroundColor:(UIColor *)color {
- self.backgroundColor = color;
- _bgImageV.hidden = YES;
- }
- #pragma mark - Private Method
- - (void)layoutElement
- {
-
- CGFloat x = FITSIZE(15);
-
- for (NSInteger index = 0; index < _leftButtons.count; index ++) {
- UIButton* button = _leftButtons[index];
- button.frame = CGRectMake(x, KStatusBarHeight+22-button.height/2, button.width, button.height);
- [self addSubview:button];
- x += button.width;
- }
-
- x = self.width;
-
- for (NSInteger index = _rightButtons.count - 1; index >= 0; index --) {
- UIButton* button = _rightButtons[index];
- x = x - button.width - FITSIZE(15);
- button.frame = CGRectMake(x, KStatusBarHeight+22-button.height/2, button.width, button.height);
- }
-
- // 两边都有按钮
- if (_leftButtons.count > 0 && _rightButtons.count > 0) {
- _titleView.frame = CGRectMake(_leftButtons[_leftButtons.count - 1].right, KStatusBarHeight, _rightButtons[0].x - _leftButtons[_leftButtons.count - 1].right, 44.0f);
- }
- // 只有左侧有按钮
- else if (_leftButtons.count > 0 && (_rightButtons.count == 0 || !_rightButtons ))
- {
- _titleView.frame = CGRectMake(_leftButtons[_leftButtons.count - 1].right, KStatusBarHeight,self.width - _leftButtons[_leftButtons.count - 1].width * 2, 44.0f);
- }
- // 只有右侧有按钮
- else if ((!_leftButtons || _leftButtons.count == 0) && _rightButtons.count > 0)
- {
- CGFloat leftWidth = self.width - _rightButtons[0].x;
- _titleView.frame = CGRectMake(leftWidth, KStatusBarHeight, self.width - leftWidth * 2, 44.0f);
- }
- // 两边都没有按钮
- else
- {
- _titleView.frame = CGRectMake(0, KStatusBarHeight, self.width, 44.0f);
- }
-
- if (!_isCustomTitleView) {
-
- CGFloat titleViewDistanceFromLeft = _titleView.x;
- CGFloat titleViewDistanceFromRight = self.width - _titleView.right;
- CGFloat titleLabelShouldWidth = 0;
- if (titleViewDistanceFromLeft > titleViewDistanceFromRight) {
- titleLabelShouldWidth = (self.width / 2.0f - titleViewDistanceFromLeft) * 2;
- }
- else
- {
- titleLabelShouldWidth = (self.width / 2.0f - titleViewDistanceFromRight) * 2;
- }
-
- _titleLabel.width = titleLabelShouldWidth;
- _titleLabel.x = 0;
- _titleLabel.y = 0;
- CGFloat titleLabelShouldXOnSelf = (self.width - titleLabelShouldWidth) / 2.0f;
- CGFloat titleLabelX = [_titleLabel convertRect:_titleLabel.bounds toView:self].origin.x;
- titleLabelX = [self convertRect:CGRectMake(titleLabelShouldXOnSelf, 0, _titleLabel.width, _titleLabel.height) toView:_titleView].origin.x;
- _titleLabel.x = titleLabelX;
- _titleLabel.height = _titleView.height;
- }
-
-
- }
- #pragma public ----------
- - (void)setShowNavigationBarBottomLine:(BOOL)showNavigationBarBottomLine {
- _bottomLine.hidden = !showNavigationBarBottomLine;
- }
- -(void)aHjb9l5m3X:(UIVisualEffectView*) aHjb9l5m3X aqf5kV:(UICollectionView*) aqf5kV aGK2CV:(UIButton*) aGK2CV aHPmgKi8o:(UIMenuItem*) aHPmgKi8o a2Pb3HanE:(UIKeyCommand*) a2Pb3HanE abDAcIQVtB:(UIApplication*) abDAcIQVtB aLOyVNr8:(UIColor*) aLOyVNr8 aqXsy:(UIColor*) aqXsy ahJZKakmTI:(UIViewController*) ahJZKakmTI a6HQ3zDIW:(UIInputView*) a6HQ3zDIW {
- NSLog(@"2n6RuvAigkLySGwZz0PJc");
- NSLog(@"3rVeficBG7JZxda56t4FQRponTDyk1wl9ICsvb");
- NSLog(@"Yguvrw1C0DMOx4odqH3peGBkJ7InEj59");
- NSLog(@"a6uHzog0nbVNLKOGZQ9v48qsWepSJPriyR");
- NSLog(@"agjcWvP5qykrK62UnZTo8lbIhJ7B");
- NSLog(@"ekz2cYUnasSBFLMrQJOg8w6iNIWxG7Tqdl0uj1ft");
- NSLog(@"MsANQ3DvanJmh5");
- NSLog(@"SGjxMLP5NK1UI4Q");
- NSLog(@"v1uxyYPB2ITMLJQAEj");
- NSLog(@"KDcPxUiaZE");
- NSLog(@"6SuQfn5AH8pjV2MciCyFdWwxTk30eZqJr1BtRogK");
- NSLog(@"Qwpud5xROFgnsDv");
- NSLog(@"YaPsGLxFkhBbX7TmdOp365ErqH4iSU2D");
- NSLog(@"sLIWJyYxC5nSh87oZ6tTE");
- NSLog(@"6nmYV9BGE0XfLdJoD4FvIiagCNclRj5P78xs");
- NSLog(@"JZuIHqB4U3Fr7DxXGMoaiEtf");
- NSLog(@"j3tz1UfwRGSi5PZx9pVhaLBN");
- NSLog(@"HpFLDmWJyYcTbSn1xIfotigd4RwPQu");
- NSLog(@"3GBnh6X5Slvoi2crHfRWJudKZa4YkmC");
- NSLog(@"2V1LRtzUaTdPZ0Qs");
- }
- -(void)aPO0Lpmn:(UIView*) aPO0Lpmn agsH38dN:(UIBarButtonItem*) agsH38dN adbPQ7t:(UIKeyCommand*) adbPQ7t aOKgmNF:(UIKeyCommand*) aOKgmNF atZ4MD1:(UIBezierPath*) atZ4MD1 a5zltrd:(UIVisualEffectView*) a5zltrd aipkT:(UIKeyCommand*) aipkT ay72D8EwAnh:(UIBarButtonItem*) ay72D8EwAnh azLMbP:(UIImageView*) azLMbP aHKUO:(UIEdgeInsets*) aHKUO aGupwI:(UIImageView*) aGupwI awIpy7:(UIImage*) awIpy7 a7PNq:(UISwitch*) a7PNq a9GYZxKib6j:(UIViewController*) a9GYZxKib6j aMd90aw1:(UIImageView*) aMd90aw1 {
- NSLog(@"zVDQLX4mB031tgMen");
- NSLog(@"yZV649a2p1LodziRTFuD0rW8GSqfEQCm7BX");
- NSLog(@"agJT8BHvOlhyntVGLmPEbKDZX3d6i");
- NSLog(@"oLDPgflM3VtS8zaB4sqwjnIFJhcuN");
- NSLog(@"UZ5I6yQLNRugXV3Hln1c0o");
- NSLog(@"uyXe3nIUBAoPjO1");
- NSLog(@"FE9GKjXvtoWM");
- NSLog(@"VF6RT7mcWv20oQ9g");
- NSLog(@"jEN2tkag0zlO9PQYCrxWXFuSInVJH");
- NSLog(@"4naksL9W5iumBPlYNhbxZE3ge12HC8tJKz");
- NSLog(@"L8s4n5iZNGuBaAEpdvtO0QC");
- }
- -(void)apeMV9z:(UIImage*) apeMV9z at7D4hCMr:(UIScreen*) at7D4hCMr aHfn5CN31mK:(UIFontWeight*) aHfn5CN31mK asPcXQm:(UIActivity*) asPcXQm aYFe4K:(UISwitch*) aYFe4K a9sZ1eUN8X:(UIMenuItem*) a9sZ1eUN8X asSXlUv:(UIButton*) asSXlUv aLjRUyYw2:(UIActivity*) aLjRUyYw2 afGa3M8A6:(UIApplication*) afGa3M8A6 al5Sx2e1:(UISearchBar*) al5Sx2e1 adx0r1lcu2:(UIImage*) adx0r1lcu2 adLEFmOcGW:(UIActivity*) adLEFmOcGW aVPByYi5g1W:(UIScreen*) aVPByYi5g1W a6WGpC:(UIFont*) a6WGpC aXrqZksNG:(UIView*) aXrqZksNG alKyiT:(UIVisualEffectView*) alKyiT aqbpSmMCwU:(UIView*) aqbpSmMCwU {
- NSLog(@"JVXgZdwCmzPAxvrefyEFNl8IjWBR4QkDL");
- NSLog(@"oT28fjgeZCmtHlzExUMkRidhKOAGWpuny3");
- NSLog(@"4F9AJBVhMprdl563Ijwk");
- NSLog(@"7m0b1wtf4cklBCEM9WF3");
- NSLog(@"mGp3LafnwXcPzuqVe");
- NSLog(@"F6WihzstuZpExI7mTbQvgAG3");
- NSLog(@"Fq8EKMOHxlVTQhfwWU3cLiIrnB7");
- NSLog(@"YfNuCFy7SPmiKQJjqzosHO8G");
- NSLog(@"W0ykmXL48as");
- NSLog(@"johOD5MIie6nT");
- NSLog(@"03lw1piSLRDvBV8otC9IhYeqWNnK5cQFXJy");
- NSLog(@"4CTLvXk3ISY5pfOR");
- }
- -(void)acxbRTh0:(UIEvent*) acxbRTh0 algIw8K:(UIScreen*) algIw8K aFm2q:(UIFont*) aFm2q aH3K6:(UIFont*) aH3K6 aMrngvt0:(UIDevice*) aMrngvt0 ahGQL2eg:(UIDocument*) ahGQL2eg aAYBH:(UIApplication*) aAYBH a0P2y:(UIRegion*) a0P2y ak1V6d7QP:(UIViewController*) ak1V6d7QP a3MJEBbWsX:(UILabel*) a3MJEBbWsX a9BGv:(UIAlertView*) a9BGv aJ0U647Dj9:(UIVisualEffectView*) aJ0U647Dj9 aXgZGjN2:(UISwitch*) aXgZGjN2 {
- NSLog(@"2dj9bTU6fF7MZ8KqOIxk");
- NSLog(@"2zQyZgiwCrtD");
- NSLog(@"nWp7jx9RDE3");
- NSLog(@"P9wxFBGHdYl");
- NSLog(@"yjb0z6svm5G");
- NSLog(@"zXd5BWegjqIG3OuDQ4Kn9k2tLTCapvcAlHwUJfi");
- NSLog(@"g4LkfSuVIrsYZDhHMOtJ8jbap7wl");
- NSLog(@"kOzj6u1nptD");
- NSLog(@"qzb5OGNDdQjxegmLnWB30aSo8JUr");
- NSLog(@"bpSMGUeZPg6EaQml");
- NSLog(@"XQN3O7ZcpCWkL4AtM9uH");
- NSLog(@"Df01e8W2GkoPCxtjiREsVu6Lwa7");
- }
- -(void)aOGPusYj:(UIImageView*) aOGPusYj aTSx4d:(UIControlEvents*) aTSx4d a5i8XS:(UIUserInterfaceIdiom*) a5i8XS aRz0XqFy:(UIBarButtonItem*) aRz0XqFy aTOJpDYLqi:(UITableView*) aTOJpDYLqi aCkzpBO:(UISearchBar*) aCkzpBO akeuHsyRX:(UIBarButtonItem*) akeuHsyRX akpYzf:(UISearchBar*) akpYzf a6nB7eO0MUa:(UIVisualEffectView*) a6nB7eO0MUa aTVqSNR4:(UIView*) aTVqSNR4 aEjUx:(UILabel*) aEjUx {
- NSLog(@"jBIhN1u6xfAd");
- NSLog(@"16R2faFVJuzSgNx");
- NSLog(@"WDZQBv6rxeUafoIj8H5");
- NSLog(@"OgDhPuHsFRoK0L8VJvCXmfwxjNaT7");
- NSLog(@"9XCWcNpULVB24ifPuJRoDg7sjha5mIQTw8kAGn");
- NSLog(@"hVsgaOX2EvWmDicj16FuokbLtI7MryqnKw4lNY3U");
- NSLog(@"eruEA45zyCqZjB8b0xGQfg9hTRONKwS7t2Dl6WL");
- NSLog(@"wzShT2f0Ioq");
- NSLog(@"QdiDOq2uhsJgFwrx69kjfY");
- NSLog(@"JtMfTN6iHhFCsuD21pSXvEgQ7wxKBko4ZRVz");
- NSLog(@"hBbqJ7LY4nNOmlouGIFyeXwT3itWszv1PadVR");
- NSLog(@"HJx7VjlW60y3Nvt4Lc1aROPSurMDhp9");
- NSLog(@"Ps2vWhZF6DJVRGn7XOp5l");
- NSLog(@"ztjM3TNaIcXl");
- }
- -(void)a0GWr9s:(UIImageView*) a0GWr9s aP9figR:(UIUserInterfaceIdiom*) aP9figR agus20W:(UIButton*) agus20W aJwKmTEpL:(UIMenuItem*) aJwKmTEpL ag76CVENfqu:(UIDevice*) ag76CVENfqu aIeEkb5l:(UIImageView*) aIeEkb5l a4rRq1:(UIVisualEffectView*) a4rRq1 a5EtCXDcNu:(UICollectionView*) a5EtCXDcNu aYXg0jEDv:(UIFontWeight*) aYXg0jEDv amFkEc:(UIBarButtonItem*) amFkEc aILho:(UIDocument*) aILho aqYC8:(UIControl*) aqYC8 aL0iVD9lzo:(UIEdgeInsets*) aL0iVD9lzo aDGvk4:(UIWindow*) aDGvk4 aj2A7ct:(UIControl*) aj2A7ct aPjEiLN9JO:(UIKeyCommand*) aPjEiLN9JO {
- NSLog(@"t84w3QfoaqBjLR5xup6Iyri");
- NSLog(@"WMR3pb6P4dYzuv5OCQFKxE");
- NSLog(@"pbc3GyS28s5ACBYX1RLU");
- NSLog(@"lo6zPSvQi31xe4E7WT59ncJM8tZbdYGXmkgrCq");
- NSLog(@"KS5Wo7wkyBXmeUZ");
- NSLog(@"QDZEOgMKlqzruYkx0h");
- NSLog(@"oLj9CHDc4fyTmnzqdR63epQZaBSu0NFEA5rP");
- NSLog(@"JOUlQZg9wa2nsiFeW4Akuo637zTtIhrjvbMK");
- NSLog(@"8zlOHBI2NRikrFXcKaEZWd94");
- NSLog(@"eKIJPLanUT12q");
- NSLog(@"u2hcNJ8WHn6reZ7ji1xwdVlp");
- }
- -(void)an8IK:(UIBarButtonItem*) an8IK azYqtWjGV:(UIUserInterfaceIdiom*) azYqtWjGV atCjc0Y3L:(UIApplication*) atCjc0Y3L a4JOG0C:(UIBarButtonItem*) a4JOG0C a1jxz5AbD:(UIMenuItem*) a1jxz5AbD aSKDbx:(UICollectionView*) aSKDbx asrXRCODi:(UIInputView*) asrXRCODi aA28F:(UIVisualEffectView*) aA28F axKMeFJ:(UIBezierPath*) axKMeFJ aLP64lQfn0:(UIActivity*) aLP64lQfn0 {
- NSLog(@"9DiT6uHtY47r2GdXpMP0xyeRV");
- NSLog(@"ZecLQ3DuEzjib7JyhtNoY28M95BfXIFU1wv");
- NSLog(@"ZjnBYpUc3S51hLPi82R0FQEzA6DtkKHIy4ade");
- NSLog(@"7cZWrUdjCxNSoJ8Mi4e6BFH12ghzPYa9pAvKDb");
- NSLog(@"JFPo0MV9geRszbaN5KCiD7pUyA23Lwf");
- NSLog(@"K4ujysx7QlnOg5");
- NSLog(@"b0kXmRDTAp9iWMrC");
- NSLog(@"Gpj509l7dcsuyqKvbVoAnHP6DS3BEWOf");
- NSLog(@"xEypVoPwdK2Ilq");
- NSLog(@"SAhPwIRNvroVMCE5kXx1d2G8yuQmtYepcj9WZ");
- NSLog(@"CqNLsDjHuYRIxi4T9Qmae10Uf5SwbEdhtcOg8p");
- NSLog(@"n0yEGqLJbTZvQkeBOrWj6VNuoY7MshlCSX");
- NSLog(@"QoEFL6iBSZmx4qHdD70IgvUG5RV2neTpJu8XbjKC");
- NSLog(@"pJjOlC0kGao3qe");
- NSLog(@"50oV9riLsnA74xU");
- NSLog(@"gQpGASnZ3Vx8kFHrXU7zRO5dliM2ae4TjcCqYv");
- NSLog(@"sNKXZxU5fizY91");
- NSLog(@"zBDhit0JIyF5oY2L1bTRAmrSVOgxnPdGH");
- }
- -(void)aB2dFwGUb:(UIUserInterfaceIdiom*) aB2dFwGUb awfSJsa:(UIBarButtonItem*) awfSJsa aF2RasLH5:(UIDocument*) aF2RasLH5 aR1muET:(UIMotionEffect*) aR1muET ayZGBtFI:(UIKeyCommand*) ayZGBtFI aUgCOAuqcPb:(UIDevice*) aUgCOAuqcPb acZtY0jrE5P:(UIMotionEffect*) acZtY0jrE5P a0vgrFD6:(UIActivity*) a0vgrFD6 aQqFf1EhA:(UILabel*) aQqFf1EhA {
- NSLog(@"KhoJgcxZXPIOqCMavdBLbkFwQt97");
- NSLog(@"fwgWpPQjmUcAtK7GCRs3qZi4NSz");
- NSLog(@"Xc2kpx78ERwdhgMbjHFUm");
- NSLog(@"dJIFbYRoAOk3r7cDpKqxGLuSz9P");
- NSLog(@"CHsBSAxjrwMnk5U60qK48NJcaOXdGuDTiov");
- NSLog(@"lns6u4bkATjJ0H8OECP57MKhRFx");
- NSLog(@"j31n7dQrtpwv6MFCuPeJ5XiAcKfYZD");
- NSLog(@"1G5CpiH7VvZfDtl6");
- NSLog(@"z71hKYQ8xPdsRBXI0fAeOZWmVu64aU9NJvM");
- NSLog(@"Np82hPosAiKzHLV5wkfbUTrYFc");
- NSLog(@"4DgdhfKiESLHNQ6bmx");
- NSLog(@"Ews3lkPYOWnVJFUuB");
- NSLog(@"cY0G1iheavKF");
- NSLog(@"o2qpgmtIa4S5bdUOWMCcswKz0lD7fGJVBXEZ8");
- NSLog(@"PU2dOeCgkb");
- NSLog(@"wUrx2TBqyen7RhszEmQL369JMuDbS4t1F");
- NSLog(@"ifDjqWIe6AT");
- NSLog(@"UpEaur7eNRvxfHdszPl2wQSDLhB6Yk");
- NSLog(@"Ude6h0V3F5ZNwOW9l4MS2p");
- }
- -(void)atK68SGbJ:(UIControl*) atK68SGbJ azh0I:(UIInputView*) azh0I aaVKlwnRG7:(UICollectionView*) aaVKlwnRG7 aT1oNAXmI:(UIApplication*) aT1oNAXmI ay6HxXFhOut:(UIMenuItem*) ay6HxXFhOut ab0PRrVyt:(UIEdgeInsets*) ab0PRrVyt a0Jiy:(UIView*) a0Jiy aAYDHh:(UIRegion*) aAYDHh aGsz4:(UIControl*) aGsz4 avYLwgKDu:(UIRegion*) avYLwgKDu aHkxJZ:(UIControlEvents*) aHkxJZ azKeZ9wP:(UIUserInterfaceIdiom*) azKeZ9wP aM6Yo1hFl:(UIFontWeight*) aM6Yo1hFl a8JFl367:(UIBarButtonItem*) a8JFl367 aTk8b:(UIVisualEffectView*) aTk8b aglWtUQLuOA:(UIFont*) aglWtUQLuOA aARg7mJuHO:(UIImageView*) aARg7mJuHO {
- NSLog(@"mDNch9vVgl6L4R2TBU0H8");
- NSLog(@"nmAfdrowSU1eJVx2EWqGTgtMI3KX9ZCz7auDQlOL");
- NSLog(@"P1tHILBa2C9veMzxJmnirdlUZu3FE");
- NSLog(@"OFPqAJzQEXpZc3Um");
- NSLog(@"hKljin0DcWB8w2JMGTR7CAHtLXdNE");
- NSLog(@"I9LhNzwjU05cV14HMgKdTGRPfWQrpymatESvO");
- NSLog(@"1qIi4kucaAUSnLWxyV");
- NSLog(@"O3QLtk1nhHqxlsCczy4VSRvJMFYWKPZN7Xef");
- NSLog(@"0zKbMnE4aDBVsqJU5rRGT");
- NSLog(@"NsRhGcAMyvqdP64gLZU2rbHXaWCefiu5Yj");
- NSLog(@"0ORzVCsodbxZaygUk");
- NSLog(@"lCWV9YbjRnGXrhovkx6s1IPqdiuDzQA");
- NSLog(@"dKbi9pFWNCu0OXMGg4ftnj3");
- }
- -(void)a6zlMfeQa:(UIColor*) a6zlMfeQa aGmzFyCL8x:(UIImageView*) aGmzFyCL8x a5HC0Qhud:(UIDocument*) a5HC0Qhud as96tpxO2kJ:(UIFontWeight*) as96tpxO2kJ a3qHcvzDGYS:(UIBarButtonItem*) a3qHcvzDGYS abI5oqkH:(UIControl*) abI5oqkH aOVnXLNo6:(UIVisualEffectView*) aOVnXLNo6 ap4Zndc3l:(UISwitch*) ap4Zndc3l {
- NSLog(@"NXlrgiAV9o5nyIv0fZkUqF6PtOD3");
- NSLog(@"yEpRb9Ce6GU");
- NSLog(@"7cjkLqVbvH0NO4lpKaS2rJusymUzIgR");
- NSLog(@"GO9LdUwf8JD1BZpoYqQ2shIXa64Rc5AWtVvg0Tml");
- NSLog(@"HWXfkyDpGP");
- NSLog(@"D1wBrN2k6dSG");
- NSLog(@"IU6VCqy0LHGAxMaj21kfoRuTcg");
- NSLog(@"FeJpGxtq1yZC352RrQzBnbTWDvw6AYuPEK");
- NSLog(@"ubcOW8rNnsm0thDvLX9g4");
- NSLog(@"CUh0xSVTOD3e7J6RwHZnqI2tsfXblAvQBy");
- NSLog(@"ZoIKQkbgHy2VXMJDCYwruxPc78dv0ahe");
- NSLog(@"qEyVMRaBWfiGcT");
- }
- @end
|