读书时间 2011/12/27 Linux-C & iPhone/iPad

来源:互联网 发布:疲劳驾驶交通事故数据 编辑:程序博客网 时间:2024/05/05 18:58

《Linux C》华清

 

Chap 4. gcc与gdb

* -l选项:指定库文件

-libXXX实际指定libXXX.so或libXXX.a文件,以libXXX.so为优先(共享库/动态库)

 

* -pipe

指明使用"pipe"而非"文件"来用于在GCC运行时使用的不同程序之间传递信息,大项目编译的时候很重要,能提高编译过程效率。

 

Q:如何使用gdb调试Java应用程序?

 

《iPhone3开发基础教程》

Chap7 标签栏与选取器


Q:如何使方法的code complete功能工作的时候,对参数能换行再输?


NSArray *components = [self.stateZipsallKeys];

NSArray *sorted = [componentssortedArrayUsingSelector:@selector(compare:)];

                                                                ^ How to understand this ?

self.states = sorted;


原创粉丝点击