From e7301d81d3bbb409984fb20802e2d9dd346a8043 Mon Sep 17 00:00:00 2001 From: Andy Prock Date: Thu, 23 Jul 2015 10:16:18 -0700 Subject: [PATCH] remove numbers from selectors in UDPSockets RCTModuleMethod's initWithObjCMethodName will not properly parse methods with numerals in their names, so replaced base64String: with string: --- UdpSockets.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UdpSockets.m b/UdpSockets.m index 9943674..812879a 100644 --- a/UdpSockets.m +++ b/UdpSockets.m @@ -58,7 +58,7 @@ RCT_EXPORT_METHOD(bind:(NSString*)cId } RCT_EXPORT_METHOD(send:(NSString*)cId - base64String:(NSString*)base64String + string:(NSString*)base64String port:(int)port address:(NSString*)address callback:(RCTResponseSenderBlock)callback) {