博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 如何获取屏幕大小
阅读量:5104 次
发布时间:2019-06-13

本文共 940 字,大约阅读时间需要 3 分钟。

 

1   2     UIScreen *currentScreen = [UIScreen  mainScreen]; 3      4     NSLog(@"applicationFrame.size.height = %f",currentScreen.applicationFrame.size.height); 5      6     NSLog(@"applicationFrame.size.width = %f",currentScreen.applicationFrame.size.width); 7      8     NSLog(@"applicationFrame.origin.x = %f",currentScreen.applicationFrame.origin.x); 9     10     NSLog(@"applicationFrame.origin.y = %f",currentScreen.applicationFrame.origin.y);11     12     NSLog(@"bounds.x = %f",currentScreen.bounds.origin.x);13     14     NSLog(@"bounds.y = %f",currentScreen.bounds.origin.y);15     16     NSLog(@"bounds.height = %f",currentScreen.bounds.size.height);17     18     NSLog(@"bounds.width = %f",currentScreen.bounds.size.width);19     20     NSLog(@"brightness = %f",currentScreen.brightness);

 

更新:

iOS 9 之后:使用 [UIScreen  mainScreen].bounds代替 [UIScreen  mainScreen].applicationFrame

转载于:https://www.cnblogs.com/zhangyubao/p/6994387.html

你可能感兴趣的文章
Eval()、XPath() 和 Bind() 这类数据绑定方法只能在数据绑定控件的上下文中使用
查看>>
使用 SQL Server 2012 Analysis Services Tabular Mode 表格建模 图文教程
查看>>
EscapeDataString URI 字符串太长
查看>>
EasyUi通过POI 实现导出xls表格功能
查看>>
课堂讨论
查看>>
使用代理为业务操作添加安全检测
查看>>
rails--bcrypt对密码加密
查看>>
java类的定义
查看>>
ADO.NET 【攻击及防御】
查看>>
程序员vim的最终解决方案
查看>>
数据库
查看>>
Android Studio 常用快捷键
查看>>
Oracle分配内存的基本单位:Granule(粒度)
查看>>
NetOps Defined
查看>>
谈谈Runtime类中的freeMemory,totalMemory,maxMemory等几个方法
查看>>
struts
查看>>
Linux测试磁盘能力
查看>>
License制作
查看>>
springboot中spring.profiles.active来引入多个properties文件 & Springboot获取容器中对象
查看>>
算法导论chapter2-2.1 Insertion sort
查看>>