Can't pass parameter of type CGColorRef in LLDB
问题 I'm extending Facebook’s Chisel to be able to visualize a color from the debugger. I want it to work for UIColor , CIColor , and CGColorRef . The two object-based ones are working fine, but the CGColorRef is giving me trouble. Here is the bug I'm working from, where I've already hashed out a bunch of the stuff from this question. I've boiled the issue down to this test case: If I have some function: + (UIColor *)someColor { UIColor *uiColor = [UIColor redColor]; CGColorRef cgColor = uiColor