爱飞 发表于 2015-1-18 11:43:09

IOS编程:iOS开辟――性命周期仓酷云

很简单OBJCAVFoundation---播放视频相关的库最近正在学习这些算是学iOS开发的一些方法为了处置好使用程序的挂起、停息等情形下的数据保留,或对应增加所需处置,我们必需懂得ios性命周期。
可是不要往背往记,做个实行就好。


[*]-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions
[*]{
[*]//Overridepointforcustomizationafterapplicationlaunch.
[*]NSLog(@"程序入手下手");
[*]returnYES;
[*]}
[*]
[*]-(void)applicationWillResignActive:(UIApplication*)application
[*]{
[*]//Sentwhentheapplicationisabouttomovefromactivetoinactivestate.Thiscanoccurforcertaintypesoftemporaryinterruptions(suchasanincomingphonecallorSMSmessage)orwhentheuserquitstheapplicationanditbeginsthetransitiontothebackgroundstate.
[*]//Usethismethodtopauseongoingtasks,disabletimers,andthrottledownOpenGLESframerates.Gamesshouldusethismethodtopausethegame.
[*]NSLog(@"程序停息");
[*]}
[*]
[*]-(void)applicationDidEnterBackground:(UIApplication*)application
[*]{
[*]//Usethismethodtoreleasesharedresources,saveuserdata,invalidatetimers,andstoreenoughapplicationstateinformationtorestoreyourapplicationtoitscurrentstateincaseitisterminatedlater.
[*]//Ifyourapplicationsupportsbackgroundexecution,thismethodiscalledinsteadofapplicationWillTerminate:whentheuserquits.
[*]NSLog(@"程序进进背景");
[*]}
[*]
[*]-(void)applicationWillEnterForeground:(UIApplication*)application
[*]{
[*]//Calledaspartofthetransitionfromthebackgroundtotheinactivestate;hereyoucanundomanyofthechangesmadeonenteringthebackground.
[*]NSLog(@"程序进进前台");
[*]}
[*]
[*]-(void)applicationDidBecomeActive:(UIApplication*)application
[*]{
[*]//Restartanytasksthatwerepaused(ornotyetstarted)whiletheapplicationwasinactive.Iftheapplicationwaspreviouslyinthebackground,optionallyrefreshtheuserinterface.
[*]NSLog(@"程序再次激活");
[*]}
[*]
[*]-(void)applicationWillTerminate:(UIApplication*)application
[*]{
[*]//Calledwhentheapplicationisabouttoterminate.Savedataifappropriate.SeealsoapplicationDidEnterBackground:.
[*]NSLog(@"程序不测停止");
[*]}

-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{//Overridepointforcustomizationafterapplicationlaunch.NSLog(@"程序入手下手");returnYES;}-(void)applicationWillResignActive:(UIApplication*)application{//Sentwhentheapplicationisabouttomovefromactivetoinactivestate.Thiscanoccurforcertaintypesoftemporaryinterruptions(suchasanincomingphonecallorSMSmessage)orwhentheuserquitstheapplicationanditbeginsthetransitiontothebackgroundstate.//Usethismethodtopauseongoingtasks,disabletimers,andthrottledownOpenGLESframerates.Gamesshouldusethismethodtopausethegame.NSLog(@"程序停息");}-(void)applicationDidEnterBackground:(UIApplication*)application{//Usethismethodtoreleasesharedresources,saveuserdata,invalidatetimers,andstoreenoughapplicationstateinformationtorestoreyourapplicationtoitscurrentstateincaseitisterminatedlater.//Ifyourapplicationsupportsbackgroundexecution,thismethodiscalledinsteadofapplicationWillTerminate:whentheuserquits.NSLog(@"程序进进背景");}-(void)applicationWillEnterForeground:(UIApplication*)application{//Calledaspartofthetransitionfromthebackgroundtotheinactivestate;hereyoucanundomanyofthechangesmadeonenteringthebackground.NSLog(@"程序进进前台");}-(void)applicationDidBecomeActive:(UIApplication*)application{//Restartanytasksthatwerepaused(ornotyetstarted)whiletheapplicationwasinactive.Iftheapplicationwaspreviouslyinthebackground,optionallyrefreshtheuserinterface.NSLog(@"程序再次激活");}-(void)applicationWillTerminate:(UIApplication*)application{//Calledwhentheapplicationisabouttoterminate.Savedataifappropriate.SeealsoapplicationDidEnterBackground:.NSLog(@"程序不测停止");}
实行了局:
1.初次启动使用程序:
2012-06-2611:06:39.313WQTest程序入手下手
2012-06-2611:06:39.320WQTest程序再次激活
2.摁HOME键加入:
2012-06-2611:08:08.687WQTest程序停息
2012-06-2611:08:08.690WQTest程序进进背景

3.再次进进程序:
2012-06-2611:09:11.047WQTest程序进进前台
2012-06-2611:09:11.049WQTest程序再次激活

管理所有设备发生的事件比如屏幕旋转屏幕关闭或者一些其他的程序的控制逻辑也应该写在这里他的初始化函数是-(id)initWithNibName:(NSString*)nibNamebundle:(NSBundle*)nibBundle后面那个NibName是InterfaceBuilder里设计的界面现在IB已经集成到XCode里了

仓酷云 发表于 2015-1-21 13:11:38

我也从简单的状态栏适配开始,先研究了下关于状态栏的适配,特总结如下,供广大网友一起讨论交流。

莫相离 发表于 2015-1-30 18:59:34

从C语言入门,因为IOS开发用的是OC语言,是在C基础上的,不过也跟C不是很搭界,你可以直接学习OC语言也可以,

若相依 发表于 2015-2-5 10:46:04

看完这个你就可以有多种选择来踏入做应用的阶段

冷月葬花魂 发表于 2015-2-6 13:52:03

从C语言入门,因为IOS开发用的是OC语言,是在C基础上的,不过也跟C不是很搭界,你可以直接学习OC语言也可以,

小女巫 发表于 2015-2-16 07:44:43

有办法利用自己手头的电脑立刻开始这个美妙旅程的。

第二个灵魂 发表于 2015-2-23 09:26:32

近期由于IOS7的发布,所以应用的适配潮可谓是都搞的锣鼓喧天,甚是热闹,因此呢,因适配IOS7而产生的问题也是铺天盖地的卷来,

灵魂腐蚀 发表于 2015-3-7 08:25:43

iPhone文件系统:创建、重命名以及删除文件,NSFileManager中包含了用来查询单词库目录、创建、重命名、删除目录以及获取/设置文件属性的方法(可读性,可编写性等等)。

若天明 发表于 2015-3-11 23:38:00

以上可以同时进行,学习过程中尽量不要纠结细节和底层,要知道ios是封闭的、OC是高级语言,我们不可能过多地去了解它的原理,至少在新手阶段没有必要。用迭代的方式更新你的知识,而不是死抠一个知识点。

透明 发表于 2015-3-16 03:05:48

AD: iPhone文件系统NSFileManager讲解是本文要介绍的内容,主要是通过iphone文件系统来学习NSFileManager的使用方法,具体内容来看本文详解。

柔情似水 发表于 2015-3-17 17:57:06

边吃零食边看Stanford的视频教程

精灵巫婆 发表于 2015-3-21 13:09:19

自从苹果公司开放iOS SDK以来,大量的国内外的软件开发者将关注的目光聚集在苹果的iOS平台上。由于iPhone和iPad自一出现就给人带来了颠覆性的感觉

再见西城 发表于 2015-3-25 21:36:14

好处就是运行速度会变快,ios6针对系统的优化进一步加强了,很多网友测试ios6,第一感觉就是速度快,而且ios69会有一些新功能,新浪微博,facetime支持3G网等等。。弊端就是,现在的ios6只能算是正式版本的第一个版本,bug很多,不少人刷完ios6都出现了很多毛病,开不开机,缺少图标等等。。最好现在不要升级,等官网放出下一个版本的时候,再选择升级。。。

变相怪杰 发表于 2015-3-27 09:08:25

iPhone文件系统NSFileManager讲解是本文要介绍的内容,主要是通过iphone文件系统来学习NSFileManager的使用方法,具体内容来看本文详解。

活着的死人 发表于 2015-3-31 05:26:16

从C语言入门,因为IOS开发用的是OC语言,是在C基础上的,不过也跟C不是很搭界,你可以直接学习OC语言也可以,

小魔女 发表于 2015-4-12 12:11:57

自从苹果公司开放iOS SDK以来,大量的国内外的软件开发者将关注的目光聚集在苹果的iOS平台上。由于iPhone和iPad自一出现就给人带来了颠覆性的感觉

兰色精灵 发表于 2015-4-24 20:17:43

还有开发工具是用Xcode,是在Mac系统的,你多摸索一下就可以开发简单的应用了,建议你买一本iphone开发秘籍第二版看看,希望可以帮到你,谢谢。

金色的骷髅 发表于 2015-5-6 14:09:32

培训的时候很痛苦,每天要待12个小时,上午讲课,下午和晚自习解决作业,看文档,学习的时候感觉就是资料太少,而且看着资料也不明所以,非常痛苦,

乐观 发表于 2015-5-11 19:34:14

有办法利用自己手头的电脑立刻开始这个美妙旅程的。

因胸联盟 发表于 2015-6-11 22:59:51

众多研发人员积极参与到iOS平台的开发中来也就不足为奇了。
页: [1]
查看完整版本: IOS编程:iOS开辟――性命周期仓酷云