remove numbers from selectors in UDPSockets

RCTModuleMethod's initWithObjCMethodName will not properly parse methods with numerals in their names, so replaced base64String: with string:
This commit is contained in:
Andy Prock 2015-07-23 10:16:18 -07:00
parent bda8368289
commit e7301d81d3
1 changed files with 1 additions and 1 deletions

View File

@ -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) {