I am trying to understand the correct way of getting an NSString
from a CFStringRef
in ARC?
Same for going the opposite direction, CFStringRef
to NSString
in ARC?
What is the correct way to do this without creating memory leaks?
I am trying to understand the correct way of getting an NSString
from a CFStringRef
in ARC?
Same for going the opposite direction, CFStringRef
to NSString
in ARC?
What is the correct way to do this without creating memory leaks?
Copyright © 2021 Jogjafile Inc.
Typically
and
Now, if you want to know why the
__bridge
keyword is there, you can refer to the Apple documentation. There you will find:Which means that in the above cases you are casting the object without changing the ownership. This implies that in neither case you will be in charge of handling the memory of the strings.
There may also be the case in which you want to transfer the ownership for some reason.
For instance consider the following snippet
in such a case you may want to save a
CFRelease
by transferring the ownership when casting.The ownership of
str
has been transferred, so now ARC will kick in and release the memory for you.On the other way around you can cast a
NSString *
to aCFString
using a__bridge_retained
cast, so that you will own the object and you'll have to explicitly release it by usingCFRelease
.To wrap it up you can have
NSString → CFString
CFString → NSString