How can I add an opaque type to a collection in cocoa?
I get a compiler warning for this (obviously, because opaque types are not objects):
CGColorSpaceRef colorSpace;
NSArray *myArray = [NSArray arrayWithObject:colorSpace];
|
|
How can I add an opaque type to a collection in cocoa? I get a compiler warning for this (obviously, because opaque types are not objects):
|
||
|
|
|
|
CoreFoundation data types (CFTypes) can be directly added to collections. (They need to be cast to (id) to suppress warnings.) This is called "toll free bridging."
|
||
|
|
|
|
You can use the NSValue class to wrap your opaque types in an object. From here:
|
||
|