+(UIImage*)createImageFromView:(UIView*)view{ //obtain scale CGFloat scale = [UIScreen mainScreen].scale; 开始绘图,下面方法,第一个参数表示区域大小。...
分类:
移动开发 时间:
2016-01-06 18:05:40
阅读次数:
131
#import "ViewController.h"#import "ViewController.h"#define SCREE_WITDH CGRectGetWidth([UIScreen mainScreen].bounds)#define SCREE_HEIGHT CGRectGetHe.....
分类:
其他好文 时间:
2015-12-29 14:20:10
阅读次数:
112
//AllGestureView为自定义viewAllGestureView *gestureView=[[AllGestureView alloc]init];gestureView.frame=[UIScreen mainScreen].bounds;//先设置自定义view的透明度为0gest...
分类:
其他好文 时间:
2015-12-26 16:37:12
阅读次数:
136
#pragma mark 判断当前设备#define IS_IPHONE4 (([[UIScreen mainScreen] bounds].size.height == 480) ? YES : NO)#define IS_IPHONE5 (([[UIScreen mainScreen] boun...
分类:
其他好文 时间:
2015-12-26 01:14:04
阅读次数:
215
A UIScreen object contains the bounding rectangle of the device’s entire screen. When setting up your application’s user interface, you should use the...
分类:
其他好文 时间:
2015-12-21 23:18:19
阅读次数:
243
1 UIWindow、UILabel、UIColor、UIScreen、UIViewController、UIView、UIControl、UIButton、IBOutlet、IBAction、UIStepper、 UISlider、 UISwitch、UITextField、UIA...
分类:
其他好文 时间:
2015-12-21 14:23:53
阅读次数:
249
6.1UIScreen//屏幕的宽度CGFloatscreenW = [UIScreenmainScreen].bounds.size.width;6.2UIFont+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;系统默认字体+ (UIFont *)bo...
分类:
其他好文 时间:
2015-12-18 21:08:53
阅读次数:
209
在使用cocos2d-iphone 2.0生成项目的时候,用5s测试时全屏中上下一直有黑条,发现[[UIScreen mainScreen] bounds]返回的屏幕尺寸不是320*568的,而是320*480。后来在项目的警告中发现提示缺少Default-568@2x.png:单击之后弹出:点击a...
分类:
其他好文 时间:
2015-12-15 12:15:57
阅读次数:
134
#import 1.初始化图片 UIImageView *iv = [[UIImageView alloc]initWithFrame:[UIScreen mainScreen].bounds]; [iv setImage:[self blurryImage:[UIImage imageNamed....
分类:
移动开发 时间:
2015-12-11 20:28:12
阅读次数:
163
self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds]; ViewController * vc =[[ViewController alloc]init]; self.window.rootVie...
分类:
其他好文 时间:
2015-12-11 18:13:56
阅读次数:
155