摘要: 1.app尺寸,去掉状态栏 1.app尺寸,去掉状态栏 CGRect r = [ UIScreen mainScreen ].applicationFrame; r=0,20,320,460 2.屏幕尺寸 CGRect rx = [ UIScreen mainScreen ].bounds; r=0 阅读全文
posted @ 2016-04-16 21:49 sjcries 阅读(1442) 评论(0) 推荐(0) 编辑
摘要: 在实际开发中,如果要弹出视图: 我们常用到presentModalViewController方法和dismissModalViewControllerAnimated方法。 presentModalViewController:弹出视图 dismissModalViewControllerAnim 阅读全文
posted @ 2016-04-16 21:25 sjcries 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 学习了这么久的设计模式方面的知识,最大的感触就是,设计模式不能脱离语言特性。近段时间所看的两本书籍,《大话设计模式》里面的代码是C#写的,有一些设计模式实现起来也是采用了C#的语言特性(C#的API,抽象类,在OC中是没有抽象类、没有多继承关系),《设计模式之禅》里面的代码是JAVA写的,与OC差距 阅读全文
posted @ 2016-04-16 13:31 sjcries 阅读(221) 评论(0) 推荐(0) 编辑