码迷,mamicode.com
首页 > 移动开发 > 详细

iOS __attribute__((constructor))

时间:2016-10-02 17:07:25      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

iOS里面测试几个函数

__attribute__((constructor)) static void startup()

{

    printf("startup xxx \n");

}

 

__attribute__((destructor)) static void finishup()

{

    printf("finishup xxx \n");

}

 

- (void)dealloc

{

    NSLog(@"dealloc xxx");

}

 

app启动起来会先调用 constructor,即使是没有进入对应的页面

退出页面会调用dealloc

杀掉app后会调用destructor函数

 

iOS __attribute__((constructor))

标签:

原文地址:http://www.cnblogs.com/wxm5558/p/5927569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!