Tagged Questions

Core Foundation provides the fundamental data types and essential services that underlie both the Cocoa and Carbon environments on Mac OS X.

learn more… | top users | synonyms (1)

13
votes
6answers
9k views

Converting plist to binary plist

Apple strongly recommends using the binary plist format when reading large XML-based data sets into iPhone apps. Among their reasoning is the fact that XML parsing is very taxing on the iPhone. ...
11
votes
4answers
7k views

Testing file existence using NSURL

Snow Leopard introduced many new methods to use NSURL objects to refer to files, not pathnames or Core Services' FSRefs. However, there's one task I can't find a URL-based method for: Testing whether ...
10
votes
2answers
2k views

Difference between Foundation Framework and Core Foundation Framework?

I try to get the hang of it, but for now both seem the same thing to me. However, Xcode allows to create an Console App with choice of using "Core Foundation" or just "Foundation". Maybe someone can ...
9
votes
4answers
2k views

Why would CFRelease(NULL) crash?

Is there a reason why CFRelease does not check for NULL? Isn't it unacceptable when [nil release]; free(NULL); delete NULL; all work perfectly fine?
8
votes
4answers
3k views

Releasing Core Foundation object references

Do I need to release a Core Foundation objects to clear up memory? And if so, how? For example, in the code: ABAddressBookRef addressBook = ABAddressBookCreate(); CFArrayRef peopleArray = ...
8
votes
3answers
2k views

What does the 'k' prefix indicate in Apple's APIs?

I've run across many examples of Core Foundation variables named k + someVariableNameHere or k + APILibraryName(2Char) + someVariableNameHere. What does this prefix K indicate? Examples include: ...
6
votes
1answer
584 views

How to resolve CGDirectDisplayID changing issues on newer multi-GPU Apple laptops in Core Foundation/IO Kit?

In Mac OS X, every display gets a unique CGDirectDisplayID number assigned to it. You can use CGGetActiveDisplayList() or [NSScreen screens] to access them, among others. Per Apple's docs: A ...
5
votes
1answer
316 views

Returning an autorelease'd CFTypeRef with ARC

I am new to Automatic Reference Counting with LLVM and Objective-C, and have a question about returning CGImageRefs from my Objective-C function. In the days of manual reference counting, it was ...
5
votes
6answers
4k views

Is there a method to generate a standard 128bit GUID (UUID) on the Mac?

Is there a built in function equivalent to .NET's Guid.NewGuid(); in Cocoa? My desire is to produce a string along the lines of 550e8400-e29b-41d4-a716-446655440000 which represents a unique ...
4
votes
1answer
79 views

Cast of an indirect pointer to an Objective-C pointer to 'CFReadStreamRef *' is disallowed with ARC

I want to use CFStreamCreatePairWithSocketToHost with NSInput- and OutputStreams. I have two ivars NSInputStream *_inputStream and NSOutputStream *_outputStream. The following gives me two error ...
4
votes
2answers
295 views

Casting an NSError return to a CFErrorRef return

I have a function that returns an NSError object by reference: NSData *foo(NSData *foo, NSError *__autoreleasing *outError); This function uses an API that takes a pointer to storage for a ...
4
votes
4answers
2k views

How do I implement a bit array in C / Objective C

iOS / Objective-C: I have a large array of boolean values. This is an inefficient way to store these values – at least eight bits are used for each element when only one is needed. How can I ...
4
votes
3answers
2k views

Getting “global” mouse position in Mac OS X

How can I get in Mac OS X "global" mouse position - I mean how can I in cocoa/cf/whatever find out cursor position even if it's outside the window, and even if my window is inactive? I know it's ...
4
votes
3answers
2k views

What's the right memory management pattern for buffer->CGImageRef->UIImage?

I have a function that takes some bitmap data and returns a UIImage * from it. It looks something like so: UIImage * makeAnImage() { unsigned char * pixels = malloc(...); // ... ...
3
votes
2answers
30 views

How to properly use Foundation's NSString with CoreFoundation functions?

I'd like to simplify some of my keychain services code and use CFDictionarySetValue with Foundation's NSString. Declaration of CFDictionarySetValue goes like that: void ...
3
votes
1answer
158 views

What to do when “memory leaks” are caused by the Foundation framework?

The application I'm working on at the moment is accumulating more and more memory as time passes. It's not really a memory leak, since the Leaks tool doesn't recognize it as a leak, but it is ...
3
votes
1answer
201 views

CFRelease vs CGPathRelease

The following is a snippet of code from the Omni frameworks: CGMutablePathRef path = CGPathCreateMutable(); CGPathAddRect(path, NULL/*transform*/, rect); self->_path = CGPathCreateCopy(path); ...
3
votes
2answers
246 views

Creating a custom CFType

Is it possible to create opaque types not derived from CFTypeRef which can be retained/released with CFRetain/CFRelease? Or how do I derive a new type from a CFType?
3
votes
2answers
287 views

Sending messages to a thread?

I need to imlement in cocoa, a design that relies on multiple threads. I started at the CoreFoundation level - I created a CFMessagePort and attached it to the CFRunLoop, but it was very inconvenient ...
3
votes
3answers
538 views

Malloc to a CGPoint Pointer throwing EXC_BAD_ACCESS when accessing

I am trying to use a snippet of code from a Apple programming guide, and I am getting a EXC_BAD_ACCESS when trying to pass a pointer to a function, right after doing a malloc. (For Reference: iPhone ...
3
votes
1answer
350 views

Apple Core Foundation license

A short but sweet question: Can I use Apple's open source Core Foundation (CF classes) in a commercial product for free? That is, can I compile and link against the libraries without open sourcing my ...
3
votes
3answers
687 views

Difference between class property mVar and instance variable self.mVar

I'm some what confused as to the difference between accessing an instance variable via self or just by name (when working inside the class). For instance, take this class: .h: @interface Register : ...
3
votes
2answers
399 views

Creating Core Foundation classes

Since I can't seem to find any documentation on this subject, is it possible to create your own Core Foundation "class"? (classes as in ones that can be used with CFRetain() and CFRelease) I want to ...
3
votes
2answers
476 views

Storing a C struct in CFMutableDictionary

Since there is no counterpart to NSValue in Core Foundation, how are we supposed to store C structs in a CFMutableDictionary?
3
votes
2answers
1k views

CFReadStreamHasBytesAvailable polling - best practices

I'm currently polling my CFReadStream for new data with CFReadStreamHasBytesAvailable. (First, some background: I'm doing my own threading and I don't want/need to mess with runloop stuff, so the ...
2
votes
1answer
55 views

NSDate as keys for NSDictionary

Is it possible to add NSDate as keys and some arrays as it values in a NSDictionary? I dont have any requirement of writing the dictionary to disk - archiving or unarchiving, just as this guy needs ...
2
votes
1answer
102 views

CFRunLoopRun() vs [NSRunLoop run]

I have an NSRunLoop object, to which I attach timers and streams. It works great. Stopping it is another story alltogether. I run the loop using [runLoop run]. If I try to stop the loop using ...
2
votes
0answers
104 views

error with Corefoundation in Libjingle compile

I am trying to build libjingle on OSX 10.6.8 with xcode 4.3 and have run into and error with corefoundation which is killing the process. I assume the problem is with it not seeing corefoundation (or ...
2
votes
2answers
234 views

What is an NSCFDictionary?

I'm getting an NSCFDictionary returned to me and I can't figure out how to use it. I know it's of type NSCFDictionary because I printed the class and it came out as __NCSFDictionary. I can't figure ...
2
votes
2answers
1k views

iOS start Background Thread

I have a small sqlitedb in my iOS device. When a user presses a button, I fetch the data from sqlite & show it to user. This fetching part I want to do it in a background thread (to not block the ...
2
votes
1answer
101 views

Creating custom Core Foundation types.

Is it possible to create custom Core Foundation types? Does anyone know any document or something that could help me with this? I'm just trying to port GLKit to iOS 4 to use in a project and there is ...
2
votes
1answer
367 views

How do I log messages / break execution for alloc, retain, release and dealloc of CFType objects?

I want to be able to log messages (and preferably break to the debugger) each time a specific CFType object (for my current purposes, a CGPDFDocument) is allocated, retained, released or deallocated. ...
2
votes
2answers
669 views

Huge Memory Leak in CGMutablePathRef

I Have Rendered nearly 1000 Polygons in the map. I get the path of the polygon using - (CGPathRef)polyPath:(MKPolygon *)polygon { MKMapPoint *points = [polygon points]; NSUInteger ...
2
votes
2answers
141 views

C Data Structure or Core Foundation?

I am working on an app that works heavily with the file system. I have a C background and it is a habit to just use C Data Structures as much as possible. Can anyone comment on how to decide when to ...
2
votes
2answers
121 views

How can I clear the contents of an NSMutableAttributedString?

I have an ivar which is alloc-inited in the init of an object: attString = [[NSMutableAttributedString alloc] init]; On a loop, I want to clear the contents of attString and re-use it. How do I do ...
2
votes
1answer
909 views

CoreFoundation vs Foundation

In iPhone development, speed is of the essence. Does anyone know if there is a speed difference between using a CoreFoundation type (like CFMutableDictionaryRef) versus a Foundation type (its ...
2
votes
2answers
570 views

Universal App won't run on iPad Simulator

I have an existing iPhone app that I'm trying to convert into a universal app for both iPhone and iPad. Everything seems to work fine when I run it on an iPad device, but I get the following runtime ...
2
votes
2answers
345 views

Symbol not found: _OBJC_CLASS_$_NSURL error when launching on Mac OS X Leopard

I've just gotten a report from a user that a new build of my app crashes on his machine when he tries to launch it. The crash report is: Process: MyApp [222] Path: ...
2
votes
3answers
87 views

Should I verify objects inside Foundation API containers?

In languages like C++ and C# when you create a contain such as a std::vector or a C# list you explicitly declare the container type when you create it: C++: std::vector<MyObject> C#: ...
2
votes
1answer
701 views

Getting iPhone addressbook contents without GUI

I would like to list all phone numbers (or any other field) of people in the addressbook. I've written the following code: - (void)addressBookFill{ ABAddressBookRef addressBook = ...
2
votes
2answers
608 views

CGEventTapCreate breaks down mysteriously with “key down” events

I'm using CGEventTapCreate to "steal" media keys from iTunes when my app is running. The code inside of the callback that I pass to CGEventTapCreate examines the event, and if it finds that it's one ...
2
votes
1answer
522 views

Objective-C: Getting the True Class of Classes in Class Clusters

Recently while trying to answer a questions here, I ran some test code to see how Xcode/gdb reported the class of instances in class clusters. (see below) In the past, I've expected to see something ...
2
votes
1answer
698 views

What is the proper way to convert a NSTimeInterval to a string, that works internationally?

I know the quick and dirty way of dividing by 60 to get minute, hours, etc But is there an official way in the API already implemented, and using the appropriate language for minutes, seconds, etc? ...
1
vote
0answers
9 views

CFMessagePort: dropping corrupt reply Mach message (0b100101)

I am using CFMessagePort for inter process communication. For sending message CFMessagePortRef lRemoteObject = CFMessagePortCreateRemote( NULL,(CFStringRef)hostName ); if (lRemoteObject) { ...
1
vote
2answers
56 views

toll-free bridged objects, retain and release

I'm currently looking at a NSMutableSet created by the function CFSetCreateMutable(). The documentation states that the return value of CFSetCreateMutable() is toll-free bridged, meaning that I can ...
1
vote
1answer
36 views

Cocoa: Get human readable description of some file type, knowing only extension name

I am working on getting a human readable description of certain file type, and I only know the file extension. E.G. I would like to get "C Header Source File" from type "h", also "Zip Archieve" from ...
1
vote
1answer
105 views

When do these objects get released under ARC?

I have a few questions about ARC (automatic reference counting): CFURLRef url = (__bridge CFURLRef)[NSURL fileURLWithPath:appPath]; //Question 1: Here, I would expect the NSURL object to be ...
1
vote
1answer
33 views

CFStringTokenizer's token range in a UTF8 C string

I'm using CFStringTokenizer to break a load of text into words, but I'm having difficulty bridging whatever encoding CFString is using and UTF8. Consider this: NSString *theString = @"Lorem ipsum ...
1
vote
0answers
27 views

CFMutableSetRef callback fuction

I have CFMutableSetRef, which contain some file paths and i am checking a folder path with that set. CFSetCallBacks callBacks = kCFTypeSetCallBacks; callBacks.equal = ...
1
vote
0answers
41 views

How to programmatically dump Launch Services database?

How can I programmatically dump/query Launch Services database in MacOS (i.e. analog of command lsregister -dump)? EDIT: I want to get set of associations UTI -> Bundle_IDs. Using ...

1 2 3 4