iphone基础之今日:跳转子页

来源:互联网 发布:软件测试的实例 编辑:程序博客网 时间:2024/05/16 10:24

今天,跳转子页,


全局变量

要点:单例模式

静态变量 作用域有限,写法:static int count; 备份

解决:http://derekneely.com/2009/11/iphone-development-global-variables/ <- Monster Oasis

其他:dd , 禚 老师 , [iPhone程式]iPhone開發心得06

YouTube - 學寫iPhone程式第44堂- External/Global Variables‏

横向屏幕popView的方向问题

popViewControllerAnimated landscape direction wrong

问题:http://www.cocoachina.com/bbs/read.php?tid-46990.html

解决:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation{   return  (orientation == UIInterfaceOrientationLandscapeRight);}


笔试

cc

好书

This is a late draft of Programming iOS 4