Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cast of Objective-C pointer type 'NSString *' to C pointer type 'CFStringRef' (aka 'const struct __CFString *') requires a bridged cast

When converting an Objective-C program to a Objective-C ARC, I get the error:

"cast of Objective-C pointer type 'NSString *' to C pointer type 'CFStringRef' (aka 'const struct __CFString *') requires a bridged cast "

The code is as follows:

- (NSString *)_encodeString:(NSString *)string
{
    NSString *result = (NSString *)CFURLCreateStringByAddingPercentEscapes(NULL, 
                                   (CFStringRef)string, // this is line in error
                                   NULL, 
                                   (CFStringRef)@";/?:@&=$+{}<>,",
                                   kCFStringEncodingUTF8);
    return [result autorelease];
}

What is a bridged cast?

Screenshot for error

like image 754
Michael Rowe Avatar asked Jul 17 '11 17:07

Michael Rowe


3 Answers

Have a look at the ARC documentation on the LLVM website. You'll have to use __bridge or one of the other keywords.

This is because Core Foundation objects (CF*Refs) are not controlled by ARC, only Obj-C objects are. So when you convert between them, you have to tell ARC about the object's ownership so it can properly clean them up. The simplest case is a __bridge cast, for which ARC will not do any extra work (it assumes you handle the object's memory yourself).

like image 68
jtbandes Avatar answered Nov 03 '22 01:11

jtbandes


Here is a nice ARC tutorial that I found to be easier to understand than Apple's documentation that @jtbandes references.

Take a look at the section titled "Toll free bridging" in particular.

like image 25
benvolioT Avatar answered Oct 16 '22 08:10

benvolioT


I know this is an old thread, I came across this issue while I need to use

- (NSString *)URLEncodedString 
{
    NSString *result = (NSString *)CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,
                                                                       (CFStringRef)self,
                                                                       NULL, CFSTR("!*'();:@&=+$,/?%#[]"),
                                                                       kCFStringEncodingUTF8);
[result autorelease];
return result;
}

So what I did is go to Target > Build phase > Compile sources. There is your file listed, double click on that and add following lines next to your file.

-fno-objc-arc
like image 4
Nij Avatar answered Nov 03 '22 00:11

Nij