Created
February 6, 2020 17:01
-
-
Save andr-ggn/47eb5a7b45ec16e773ddd6dd0a52d3d6 to your computer and use it in GitHub Desktop.
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
NSLog(@"DEBUG ------"); | |
dispatch_async(dispatch_get_main_queue(), ^{ | |
NSLog(@"`dispatch_get_main_queue`"); | |
if (_delegate != nil) { | |
NSLog(@"`_delegate != nil`"); | |
if ([_delegate respondsToSelector:@selector(onConversionDataSuccess:)]) { | |
NSLog(@"`respondsToSelector`"); | |
[_delegate performSelector:@selector(onConversionDataSuccess:) withObject:conversionDict]; | |
NSLog(@"conversionDict: %@", conversionDict); | |
NSLog(@"FINISH -------"); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment