E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
uidevice
2018-07-03
UIDevice
Orientation、UIInterfaceOrientation、UIInterfaceOrientationMask区别1、
UIDevice
Orientation:设备的物理方向typedefenum
UIDevice
Orientation
始于初见_yj
·
2021-06-20 12:34
iOS 获取本机的设备信息
UIDevice
UIDevice
//使用类方法来获取当前的设备
UIDevice
*myDecive=[
UIDevice
currentDevice];//设备名称NSLog(@"name-------%@",myDecive.name
Joker_King
·
2021-06-20 08:24
iOS 机型判断 更新至MAX
//判断是否是ipad#defineisPad([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad)//判断iPhone4
H4S
·
2021-06-20 03:14
距离传感器、加速计和蓝牙
开启距离传感器(注意:默认情况距离传感器是关闭的)//[UIApplicationsharedApplication].proximitySensingEnabled=YES;//只要开启之后,就开始实时监听[
UIDevice
currentDevice
叫我小黑
·
2021-06-19 12:14
系统相关参数获取(持续更新)
1.UUID在UDID权限取消后,想要获取唯一标识,可以用这个方法NSString*uuid=[
UIDevice
currentDevice].identifierForVendor.UUIDString
DaaaaLee
·
2021-06-14 22:18
unity 陀螺仪判断手机方向
-(void)addDeviceRotateObserver{[[
UIDevice
currentDevice]beginGeneratingDeviceOrientationNo
毛毛_1e13
·
2021-06-14 07:59
Iphone 机型判断
//判断是否是ipad#defineisPad([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad)//判断iPhone4
liluojian
·
2021-06-13 12:18
更加精准的获取IOS设备信息
更准确的获取IOS设备信息获取IOS设备信息简单的获取设备信息的话,参考
UIDevice
API就可以了NSLog(@"uniqueIdentifier:%@",[[
UIDevice
currentDevice
江南易飞
·
2021-06-10 04:40
iOS 刘海屏界面适配
iPhoneX-iPhone12界面适配///写到pch文件内//判断ipad#defineisPad([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad
lemonCool
·
2021-06-09 18:28
在竖屏锁定下,判断屏幕方向的问题
NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(handleDeviceOrientationChange:)name:
UIDevice
Orientat
简直不得输
·
2021-06-08 21:00
iOS电池相关API
开启电池监听在使用电池相关API的时候需要先开启电池监听,开启代码如下:
UIDevice
.current.isBatteryMonitoringEnabled=true获取电池状态print(
UIDevice
.current.batteryLevel
面试小集
·
2021-06-08 16:30
iPhoneX iPhone Xr iPhone Xs iPhone Xs max 屏幕适配
在适当的地方引用~~~~在头文件定义这几个宏//判断是否是ipad#defineisPad([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad
小刘_假装是个程序员
·
2021-06-07 17:15
指纹解锁
引入依赖框架:#importif([
UIDevice
currentDevice].systemVersion.floatV
透支未来
·
2021-06-06 01:56
iOS中的版本
UIDevice
.currentDevice.systemVersion.floatValuekCFCoreFoundationVersionNumber
穿靴子的阿拉丁
·
2021-06-05 19:22
获取当前设备型号
extension
UIDevice
{varmodelName:String{varsystemInfo=utsname()uname(&systemInfo)letmachineMirror=Mirror
微凉初夏
·
2021-06-05 18:38
iOS编程, 点击变横屏(竖屏)
横屏:if([[
UIDevice
currentDevice]respondsToSelector:@selector(setOrientation:)]){SELselector=NSSelectorFromString
霍伟健
·
2021-05-21 02:58
ReplayKit录屏功能的使用条件和各种坑
使用该框架的前提一、IOS系统版本需要大于等于9.0[[
UIDevice
currentDevice].systemVersionfloatValue]<9.0//IOS系统版本小于9.0就不支持录屏功能二
FrankHuang93
·
2021-05-18 16:16
UUID和UDID区别
通过调用[[
UIDevice
currentDevice]identifierForVendor];方法可以获取UUID。UUID不好
星空梦想
·
2021-05-16 12:02
IOS10 适配调整
判断版本方法【【
UIDevice
currentDevice】systemVersion】4.字体宽度比以前大了,汉字会出现这种问题。5.i
CRAZYBADAM
·
2021-05-15 17:10
iOS 原生语音播报的使用
required)或“代理”(optional)#import@interfaceViewController(){AVSpeechSynthesizer*_synthesizer;}2、开始语音播报if([[[
UIDevice
currentDevice
ninazhang
·
2021-05-14 22:39
获取手机基本信息
//手机序列号NSString*identifierNumber=[[
UIDevice
currentDevice]uniqueIdentifier];NSLog(@"手机序列号:%@",identifierNumber
nenhall
·
2021-05-14 19:35
iOS中常用的宏定义
判断真机还是模拟器运行代码//真机#ifTARGET_OS_IPHONE#endif//模拟器#ifTARGET_IPHONE_SIMULATOR#endif系统版本#defineIOS8_OR_LATER([[
UIDevice
currentDevice
梦在旅途
·
2021-05-14 17:37
iOS OC宏定义
NSBundlemainBundle]infoDictionary]objectForKey:@"CFBundleShortVersionString"]系统版本号#definekSystemVersion([[
UIDevice
currentDevice
那就这样吧_
·
2021-05-14 05:37
iOS全局禁止横屏,特定页面允许横屏的解决方法
IBAction)large:(id)sender{NSNumber*value=[NSNumbernumberWithInt:UIInterfaceOrientationLandscapeLeft];[[
UIDevice
curren
SamuelSeed
·
2021-05-13 11:27
IOS 横竖屏
//iOS规定不允许强制用代码切换横竖屏if([[
UIDevice
currentDevice]respondsToSelector:@selector(setOrientation:)]){SELselector
JakieZhang
·
2021-05-13 09:08
UIDevice
的一些操作
NSLog(@"设备名称:%@",[
UIDevice
currentDevice].name);NSLog(@"设备model:%@",[
UIDevice
currentDevice].model);NSLog
闹钟先生的闹钟
·
2021-05-13 02:10
ios10新特性适配
奋斗的七月1、检查版本问题#defineisiOS10[[[[
UIDevice
currentDevice]systemVersion]substringToIndex:1]intValue]>=10#defineisiOS10
我就是七月呀
·
2021-05-12 11:39
iOS 判断手机型号和系统版本
1.判断系统版本NSString*phoneVerion=[[
UIDevice
currentDevice]systemVersion];DLog(@"系统版本--%@",phoneVerion);2.判断手机型号
低调的前行者灬
·
2021-05-12 10:40
判断是否为iPad
-(BOOL)getRuntimeClassIsIpad{if([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad)
为了你而活
·
2021-05-12 02:20
iOS监听横竖屛通知
UIDevice
OrientationDidChangeNotification和UIApplicationDidChangeStatusBarFrameNotification的区别相同点:
UIDevice
OrientationDidChangeNotification
小雨雨儿
·
2021-05-10 05:16
iOS 获取设备版本、语言等信息
UIDevice
*currentDevice=[
UIDevice
currentDevice];NSString*model=[currentDevicemodel];NSString*systemVersion
_lijinglong
·
2021-05-10 01:41
获取设备型号
UIDevice
类中可以获取设备的相关信息。model属性获取设备的类型,如iPhone、iPad,无法获得设备的具体型号。每一种iOS设备都有对应的标识,称为devicemodel。
我是彪小A
·
2021-05-09 17:28
iOS 指定控制器 横屏 一句代码都不用写~
控制器横屏最简单的方法//横屏.NSNumber*value=[NSNumbernumberWithInt:UIInterfaceOrientationLandscapeRight];[[
UIDevice
currentDevice
gitKong
·
2021-05-09 01:30
ios 各种通知
NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(onDeviceOrientationChange)name:
UIDevice
OrientationDidChangeNotificationobject
木马不在转
·
2021-05-06 15:09
iOS 机型判断 包含X,XR,XS,XS Max(已修改)
宏定义一下://判断是否是ipad#defineisPad([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad)//
Cary9396
·
2021-05-05 15:16
关于webview或wkwebview缓存问题
因为存在缓存策略,如果要实时加载最新网页,那么就需要清除缓存代码了,代码如下-(void)deleteWebCache{if([[
UIDevice
currentDevice].systemVersionfloatValue
你相信奇迹么
·
2021-05-05 04:36
iOS设备及状态
一、判断设备//设备名称return[
UIDevice
currentDevice].name;//设备型号,只可得到是何设备,无法得到是第几代设备return[
UIDevice
currentDevice
天地一紫罗
·
2021-05-04 17:48
让编译器对一些警告闭嘴
pragmaclangdiagnosticpush#pragmaclangdiagnosticignored"-Wdeprecated-declarations"[TestFlightsetDeviceIdentifier:[[
UIDevice
currentDevice
VincentHK
·
2021-05-04 16:21
iOS_跳转到系统设置页面
首先我们要判断手机是否连接上Wi-Fi,如果没有连接Wi-Fi的话,通过点击按钮从应用内跳转到系统页面去设置Wi-Fi跳转方法if([[
UIDevice
currentDevice].systemVersionfloatValue
耀敬业
·
2021-05-04 00:33
ios强制横/竖屏
:(BOOL)animated{NSNumber*orientationUnknown=[NSNumbernumberWithInt:UIInterfaceOrientationUnknown];[[
UIDevice
currentDevice
zttjhm
·
2021-05-03 14:40
ios中URL字符串的URLencode与URLdecode
,作为参数用GET方式传递时,需要用urlencode处理一下//URLEncode+(NSString*)encodeString:(NSString*)unencodedString{if([[[
UIDevice
currentDevice
西边雨
·
2021-05-03 00:17
iPhone屏幕适配
CGSizescreenSize=[UIScreenmainScreen].bounds.size;//如果是iPhoneif([
UIDevice
currentDevice].userInterfaceId
漂泊的飞鸟
·
2021-05-02 09:29
NSString containsString 最低版本ios 8
解决方案:if([[[
UIDevice
currentDevice]systemVer
韩大发
·
2021-05-01 06:21
iOS 10 判断系统版本方式更新
判断系统版本是我们经常用到的,尤其是现在大家都有可能需要适配iOS10,那么问题就出现了,如下图:我们得到了答案是://值为1[[[[
UIDevice
currentDevice]systemVersion
江湖人称_赫大侠
·
2021-04-30 19:39
小碎片
做项目过程中留意的一些小东西,略作记录://设备名称NSString*phoneName=[[
UIDevice
currentDevice]systemName];//设备系统版本NSString*phoneVersion
Blunet
·
2021-04-30 18:37
如何获取iOS设备机型和系统版本号
系统版本号:NSString*strModel1=[[
UIDevice
currentDevice]systemVersion]floatValue];设备机型:NSString*strModel2=[
UIDevice
currentDevice
白鹿Divella
·
2021-04-30 12:56
iOS获取设备型号和App版本号等信息(OC+Swift)
获取设备名称OC代码NSString*deviceName=[[
UIDevice
currentDevice]name];Swift代码letdeviceName=
UIDevice
.currentDevice
晓飞90
·
2021-04-29 07:24
iOS - keychain保存UUID
由于现在只能通过[
UIDevice
currentDevice].identifierForVendor.UUIDString这个方法获取标识,但是这个不具有唯一性,当用户的
会飞的咸鱼
·
2021-04-28 10:42
iOS 获取正在运行的进程
代码如下:.h@interface
UIDevice
(ProcessesAdditions)-(NSArray*)runningProcesses;@end.m#import"
UIDevice
+ProcessesAdditions.h
IamOnelong
·
2021-04-27 23:59
iOS-获取DeviceToken
(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{//iOS8系统以上if([
UIDevice
currentDevice
lancely
·
2021-04-27 23:56
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他