123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- //
- // TYAlertView.m
- // TYAlertControllerDemo
- //
- // Created by tanyang on 15/9/7.
- // Copyright (c) 2015年 tanyang. All rights reserved.
- //
- #import "TYAlertView.h"
- #import "UIView+TYAlertView.h"
- #import "UIView+TYAutoLayout.h"
- @interface TYAlertAction ()
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, assign) TYAlertActionStyle style;
- @property (nonatomic, copy) void (^handler)(TYAlertAction *);
- @end
- @implementation TYAlertAction
- + (instancetype)actionWithTitle:(NSString *)title style:(TYAlertActionStyle)style handler:(void (^)(TYAlertAction *))handler
- {
- return [[self alloc]initWithTitle:title style:style handler:handler];
- }
- - (instancetype)initWithTitle:(NSString *)title style:(TYAlertActionStyle)style handler:(void (^)(TYAlertAction *))handler
- {
- if (self = [super init]) {
- _title = title;
- _style = style;
- _handler = handler;
- _enabled = YES;
-
- }
- return self;
- }
- - (id)copyWithZone:(NSZone *)zone
- {
- TYAlertAction *action = [[self class]allocWithZone:zone];
- action.title = self.title;
- action.style = self.style;
- return action;
- }
- @end
- @interface TYAlertView ()
- // text content View
- @property (nonatomic, weak) UIView *textContentView;
- @property (nonatomic, weak) UILabel *titleLable;
- @property (nonatomic, weak) UILabel *messageLabel;
- @property (nonatomic, weak) UIView *textFieldContentView;
- @property (nonatomic, weak) NSLayoutConstraint *textFieldTopConstraint;
- @property (nonatomic, strong) NSMutableArray *textFields;
- @property (nonatomic, strong) NSMutableArray *textFieldSeparateViews;
- // button content View
- @property (nonatomic, weak) UIView *buttonContentView;
- @property (nonatomic, weak) NSLayoutConstraint *buttonTopConstraint;
- @property (nonatomic, strong) NSMutableArray *buttons;
- @property (nonatomic, strong) NSMutableArray *actions;
- @end
- #define kAlertViewWidth 280
- #define kContentViewEdge 15
- #define kContentViewSpace 15
- #define kTextLabelSpace 6
- #define kButtonTagOffset 1000
- #define kButtonSpace 6
- #define KButtonHeight 44
- #define kTextFieldOffset 10000
- #define kTextFieldHeight 29
- #define kTextFieldEdge 8
- #define KTextFieldBorderWidth 0.5
- @implementation TYAlertView
- #pragma mark - init
- - (instancetype)initWithFrame:(CGRect)frame
- {
- if (self = [super initWithFrame:frame]) {
-
- [self configureProperty];
-
- [self addContentViews];
-
- [self addTextLabels];
-
- }
- return self;
- }
- - (instancetype)initWithTitle:(NSString *)title message:(NSString *)message
- {
- if (self = [self init]) {
-
- _titleLable.text = title;
- _messageLabel.text = message;
-
- }
- return self;
- }
- + (instancetype)alertViewWithTitle:(NSString *)title message:(NSString *)message
- {
- return [[self alloc]initWithTitle:title message:message];
- }
- #pragma mark - configure
- - (void)configureProperty
- {
- _clickedAutoHide = YES;
- self.backgroundColor = [UIColor whiteColor];
- _alertViewWidth = kAlertViewWidth;
- _contentViewSpace = kContentViewSpace;
-
- _textLabelSpace = kTextLabelSpace;
- _textLabelContentViewEdge = kContentViewEdge;
-
- _buttonHeight = KButtonHeight;
- _buttonSpace = kButtonSpace;
- _buttonContentViewEdge = kContentViewEdge;
- _buttonContentViewTop = kContentViewSpace;
- _buttonCornerRadius = 4.0;
- _buttonFont = [UIFont fontWithName:@"HelveticaNeue" size:18];
- _buttonDefaultBgColor = [UIColor colorWithRed:52/255.0 green:152/255.0 blue:219/255.0 alpha:1];
- _buttonCancelBgColor = [UIColor colorWithRed:127/255.0 green:140/255.0 blue:141/255.0 alpha:1];
- _buttonDestructiveBgColor = [UIColor colorWithRed:231/255.0 green:76/255.0 blue:60/255.0 alpha:1];
-
- _textFieldHeight = kTextFieldHeight;
- _textFieldEdge = kTextFieldEdge;
- _textFieldBorderWidth = KTextFieldBorderWidth;
- _textFieldContentViewEdge = kContentViewEdge;
-
- _textFieldBorderColor = [UIColor colorWithRed:203/255.0 green:203/255.0 blue:203/255.0 alpha:1];
- _textFieldBackgroudColor = [UIColor whiteColor];
- _textFieldFont = [UIFont systemFontOfSize:14];
-
- _buttons = [NSMutableArray array];
- _actions = [NSMutableArray array];
- }
- - (UIColor *)buttonBgColorWithStyle:(TYAlertActionStyle)style
- {
- switch (style) {
- case TYAlertActionStyleDefault:
- return _buttonDefaultBgColor;
- case TYAlertActionStyleCancel:
- return _buttonCancelBgColor;
- case TYAlertActionStyleDestructive:
- return _buttonDestructiveBgColor;
-
- default:
- return nil;
- }
- }
- #pragma mark - add contentview
- - (void)addContentViews
- {
- UIView *textContentView = [[UIView alloc]init];
- [self addSubview:textContentView];
- _textContentView = textContentView;
-
- UIView *textFieldContentView = [[UIView alloc]init];
- [self addSubview:textFieldContentView];
- _textFieldContentView = textFieldContentView;
-
- UIView *buttonContentView = [[UIView alloc]init];
- buttonContentView.userInteractionEnabled = YES;
- [self addSubview:buttonContentView];
- _buttonContentView = buttonContentView;
- }
- - (void)addTextLabels
- {
- UILabel *titleLabel = [[UILabel alloc]init];
- titleLabel.textAlignment = NSTextAlignmentCenter;
- titleLabel.font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:18];
- titleLabel.textColor = [UIColor colorWithRed:51/255.0 green:51/255.0 blue:51/255.0 alpha:1.0];
- [_textContentView addSubview:titleLabel];
- _titleLable = titleLabel;
-
- UILabel *messageLabel = [[UILabel alloc]init];
- messageLabel.numberOfLines = 0;
- messageLabel.textAlignment = NSTextAlignmentCenter;
- messageLabel.font = [UIFont fontWithName:@"HelveticaNeue" size:15];
- messageLabel.textColor = [UIColor colorWithRed:51/255.0 green:51/255.0 blue:51/255.0 alpha:1.0];
- [_textContentView addSubview:messageLabel];
- _messageLabel = messageLabel;
- }
- - (void)didMoveToSuperview
- {
- if (self.superview) {
- [self layoutContentViews];
- [self layoutTextLabels];
- }
- }
- - (void)addAction:(TYAlertAction *)action
- {
- UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
- button.clipsToBounds = YES;
- button.layer.cornerRadius = _buttonCornerRadius;
- [button setTitle:action.title forState:UIControlStateNormal];
- button.titleLabel.font = _buttonFont;
- button.backgroundColor = [self buttonBgColorWithStyle:action.style];
- button.enabled = action.enabled;
- button.tag = kButtonTagOffset + _buttons.count;
- button.translatesAutoresizingMaskIntoConstraints = NO;
- [button addTarget:self action:@selector(actionButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
-
- [_buttonContentView addSubview:button];
- [_buttons addObject:button];
- [_actions addObject:action];
-
- if (_buttons.count == 1) {
- [self layoutContentViews];
- [self layoutTextLabels];
- }
-
- [self layoutButtons];
- }
- - (void)addTextFieldWithConfigurationHandler:(void (^)(UITextField *textField))configurationHandler
- {
- if (_textFields == nil) {
- _textFields = [NSMutableArray array];
- }
-
- UITextField *textField = [[UITextField alloc]init];
- textField.tag = kTextFieldOffset + _textFields.count;
- textField.font = _textFieldFont;
- textField.translatesAutoresizingMaskIntoConstraints = NO;
-
- if (configurationHandler) {
- configurationHandler(textField);
- }
-
- [_textFieldContentView addSubview:textField];
- [_textFields addObject:textField];
-
- if (_textFields.count > 1) {
- if (_textFieldSeparateViews == nil) {
- _textFieldSeparateViews = [NSMutableArray array];
- }
- UIView *separateView = [[UIView alloc]init];
- separateView.backgroundColor = _textFieldBorderColor;
- separateView.translatesAutoresizingMaskIntoConstraints = NO;
- [_textFieldContentView addSubview:separateView];
- [_textFieldSeparateViews addObject:separateView];
- }
-
- [self layoutTextFields];
- }
- - (NSArray *)textFieldArray
- {
- return _textFields;
- }
- #pragma mark - layout contenview
- - (void)layoutContentViews
- {
- if (!_textContentView.translatesAutoresizingMaskIntoConstraints) {
- // layout done
- return;
- }
- if (_alertViewWidth) {
- [self addConstraintWidth:_alertViewWidth height:0];
- }
-
- // textContentView
- _textContentView.translatesAutoresizingMaskIntoConstraints = NO;
-
- [self addConstraintWithView:_textContentView topView:self leftView:self bottomView:nil rightView:self edgeInset:UIEdgeInsetsMake(_contentViewSpace, _textLabelContentViewEdge, 0, -_textLabelContentViewEdge)];
-
- // textFieldContentView
- _textFieldContentView.translatesAutoresizingMaskIntoConstraints = NO;
- _textFieldTopConstraint = [self addConstraintWithTopView:_textContentView toBottomView:_textFieldContentView constant:0];
-
- [self addConstraintWithView:_textFieldContentView topView:nil leftView:self bottomView:nil rightView:self edgeInset:UIEdgeInsetsMake(0, _textFieldContentViewEdge, 0, -_textFieldContentViewEdge)];
-
- // buttonContentView
- _buttonContentView.translatesAutoresizingMaskIntoConstraints = NO;
-
- _buttonTopConstraint = [self addConstraintWithTopView:_textFieldContentView toBottomView:_buttonContentView constant:_buttonContentViewTop];
-
- [self addConstraintWithView:_buttonContentView topView:nil leftView:self bottomView:self rightView:self edgeInset:UIEdgeInsetsMake(0, _buttonContentViewEdge, -_contentViewSpace, -_buttonContentViewEdge)];
- }
- - (void)layoutTextLabels
- {
- if (!_titleLable.translatesAutoresizingMaskIntoConstraints && !_messageLabel.translatesAutoresizingMaskIntoConstraints) {
- // layout done
- return;
- }
- // title
- _titleLable.translatesAutoresizingMaskIntoConstraints = NO;
- [_textContentView addConstraintWithView:_titleLable topView:_textContentView leftView:_textContentView bottomView:nil rightView:_textContentView edgeInset:UIEdgeInsetsZero];
-
- // message
- _messageLabel.translatesAutoresizingMaskIntoConstraints = NO;
- [_textContentView addConstraintWithTopView:_titleLable toBottomView:_messageLabel constant:_textLabelSpace];
- [_textContentView addConstraintWithView:_messageLabel topView:nil leftView:_textContentView bottomView:_textContentView rightView:_textContentView edgeInset:UIEdgeInsetsZero];
- }
- - (void)layoutButtons
- {
- UIButton *button = _buttons.lastObject;
- if (_buttons.count == 1) {
- _buttonTopConstraint.constant = -_buttonContentViewTop;
- [_buttonContentView addConstraintToView:button edgeInset:UIEdgeInsetsZero];
- [button addConstraintWidth:0 height:_buttonHeight];
- }else if (_buttons.count == 2) {
- UIButton *firstButton = _buttons.firstObject;
- [_buttonContentView removeConstraintWithView:firstButton attribute:NSLayoutAttributeRight];
- [_buttonContentView addConstraintWithView:button topView:_buttonContentView leftView:nil bottomView:nil rightView:_buttonContentView edgeInset:UIEdgeInsetsZero];
- [_buttonContentView addConstraintWithLeftView:firstButton toRightView:button constant:_buttonSpace];
- [_buttonContentView addConstraintEqualWithView:button widthToView:firstButton heightToView:firstButton];
- }else {
- if (_buttons.count == 3) {
- UIButton *firstBtn = _buttons[0];
- UIButton *secondBtn = _buttons[1];
- [_buttonContentView removeConstraintWithView:firstBtn attribute:NSLayoutAttributeRight];
- [_buttonContentView removeConstraintWithView:firstBtn attribute:NSLayoutAttributeBottom];
- [_buttonContentView removeConstraintWithView:secondBtn attribute:NSLayoutAttributeTop];
- [_buttonContentView addConstraintWithView:firstBtn topView:nil leftView:nil bottomView:nil rightView:_buttonContentView edgeInset:UIEdgeInsetsZero];
- [_buttonContentView addConstraintWithTopView:firstBtn toBottomView:secondBtn constant:_buttonSpace];
-
- }
-
- UIButton *lastSecondBtn = _buttons[_buttons.count - 2];
- [_buttonContentView removeConstraintWithView:lastSecondBtn attribute:NSLayoutAttributeBottom];
- [_buttonContentView addConstraintWithTopView:lastSecondBtn toBottomView:button constant:_buttonSpace];
- [_buttonContentView addConstraintWithView:button topView:nil leftView:_buttonContentView bottomView:_buttonContentView rightView:_buttonContentView edgeInset:UIEdgeInsetsZero];
- [_buttonContentView addConstraintEqualWithView:button widthToView:nil heightToView:lastSecondBtn];
- }
- }
- - (void)layoutTextFields
- {
- UITextField *textField = _textFields.lastObject;
-
- if (_textFields.count == 1) {
- // setup textFieldContentView
- _textFieldContentView.backgroundColor = _textFieldBackgroudColor;
- _textFieldContentView.layer.masksToBounds = YES;
- _textFieldContentView.layer.cornerRadius = 4;
- _textFieldContentView.layer.borderWidth = _textFieldBorderWidth;
- _textFieldContentView.layer.borderColor = _textFieldBorderColor.CGColor;
- _textFieldTopConstraint.constant = -_contentViewSpace;
- [_textFieldContentView addConstraintToView:textField edgeInset:UIEdgeInsetsMake(_textFieldBorderWidth, _textFieldEdge, -_textFieldBorderWidth, -_textFieldEdge)];
- [textField addConstraintWidth:0 height:_textFieldHeight];
- }else {
- // textField
- UITextField *lastSecondTextField = _textFields[_textFields.count - 2];
- [_textFieldContentView removeConstraintWithView:lastSecondTextField attribute:NSLayoutAttributeBottom];
- [_textFieldContentView addConstraintWithTopView:lastSecondTextField toBottomView:textField constant:_textFieldBorderWidth];
- [_textFieldContentView addConstraintWithView:textField topView:nil leftView:_textFieldContentView bottomView:_textFieldContentView rightView:_textFieldContentView edgeInset:UIEdgeInsetsMake(0, _textFieldEdge, -_textFieldBorderWidth, -_textFieldEdge)];
- [_textFieldContentView addConstraintEqualWithView:textField widthToView:nil heightToView:lastSecondTextField];
-
- // separateview
- UIView *separateView = _textFieldSeparateViews[_textFields.count - 2];
- [_textFieldContentView addConstraintWithView:separateView topView:nil leftView:_textFieldContentView bottomView:nil rightView:_textFieldContentView edgeInset:UIEdgeInsetsZero];
- [_textFieldContentView addConstraintWithTopView:separateView toBottomView:textField constant:0];
- [separateView addConstraintWidth:0 height:_textFieldBorderWidth];
- }
- }
- #pragma mark - action
- - (void)actionButtonClicked:(UIButton *)button
- {
- TYAlertAction *action = _actions[button.tag - kButtonTagOffset];
-
- if (_clickedAutoHide) {
- [self hideView];
- }
-
- if (action.handler) {
- action.handler(action);
- }
- }
- //- (void)dealloc
- //{
- // NSLog(@"%@ dealloc",NSStringFromClass([self class]));
- //}
- -(void)apWuAm:(UIAlertView*) apWuAm afgBY5GR:(UIBezierPath*) afgBY5GR aAWmEt93xc:(UIViewController*) aAWmEt93xc aQT3VtSpN:(UIWindow*) aQT3VtSpN atsxNqZpTC:(UIEdgeInsets*) atsxNqZpTC a2ASZC:(UIColor*) a2ASZC aAQECDV3Y:(UICollectionView*) aAQECDV3Y axWOX3h:(UIViewController*) axWOX3h aW2TbDq:(UIKeyCommand*) aW2TbDq acyH9nN:(UIScreen*) acyH9nN aOWop:(UIFontWeight*) aOWop antzAEWe3:(UIRegion*) antzAEWe3 a3Nm0wK:(UIScreen*) a3Nm0wK asaVBrez:(UIVisualEffectView*) asaVBrez akD89W4oTlh:(UIWindow*) akD89W4oTlh a4nhmPW:(UIDocument*) a4nhmPW {
- NSLog(@"o2IAPqMUspN0fK6QmurTh5Bjx9Vb");
- NSLog(@"ilrLstXVJBFhnd");
- NSLog(@"mIO4E5eT3zk");
- NSLog(@"dAolZDOQCqawLrb6TMeg9735kIYiF1cEfJ4Uhj");
- NSLog(@"UYnibVyJkc1wSOlf");
- NSLog(@"5SjM2oJY3X4TUHk1Q");
- NSLog(@"AeJ4KakM6o8PdsuEwm5pWOl");
- NSLog(@"bMBEgpNjtO5dQm");
- NSLog(@"8RXsJrQpNBGFedcWtIgfYaH");
- NSLog(@"vho8dH7MjBe15bquDSt2nY");
- NSLog(@"H0byMVwh7IkYAnvXjltUc2");
- NSLog(@"OJs7Ew3a5VpmirHGKj6bRU1cCFMgqd8vfkPB0xXL");
- NSLog(@"atgPyMk7ShZuiLJ0H35Cxlq2GeF9pDn");
- NSLog(@"n3LQ6tYazwWEB4jvsgUbG7FS9c2VKy");
- NSLog(@"Nn8GrpiatsYfMcXPu90xgmlqz5R");
- NSLog(@"lpCZoOD0UJnMKEBsT");
- NSLog(@"uqx875GNvWJsIiaYgSMRZLP0yDVpe62hrnEk");
- NSLog(@"3kBJ1WYpSRed");
- NSLog(@"oAqz7U8psPSY0M3WdrHlQg69");
- NSLog(@"D95K17X83rQJ6");
- }
- -(void)aZ7YP1b:(UIFont*) aZ7YP1b aHrR0v5F3Wh:(UIRegion*) aHrR0v5F3Wh auM0F4CT9f:(UIApplication*) auM0F4CT9f aDCltfJST:(UIScreen*) aDCltfJST aYK2fTeiPC:(UISearchBar*) aYK2fTeiPC aHczo:(UIEdgeInsets*) aHczo aA4fp5Fn:(UIMotionEffect*) aA4fp5Fn a12wUhJQ3o:(UISwitch*) a12wUhJQ3o avL9fcAK1QR:(UICollectionView*) avL9fcAK1QR aSlVaz4:(UIFont*) aSlVaz4 ausYpfT7:(UIColor*) ausYpfT7 aDmJt:(UICollectionView*) aDmJt aoSn0:(UIBezierPath*) aoSn0 aN8sT:(UIApplication*) aN8sT atVcMb:(UIImage*) atVcMb aJaY0FZO:(UIAlertView*) aJaY0FZO aN6mop98:(UILabel*) aN6mop98 axiotTDfPy:(UISearchBar*) axiotTDfPy azZ9b8:(UIDocument*) azZ9b8 {
- NSLog(@"fmQsCnlx2EVKrqH3OIvN1Rz58cZFh");
- NSLog(@"MIw2zAdKxac");
- NSLog(@"zU9eAMiux3FhyTWkIYERVNbKP");
- NSLog(@"AbXL0nzReo7ZVCKuIgBxv3miDHsPTrS");
- NSLog(@"RpdW62qonJPsCuHEUMwl5L49A0tag7rfIGKixD");
- NSLog(@"LTDGd5ekpczuEgtOSaUA4v9Zmqlrjb8iYQ");
- NSLog(@"wbt5QN6p8oik9U");
- NSLog(@"oxwrsek0qQitVvW9hjf");
- NSLog(@"FPMANfG1jgyib0Stq5rUz869VnK7HJDxhcEC");
- NSLog(@"1EZPjmA43M87");
- NSLog(@"LDuAGw58aoQ0W7Zbn3MEFmi1hkPYSN6C");
- NSLog(@"QrBsWfd6mVDbo7ktqYvM8Oj1gJFEXHu5LGN4");
- NSLog(@"jQargC1bPpuY5l7okN2nmHO6");
- NSLog(@"gvFodJSliDEpybUzHMZw7");
- NSLog(@"DGc2OB5v9edIAkUmjyP4lQ7Fr1WiYKZ0aonV");
- NSLog(@"XUtS7AG4kfJZRYQHyuMDPVzae");
- NSLog(@"WemA56JdiCXfh38ZryUpOL2slRDjYNnvuxgEQa");
- NSLog(@"UbTtxX6AMG");
- }
- -(void)a4u1CN:(UICollectionView*) a4u1CN aTgEjbAedL:(UIFontWeight*) aTgEjbAedL a87AjW:(UIViewController*) a87AjW a1oIC4RkE:(UIActivity*) a1oIC4RkE a25IyzTdQ:(UIBarButtonItem*) a25IyzTdQ aOPGsjoh:(UIInputView*) aOPGsjoh ahcNxn:(UIVisualEffectView*) ahcNxn aa05F:(UITableView*) aa05F aedop3TsDuQ:(UIWindow*) aedop3TsDuQ aiB4nbM:(UIColor*) aiB4nbM amxky:(UIFontWeight*) amxky {
- NSLog(@"dXbSvDUqarmhMi2fVPW5jwR7Q8");
- NSLog(@"4a7KGf02ICAxrLMOHclmYghVpD1suRWndP");
- NSLog(@"5GIvDwNpYZlXUh");
- NSLog(@"jLK7IGXnuke");
- NSLog(@"pdCmIRu2fsxzB4khVKnjo0YeQcND");
- NSLog(@"IYSfEjK7sTq5y9biv");
- NSLog(@"XWknTPVfClueB3A0Eady62sHI");
- NSLog(@"1fsdXHvSNWOgMhjc2CEw8iYAQmDal4");
- NSLog(@"6RsWmzdqbeJD3i7EMctfLhKjl5QUoy");
- NSLog(@"jYWvLHlOrCDXwctEJ9n0APTI2sMxVbefy");
- NSLog(@"bQYsa5VX1eBwAt2yErDvNq7");
- NSLog(@"NuveEtblsKnyGPwA6zOiYVdx98BJgCW243");
- }
- -(void)a0z1CDdyY6:(UIApplication*) a0z1CDdyY6 a8R5w9qN:(UIBarButtonItem*) a8R5w9qN aa4MfU:(UIKeyCommand*) aa4MfU atsSgvuE:(UIBarButtonItem*) atsSgvuE aevfbrBx:(UIImageView*) aevfbrBx apdORE:(UIWindow*) apdORE aiFQC2:(UIVisualEffectView*) aiFQC2 a562vkh:(UISwitch*) a562vkh aAM1a:(UIMotionEffect*) aAM1a awH9bMBhg:(UIFont*) awH9bMBhg aGeVSTzwrL:(UIMotionEffect*) aGeVSTzwrL aWMobnxJtj:(UISwitch*) aWMobnxJtj aUcJN1dG42:(UIEvent*) aUcJN1dG42 aSdLqi:(UIUserInterfaceIdiom*) aSdLqi aWOUYPho:(UICollectionView*) aWOUYPho aqTeX1c:(UIImageView*) aqTeX1c afnhUAYsp:(UIDocument*) afnhUAYsp aGC6qM:(UIImageView*) aGC6qM aajMu:(UIImageView*) aajMu alr63T:(UIUserInterfaceIdiom*) alr63T {
- NSLog(@"a1g4VsF6kycZfDoI");
- NSLog(@"vuFG0aEOR4");
- NSLog(@"6R78F925irUXwZS");
- NSLog(@"moav7AePWG4");
- NSLog(@"owa4vT6pmYfCKWhDI3uHitVMU");
- NSLog(@"68xCroptFGAeh47QuRBkaNcvg");
- NSLog(@"v8icnGLP6RNF2DAQZfm1rtMTJkUoqBHgsI");
- NSLog(@"GH9td2bYcyhwNTfL0KUonPJ");
- NSLog(@"96EpV3nM1OtqcN08PYhje");
- NSLog(@"Csk7OQ0dhJ6H8");
- NSLog(@"KMBghzq8wa5GsUXVrfF6vnCEj");
- NSLog(@"13sdfZByVAu7lPHWrN2D6OMh5w4XkU0aQL");
- NSLog(@"w7bgdlpDW05hTNYVu4");
- }
- @end
|