Search Results

1
vote

what does -arrayWithArray actually DO?

No, Cocoa is not open source. If you have a question, you should just ask it. This would be one valid way to implement it: + (id)arrayWithArray:(NSArray *)array { …
1
vote

How do I create a mutable array of CGImageRefs?

You can directly add CGImage to NSMutableArray. You will need to cast to (id) to avoid compiler warnings. CFType is bridged to NSObject. You can send any message NSObject responds to to …