刚好看到一个刻度尺文章,实现手机屏幕上画刻度尺。 然后就有一个疑问:这个现实中的1mm(1毫米)长度与手机像素之间的换算比怎么来的呢? 看了下demo代码,发现这样写的: 以上这个pmm就是得到的 1mm = pmm像素 何解呢? 原来是这样: 1、根据手机像素值:[UIScreen mainScr ...
分类:
移动开发 时间:
2017-12-18 14:27:33
阅读次数:
3724
var bgImage = UIImageView() var backButton = UIButton() var titleLabel = UILabel() let screen_h = UIScreen.main.bounds.height let screen_w = UIScreen. ...
分类:
编程语言 时间:
2017-11-07 22:11:00
阅读次数:
301
([[UIScreen mainScreen] bounds].size.width - 28) / 4.00 没加括号 collectioView不能正常撑开 用flowLayout 不要用 代理方法!!!! NMFourCollectFloatLayout *flow = [[NMFourCol ...
分类:
其他好文 时间:
2017-09-17 15:02:57
阅读次数:
131
#define kWidth [UIScreen mainScreen].bounds.size.width #define kHeight [UIScreen mainScreen].bounds.size.height #define RGBA(r,g,b,a) [UIColor colorWi ...
分类:
其他好文 时间:
2017-08-22 10:46:43
阅读次数:
128
iOS // 此方法是获取手机屏幕的亮度值,也就是你手机设置的亮度值 double currentLight = [[UIScreen mainScreen] brightness]; //这个方法会在app失去激活状态的时候调用 比如说程序进入后台 - (void)applicationWillB ...
分类:
移动开发 时间:
2017-07-28 15:39:14
阅读次数:
164
+(UIImage*)createImageFromView:(UIView*)view { //obtain scale CGFloat scale = [UIScreen mainScreen].scale; 開始画图,以下方法。第一个參数表示区域大小。第二个參数表示是否是非透明的。假设须要显示 ...
分类:
移动开发 时间:
2017-06-29 19:15:04
阅读次数:
353
1 2 UIScreen *currentScreen = [UIScreen mainScreen]; 3 4 NSLog(@"applicationFrame.size.height = %f",currentScreen.applicationFrame.size.height); 5 6 N ...
分类:
移动开发 时间:
2017-06-12 19:54:24
阅读次数:
179
#import "ViewController.h" #define HEIGHT [UIScreen mainScreen].bounds.size.height #define WIDTH [UIScreen mainScreen].bounds.size.width @interface Vi ...
分类:
其他好文 时间:
2017-05-31 12:04:20
阅读次数:
212
1.创建窗口self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];2.设置窗口根控制器2.1从XIB当中加载控制器.MyViewController *vc = [[MyViewController a ...
分类:
其他好文 时间:
2017-05-30 19:47:34
阅读次数:
133
转自 http://www.cocoachina.com/bbs/read.php?tid=1719540 #define NavigationBar_HEIGHT 44 #define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width) # ...
分类:
移动开发 时间:
2017-05-07 14:48:41
阅读次数:
234