Created
February 6, 2020 17:19
-
-
Save andr-ggn/6035fe061e9580cb7f6c4e95f634cc1c 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
SEL mySel = @selector(onConversionDataSuccess:); | |
void (*myMsgSend)(id _delegate, SEL mySel, id param1); | |
myMsgSend = (void(*)(id, SEL, id))objc_msgSend; | |
myMsgSend(_delegate, mySel, conversionDict); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment