vote up 3 vote down star
1
NSString *aNSString;
CFStringRef aCFString;
aCFString = CFStringCreateWithCString(NULL, [aNSString UTF8String], NSUTF8StringEncoding);
aCFString = CFXMLCreateStringByUnescapingEntities(NULL, aCFString, NULL);

How can I get a new NSString from aCFString?

flag

3 Answers

vote up 14 vote down check

NSString and CFStringRef are "Toll free bridged", meaning that you can simply typecast between them.

For example:

CFStringRef aCFString = (CFStringRef)aNSString;

works perfectly and transparently. Likewise:

NSString *aNSString = (NSString *)aCFString;

works as well. The key thing to note is that CoreFoundation will often return objects with +1 reference counts, meaning that they need to be released (all CF[Type]Create format functions do this).

The nice thing is that in Cocoa you can safely use autorelease or release to free them up.

link|flag
vote up 5 vote down

They are equivalent, so you can just cast the CFStringRef:

NSString *aNSString = (NSString*)aCFString;

For more info, see Interchangeable Data Types.

link|flag
vote up 1 vote down

I'll add that not only can you go from CFString to NSString with only a type-cast, but it works the other way as well. You can drop the CFStringCreateWithCString message, which is one fewer thing you need to release later. (CF uses Create where Cocoa uses alloc, so either way, you would have needed to release it.)

The resulting code:

NSString *escapedString;
NSString *unescapedString = [(NSStringRef *) CFXMLCreateStringByUnescapingEntities(NULL, (CFStringRef) escapedNSString, NULL) autorelease];
link|flag

Your Answer

Get an OpenID
or

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