This is my Code to create the CFArrayRef. I want to know how to make it to an NSMutableArray. I need it for my TableViewController. Or is there another way to use the CFArra
A CFArrayRef is toll-free bridged to NSArray *, so you can cast it as such and then create a mutable copy:
CFArrayRef
NSArray *
NSMutableArray *data = [(NSArray *) myCFArrayRef mutableCopy];
For an autoreleased version, use
NSMutableArray* data = [NSMutableArray arrayWithArray: (NSArray*) myCFArrayRef];