Created
October 9, 2015 08:57
-
-
Save valvoline/88d4b1b2489854856ba9 to your computer and use it in GitHub Desktop.
Simple UIApplication Debugger for handleNonLaunchSpecificActions related bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIApplication+Debug.m | |
// | |
// Created by valvoline on 09/10/15. | |
// Copyright © 2015 ISALabs. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface UIApplication (Debug) | |
- (void)_handleNonLaunchSpecificActions:(id)arg1 forScene:(id)arg2 withTransitionContext:(id)arg3 completion:(void(^)())completionHandler; | |
@end | |
@implementation UIApplication (Debug) | |
- (void)_handleNonLaunchSpecificActions:(id)arg1 forScene:(id)arg2 withTransitionContext:(id)arg3 completion:(void(^)())completionHandler | |
{ | |
NSLog(@"arg1: %@\narg2: %@\narg3: %@\ncompletion: %@", arg1, arg2, arg3, completionHandler); | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there a swift version of this?