CGMutablePath path = <... your path ...>;
[mutableArray addObject:(id)path];
CGPath
and CGMutablePath
are just opaque CFType object types, and those can be added (via casting to id
) to any Cocoa container classes that are toll-free bridged to their CoreFoundation counter-parts.