摘要: 作者:tc_yao 发布:2012-03-23 11:18 分类:iOS基础 阅读:908views 抢沙发app尺寸,去掉状态栏CGRectr = [UIScreenmainScreen ].applicationFrame;r=0,20,320,460屏幕尺寸CGRectrx = [UIScreenmainScreen ].bounds;r=0,0,320,480状态栏尺寸CGRectrect;rect=[[UIApplicationsharedApplication]statusBarFrame];iphone中获取屏幕分辨率的方法CGRect rect = [[UIScreen m.. 阅读全文
posted @ 2012-11-23 20:48 天已界 阅读(2981) 评论(0) 推荐(0) 编辑
摘要: 问题: 当用addsubview加载控件时,addsubview后就可以release的;但当加载的是view视图时,如果你现在release或者autorelease,当这个加载的view调用removeFromSuperview方法返回时则会出错,如果不release或者autorelease则view返回时不会调用dealloc方法,造成没有释放view里的资源。解决之道:在调用的removeFromSuperview方法后再调用release即可。如下:加载viewShowImageViewController *showImageViewController = [[ShowIma. 阅读全文
posted @ 2012-11-23 20:34 天已界 阅读(274) 评论(0) 推荐(0) 编辑