03 2016 档案

摘要:class-dump is a command-line utility for examining the Objective-C segment of Mach-O files. It generates declarations for the classes, categories and protocols. This is the same information provided by using 'otool -ov', but presented as normal Objective-C declarations. 阅读全文
posted @ 2016-03-23 20:00 Chars-D 阅读(13432) 评论(0) 推荐(0)
摘要:熟练使用命令,不仅可以有效提高工作效率,还是成长为大牛的毕竟之路。本文主要罗列常用的一些调试命令,当然,本人也将持续更新,不断完善文章内容,敬请关注。 阅读全文
posted @ 2016-03-03 15:17 Chars-D 阅读(1400) 评论(0) 推荐(1)
摘要:Objective-C语言使用引用计数来管理内存,也就是说,每个对象都有个可以递增或递减的计数器。如果想使某个对象继续存活,那就递增其引用计数;用完了之后,就递减其计数。计数为0,就表示没人关注此对象了,于是,就可以把它销毁。 阅读全文
posted @ 2016-03-01 21:21 Chars-D 阅读(1642) 评论(0) 推荐(2)