码迷,mamicode.com
首页 >  
搜索关键字:uiscreen    ( 254个结果
iOS刻度尺换算之1mm等于多少像素理解
刚好看到一个刻度尺文章,实现手机屏幕上画刻度尺。 然后就有一个疑问:这个现实中的1mm(1毫米)长度与手机像素之间的换算比怎么来的呢? 看了下demo代码,发现这样写的: 以上这个pmm就是得到的 1mm = pmm像素 何解呢? 原来是这样: 1、根据手机像素值:[UIScreen mainScr ...
分类:移动开发   时间:2017-12-18 14:27:33    阅读次数:3724
swift高斯模糊的自定义view
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
collectionView itemW宽度计算不对
([[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
IOS将UIView转化为UIImage
+(UIImage*)createImageFromView:(UIView*)view { //obtain scale CGFloat scale = [UIScreen mainScreen].scale; 開始画图,以下方法。第一个參数表示区域大小。第二个參数表示是否是非透明的。假设须要显示 ...
分类:移动开发   时间:2017-06-29 19:15:04    阅读次数:353
iOS 如何获取屏幕大小
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
collectionView 和 tableView的嵌套使用
#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
通过Xib加载控制器的View
1.创建窗口self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];2.设置窗口根控制器2.1从XIB当中加载控制器.MyViewController *vc = [[MyViewController a ...
分类:其他好文   时间:2017-05-30 19:47:34    阅读次数:133
ios开发常用的宏
转自 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
254条   上一页 1 2 3 4 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!