Please do not edit your posts to ask another unrelated question.
Anyway: You are using the wrong format specifier: %s is used to print C strings. You can use Objective-C's %@ format specifier to print the object's description.
If you want to use pure Core Foundation you can use CFShow(object);