假定存在 Person 这个对象,分析如下代码的对象在何时释放#import #import "Person.h"int main(int argc, const char * argv[]) { Person *p1 = nil; @autoreleasepool { p1 = [[Person ...
分类:
其他好文 时间:
2015-04-11 01:18:33
阅读次数:
205
在main.m文件中:#import #import "MJAppDelegate.h"int main(int argc, char * argv[]){ @autoreleasepool { /* argc: 系统或者用户传入的参数个数 arg...
分类:
移动开发 时间:
2015-04-10 21:57:38
阅读次数:
171
//// main.m// 时间格式化////#import int main(int argc, const char * argv[]) { @autoreleasepool { //返回当前时间,以GMT为准 NSDate * date =...
分类:
其他好文 时间:
2015-04-07 19:03:38
阅读次数:
98
ios程序启动原理及生命周期图: ios应用程序的入口是main.m 1 #import 2 3 #import "WYSAppDelegate.h" 4 5 int main(int argc, char *argv[]) 6 { 7 @autoreleasepool { 8...
分类:
移动开发 时间:
2015-03-31 14:24:56
阅读次数:
141
1.如何新建一个工程iOS—>SingleViewApplication—>工程名、保存位置2.运行App点击三角符号或使用快捷键(Command+R)快捷键:Command+B只是编译,不是运行3.工程的文件组成4.应用程序是如何运行起来的?1)main方法intmain(intargc,char*argv[]){@autoreleasepool{ret..
分类:
移动开发 时间:
2015-03-28 19:00:33
阅读次数:
179
.cc .cpp c++语言源程序.c C语言源程序.o .out C C++ OC编译后生成的文件框架 framework 一系列函数,类等程序单元的集合,可以系统提供某一方面的功能@autoreleasepool{}NS 是前缀 Cocoa对所有函数,变量,类型 前加NS 表示来源于 Coco....
分类:
其他好文 时间:
2015-03-22 00:17:32
阅读次数:
166
1.编写hello.m1 #import 2 3 int main (int argv, const char **argc)4 {5 @autoreleasepool {6 NSLog(@"Hello, world!");7 }8 return 0;9 }2...
分类:
其他好文 时间:
2015-03-20 20:16:16
阅读次数:
98
NSNumber类NSFormatter#import int main(int argc, const char * argv[]) {
@autoreleasepool { NSLog(@"1******************* NSFormatter ***********************"); N...
分类:
其他好文 时间:
2015-03-20 10:58:23
阅读次数:
148
分支语句if
#import
int mainj (int argc,const char * argv[] ){
@autoreleasepool {
int a = 1;
NSLog(@"a的值为%d",a);
int b = 2;
NSLog("b的值为%d",b);
if(a>b){
NSLog(@"这句话是真的!");
}
NSLog(@"hehe");
...
分类:
其他好文 时间:
2015-03-19 20:24:30
阅读次数:
205
m是OC源文件扩展名,入口点也是main函数,第一个OC程序:#import int main(int argc, const char * argv[]){theme manager @autoreleasepool { NSLog(@"Hello, World!"); } return 0;}预...
分类:
其他好文 时间:
2015-03-19 18:06:00
阅读次数:
146