Convert a NSString

Posted by zp26 on Stack Overflow See other posts from Stack Overflow or by zp26
Published on 2010-05-07T21:01:58Z Indexed on 2010/05/07 21:08 UTC
Read the original article Hit count: 156

Filed under:
|
|
|

My situation is explained in the code below. I need to send via a socket NSString drawn from a TextBox

Thank you very much

NSString *string = fieldTesto.txt;
// I Find an istruction for insert s string in to the CFSocketSend
UInt8 message[] = "Hello world";
CFDataRef data = 
             CFDataCreate(NULL, message, sizeof(message));
CFSocketSendData(s, NULL, data, 0);
CFRelease(data);

© Stack Overflow or respective owner

Related posts about nsstring

Related posts about sockets