CFShow 打印核心基础对象的内容

简介: ~/Library/Developer/Shared/Documentation/DocSets/com.apple.adc.documentation.AppleiOS8.1.iOSLibrary.



~/Library/Developer/Shared/Documentation/DocSets/com.apple.adc.documentation.AppleiOS8.1.iOSLibrary.docset/Contents/Resources/Documents/documentation/CoreFoundation/Reference/CFTypeRef/index.html



CFShow
Prints a description of a Core Foundation object to stderr.

Declaration
SWIFT
func CFShow(_ obj: AnyObject!)
OBJECTIVE-C
void CFShow ( CFTypeRef obj );
Parameters
obj    
A Core Foundation object derived from CFType. If obj is not a Core Foundation object, an assertion is raised.
Discussion
The output is printed to the standard I/O standard error (stderr).

This function is useful as a debugging aid for Core Foundation objects. Because these objects are based on opaque types, it is difficult to examine their contents directly. However, the opaque types implement description function callbacks that return descriptions of their objects. This function invokes these callbacks.

Special Considerations
You can use CFShow in one of two general ways. If your debugger supports function calls (such as gdb does), call CFShow in the debugger:

(gdb) call (void) CFShow(string)
Hello World
You can also incorporate calls to CFShow in a test version of your code to print out "snapshots" of Core Foundation objects to the console.

Import Statement
import CoreFoundation

Availability
Available in iOS 2.0 and later.




目录
相关文章
|
6月前
|
编译器 开发工具 C语言
单一程序:打印 Hello World
【5月更文挑战第14天】单一程序:打印 Hello World。
30 1
|
6月前
|
C++
C++:类的补充知识
C++:类的补充知识
35 0
|
前端开发
前端学习案例1-this指向问题-函数的独立调用
前端学习案例1-this指向问题-函数的独立调用
51 0
前端学习案例1-this指向问题-函数的独立调用
|
前端开发
前端学习案例2-this指向问题-函数的独立调用2
前端学习案例2-this指向问题-函数的独立调用2
65 0
前端学习案例2-this指向问题-函数的独立调用2
|
前端开发
前端学习案例1-对象的拷贝方式
前端学习案例1-对象的拷贝方式
52 0
前端学习案例1-对象的拷贝方式
|
前端开发
前端学习案例5-this指向问题-显示绑定
前端学习案例5-this指向问题-显示绑定
74 0
前端学习案例5-this指向问题-显示绑定
|
前端开发
前端学习案例4-类组件中绑定this指向的方式
前端学习案例4-类组件中绑定this指向的方式
70 0
前端学习案例4-类组件中绑定this指向的方式
|
Java
java学习第五天笔记-循环高级和数组107-最简单的方法定义和调用2展示信息
java学习第五天笔记-循环高级和数组107-最简单的方法定义和调用2展示信息
84 0
java学习第五天笔记-循环高级和数组107-最简单的方法定义和调用2展示信息
|
XML 存储 Java
编写Java程序,使用 dom4j 解析上一节王者荣耀“英雄”对应的Xml文件数据内容,打印输出,具体格式
编写Java程序,使用 dom4j 解析上一节王者荣耀“英雄”对应的Xml文件数据内容,打印输出,具体格式
234 0
编写Java程序,使用 dom4j 解析上一节王者荣耀“英雄”对应的Xml文件数据内容,打印输出,具体格式
下一篇
无影云桌面