Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
20k views

How to convert CFStringRef to NSString?

NSString *aNSString; CFStringRef aCFString; aCFString = CFStringCreateWithCString(NULL, [aNSString UTF8String], NSUTF8StringEncoding); aCFString = CFXMLCreateStringByUnescapingEntities(NULL, ...
5
votes
2answers
101 views

Generate a UUID string with ARC enabled

I need to generate a UUID string in some code with ARC enabled. After doing some research, this is what I came up with: CFUUIDRef uuid = CFUUIDCreate(NULL); NSString *uuidStr = (__bridge_transfer ...
5
votes
2answers
2k views

How do I print a CFStringRef in a DTrace action?

I have a DTrace probe catching calls to a function, and one of the function's arguments is a CFStringRef. This is private structure that holds a pointer to a unicode string. But the CFStringRef is not ...
2
votes
1answer
49 views

CFString objects being declared by [NSBundle mainBundle]

I am working on performance improvement of my ios cocos2d game. I was checking memory allocations of the app with the help of Instruments tool when I noticed one thing. There are too many CFString ...
2
votes
2answers
98 views

Mono C# PInvoke - Get CFString from external lib

I have a lib that returns a CFString, and I'm trying to get that string value in C#.. The problem is that I don't know how to do this in C#.. Making the external function return a CFString won't work ...
2
votes
1answer
721 views

How to convert NSString path to CFURLRef (for iOS 3.1)?

I display a PDF in a UIScrollView. To do so I use : myDocumentRef = CGPDFDocumentCreateWithURL((CFURLRef)[[NSBundle mainBundle] URLForResource:@"salonMap" withExtension:@"pdf"]); Now, I try to make ...
2
votes
1answer
722 views

How to silence Xcode 4 warning “Semantic Issue: CFString literal contains NUL character”?

I am using something like: illegalCharacters = [[NSCharacterSet characterSetWithCharactersInString:@"\x00\.."] retain]; Xcode 4 displays a warning for it (Semantic issue: CFString literal ...
2
votes
2answers
709 views

What kind of strings does CFStringCreateWithFormat expects as arguments?

The below example should work with Unicode strings but it doesn't. CFStringRef aString = CFSTR("one"); // in real life this is an Unicode string CFStringRef formatString = CFSTR("This is %s ...
1
vote
1answer
71 views

URL encode string in ios failing

I am trying to url encode a string in my iOS 5 app using ARC. This is how i do it: - (NSString *)escape:(NSString *)text { return (__bridge NSString ...
1
vote
0answers
26 views

Passing a CFStringRef pointer to a C function in MacRuby

I wanted to call the following function from OS X's DVDPlayback framework: OSStatus DVDGetMediaVolumeCFName ( CFStringRef *outDiscVolumeCFName ); Eventually, I came up with the following working ...
1
vote
0answers
124 views

-[CFString hash]: message sent to deallocated instance

I'm trying to fetch EKEvents from the Event Store to populate a UITableView and display a month list view. Basically it works and I'm doing it like this: - (void) reloadEvents { for ( NSString ...
1
vote
3answers
118 views

What Is -[NSURL _fastCharacterContents]:?

So I'm calling this in a method: -(id)initWithContentURL:(NSString *)url { if (self = [super init]) { NSLog(@"xSheetMusicViewController - %@",url); // Casting an NSString object pointer to a ...
1
vote
1answer
104 views

CFData vs CFString

I have a CFMutableDictionaryRef, part of which in debugger is: "device-id" = <72270000>; model = <474d4120 39353000>; "vendor-id" = <86800000>; Now I can get value of the key ...
1
vote
1answer
334 views

Convert a CFStringRef to a C string?

Hello lovely computer people: I would like to convert the following CFStringRef into a CString. Any idea how? recordFilePath = (CFStringRef)[NSTemporaryDirectory() stringByAppendingPathComponent: ...
1
vote
0answers
255 views

Variable Not a CFString

I am using a database to populate a table view. I created an NSMutable Array of object in the AppDelegate. The Array is populated from the DB as follows: if(sqlite3_open([dbPath UTF8String], ...
1
vote
3answers
843 views

How To Convert CFDataRef from NSString?

I am trying to convert CFDataRef from NSString. I googled a lot but did n't succeed. I tried following but goes in vain.. CFDataRef myDataRef = (CFDataRef)[myString ...
0
votes
1answer
42 views

Can set to nil but not to a diferent thing

i think i dont finish to understand all about memory and that stuff but this is my problem: I have a variable defined idActual on a view that will be pushed (var defined in its header), i can read ...
0
votes
4answers
75 views

iphone app is crashing while assigning a string value to the table view

i my iphone app while assigning a string value to the table view its crashing, i have the following code in cellForRowAt index path method while assigning a string value to the table view ...
0
votes
0answers
35 views

CTTypesetterRef with control characters

How can I display control characters in custom NSView? - (void)drawRect:(NSRect)dirtyRect { ... const UInt8 bytes[4] = {'\x31','\x03', '\x33', 0}; CFIndex size = 4; CFStringRef str = ...
0
votes
1answer
145 views

How to get an array of sentences using CFStringTokenizer?

I've created an string tokenizer like this: stringTokenizer = CFStringTokenizerCreate(NULL, (CFStringRef)str, CFRangeMake(0, [str length]), kCFStringTokenizerUnitSentence, userLocale); But how do I ...
0
votes
1answer
266 views

CFStringRef setting a value to “”

I have a variable which is a CFStringRef and I perform a check to make sure its not 1 specific value. If it is then I want to set it to the NSString equivalent of @"" Here's the code CFStringRef ...
0
votes
3answers
96 views

Diagnosing error: “release sent to deallocated object”

I received this error message: message [CFString release] sent to deallocated object at 0x........ How can I know which string caused this problem? Can I figure out which CFString it is using the ...
0
votes
1answer
420 views

A variable not a CFString

I'm coding on Ojective-C just for month and get in the deadlock. Need help. Here is the story: I have a simple class LXPPlayingCard: #import <Cocoa/Cocoa.h> @interface LXPPlayingCard : ...
0
votes
1answer
377 views

I want to pass a variable in CFSTR?

In following coding, i want to pass variable via CFSTR, how can I ? ABMutableMultiValueRef address = ABMultiValueCreateMutable(kABDictionaryPropertyType); // Set up keys and values for the ...
0
votes
1answer
85 views

Class dump and CFObjects

Does class dump get confused by CFObjects/structs? I used class dump on an application and one of the method's argument was a struct arg1 which is a BInstantMessage: struct BInstantMessage { void ...
0
votes
1answer
261 views

What is __CFString?

I have arg1 which is an IMessage. IMessage is defined as: struct IMessage { ... struct CFString _field2; ... }; and CFString is defined as: struct CFString { void ...
0
votes
2answers
222 views

What NSString compare method call is equivalent to a CFStringCompare function call?

I am converting some old carbon code to Cocoa and need to use a comparison function that will return the same result as the one in carbon. I am calling: CFStringCompare( stringA, stringB, ...
0
votes
2answers
227 views

CFString release, why only on ipad?

I have the same project, that at the beginning, it worked also on ipad, but now it works only on iphone devices, not ipad ones. It's a project iphone/ipad compatibile. Probably i edit something but ...
0
votes
1answer
564 views

CFString isNaturallyRTL - message sent to deallocated instance

I already googled for "CFString isNaturallyRTL" with 0 results. these are my classes: //in .H @interface myViewController : UIViewController { UITextField *from; UITextField *to; NSString *fromText; ...
0
votes
1answer
1k views

Returning NSString, Error Message: Variable is not CFString

i shortly started Programming Mac OS X Applications with Cocoa, so its a realy New bee question. Sorry about this. At first my code snippet: - (id)tableView:(NSTableView *)tableView ...
0
votes
1answer
49 views

How to replace old ParamText/StandartAlert with newer CFString replacements?

ParamText() is an really old way of replacing parameters in a string that is based on Pascal strings. Also StandardAlert is not quite Unicode ready. The new message box (not so new) replacement is ...
0
votes
1answer
2k views

iPhone + NSString error

I have static NSString as below: static NSString *bowlerName; In the code I am assigning it with some value as below: -(void)setBowlerSpecifications:(int)playerId { Player *objPlayer = ...
0
votes
1answer
1k views

Create constant NSString from constant CFStringRef

I am attempting to create a Cocoa Framework that is an object-oriented wrapper around a procedural framework written in the Core Foundation. The procedural framework has a number of constants that are ...
0
votes
1answer
458 views

Creating a CFString object with JNA

I'm trying to get the hang of using JNA with Mac OS X. I want to access a Carbon library, for which there is no Cocoa equivalent, so Rococoa can't help me (I think...) I'm stuck when trying to call a ...
0
votes
1answer
135 views

Get a calculated length of a Core Foundation string given an encoding

Is there a way to get the length in bytes of a CFString given an arbitrary character encoding? It seems possible because the function CFStringGetSmallestEncoding must do some calculations already, but ...
-1
votes
4answers
82 views

variable is not a CFStringRef

I have this: partenaire_lat = 48.8160525; partenaire_lng = 2.3257800; And obtain a NSString like this: NSString *endPoint =[NSString stringWithFormat:@"%@,%@", partenaire_lat, partenaire_lng]; ...