vote up 1 vote down star
1

How to convert NSString value to NSData..

thanks and regards

flag

2 Answers

vote up 10 vote down
NSString* str= @"teststring";
NSData* data=[str dataUsingEncoding:NSUTF8StringEncoding];
link|flag
vote up 0 vote down

Maybe something like this

NSString * myString = @"This is my string";
char * cString = [myString UTF8String];
NSData * myData = [[NSData alloc] initWithBytes:cstring length:strlen(cString)+1];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.