ios1
Posted xdwa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios1相关的知识,希望对你有一定的参考价值。
需要知道的
1 #import <Foundation/Foundation.h> 2 3 int main(int argc, const char * argv[]) { 4 @autoreleasepool { 5 // insert code here... 6 NSLog(@"Hello, World!"); 7 } 8 return 0; 9 }
1.#import 防止重复引用 <系统文件> "用户自定义文件"。
[email protected]。 {}内的会自动回收内存,无需手动释放。
过程约等于: a)创建autorelease poll。b)对象放入,类似于入栈。 c)一次消息循环结束时,runloop结束时,清理这个栈。
[email protected]“Hellio" oc里面字符串前面需要加:"@"
[email protected] AAA, 自动生成get和set方法的成员变量。名为_AAA
以上是关于ios1的主要内容,如果未能解决你的问题,请参考以下文章