ios8

Web 开发者和设计师必须要知道的 iOS 8 十个变化
http://luolei.org/safari-ios8-iphone6-web-developers-designers-chinese/
随着 iPhone 6 和 iPhone 6 plus 的上市,ios 8 终于在上周推送更新了。新的设备,新的分辨率。这篇文章介绍 iOS 8 有哪些变化。
另附: iOS 8人机界面指南(一):UI设计基础 http://isux.tencent.com/ios8-human-interface-guidelines.html

 

https://github.com/Aufree/trip-to-iOS

 

 

iOS8下的远程推送

http://www.tuicool.com/articles/Z36BJ3j

http://saeapns.sinaapp.com/doc.html

http://push.baidu.com/doc/ios/api

 http://blog.jobbole.com/51660/

 

3.判断程序运行状态
 
    //判断程序运行状态,在2.0以后引入
    
   if([UIApplicationsharedApplication].applicationState ==UIApplicationStateInactive){
         NSLog(@"程序在运行状态");
     }
 
4.阻止屏幕变暗进入休眠状态
 
   //阻止屏幕变暗,慎重使用,缺省为no 2.0
     [UIApplicationsharedApplication].idleTimerDisabled =YES;
 
慎重使用本功能,因为非常耗电。

posted @ 2015-08-07 10:35  lianhuaren  阅读(112)  评论(0编辑  收藏  举报