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
iOS强制横屏或强制竖屏
//强制转屏-(void)interfaceOrientation:(UIInterfaceOrientation)orientation{if([[
UIDevice
cu
木语先生
·
2020-04-02 18:21
iOS10如何跳转到系统设置
举个栗子:#defineiOS10([[
UIDevice
currentDevice].systemVersiondoubleValue]>=10.0)NSStr
伯牙呀
·
2020-04-02 14:45
YYKit源码探究(二十六) ——
UIDevice
分类框架及Device Information(一)
版本记录版本号时间V1.02018.03.28前言iOS圈内有几个人大家基本都知道,比如说王巍、唐巧,还有YYKit框架的作者现任职于滴滴的郭曜源-ibireme等。这里有一篇唐巧对他的专访,还有他的GitHub-Yaoyuan和博客,这里贴出来框架YYKit框架。接下来几篇我们就一起来看一下这个框架。感兴趣的可以看上面写的几篇。1.YYKit源码探究(一)——基本概览2.YYKit源码探究(二)
刀客传奇
·
2020-04-02 10:34
iOS-获取设备信息
这个方法后面会列出来NSString*deviceName=[selfgetDeviceName];NSLog(@"设备型号-->%@",deviceName);NSString*iPhoneName=[
UIDevice
currentDevice
linbj
·
2020-04-02 03:08
iOS 10 的适配问题
iOS10,下面是我总结的一些关于iOS10适配方面的问题,如果有错误,欢迎指出.1.系统判断方法失效:在你的项目中,当需要判断系统版本的话,不要使用下面的方法:#defineisiOS10([[[[
UIDevice
currentDevice
卡神凯哥
·
2020-04-01 21:03
应用评分
(void)goToAppStore{NSString*urlStr=@"";if([[[
UIDevice
currentDevice]s
钦点秀才
·
2020-04-01 20:22
voip APP切换听筒和扬声器以及距离传感器
距离传感器在需要的地方:#pragmamark--设置距离传感器-(void)setproximity{//添加近距离事件监听,添加前先设置为YES,如果设置完后还是NO的读话,说明当前设备没有近距离传感器[[
UIDevice
currentDevice
北海有鱼w
·
2020-04-01 12:14
iOS代码实现获得项目名称及版本号(Version/Build)
NSString*app_Name=[infoDictionaryobjectForKey:@"CFBundleDisplayName"];获取系统版本:NSString*systemVersion=[
UIDevice
currentDevice
smiletao
·
2020-04-01 08:18
iOS开发 | 获取设备信息
www.cocoachina.com/ios/20161130/18229.html1.获取电池电量(一般用百分数表示,大家自行处理就好)-(CGFloat)getBatteryQuantity{return[[
UIDevice
currentDevice
_冇毒
·
2020-04-01 05:50
极光推送之应用内外消息推送 核心代码
UIUserNotificationTypeSound|UIUserNotificationTypeAlert)-(void)initJPushWithOptions:(NSDictionary*)launchOptions{if([[
UIDevice
curr
XLsn0w
·
2020-04-01 00:02
关于地图定位
NSLocationAlwaysUsageDescription=YESNSLocationWhenInUseUsageDescription=YES2.在调用百度SDK定位之前,先运行如下代码:if([[
UIDevice
c
星辰流转轮回
·
2020-03-31 21:01
判断当前版本
判定系统版本:doubleversion=[[
UIDevice
currentDevice].systemVersiondoubleValue];if(version>7.1f){[[UINavigationBarappearance
小小东
·
2020-03-31 14:17
转为横屏模式
方法一:转为横屏模式//强制横屏if([[
UIDevice
currentDevice]respondsToSelector:@selector(setOrientation:)]){SELselector
光明程辉
·
2020-03-31 12:34
ios获取手机序列号等
//手机序列号NSString*identifierNumber=[[
UIDevice
currentDevice]uniqueIdentifier];NSLog(@"手机序列号:%@",identifierNumber
那C乱我心
·
2020-03-31 12:42
iOS获取系统信息
NSString*deviceID=[[
UIDevice
currentDevice]uniqueIdentifier];//设备id//NSString*deviceID=[[UIApplicationsharedApplication
Satanshun
·
2020-03-31 03:40
iOS10中系统版本的判断
在iOS10中,当需要判断系统版本号的时候,不能再用以下这种方法了:#defineisiOS10([[[[
UIDevice
currentDevice]systemVersion]substringToIndex
平__淡
·
2020-03-31 02:13
Touch ID解锁
中做初始化对象和验证是否支持TouchID解锁的操作:LAContext*context=[[LAContextalloc]init];NSError*error=nil;/*ios8.0以上才支持if([[[
UIDevice
currentDevice
Blunet
·
2020-03-30 14:07
目前iOS 获取设备号比较好的方案
用户可以自己去设备设置中关闭,建议关闭,能少收集一个是一个),主要说下目前我认为最好的解决方案首先说一下最简单的方法,很多公司在用这个,但是有缺陷,就是相同开发商的多个应用返回的值是一样的,除非真的有这种需求,否则不建议用[[
UIDevice
currentDevice
Kevin777vip
·
2020-03-30 13:33
Swift 获取手机型号,系统版本
1.手机系统版本9.3.5letsystemVersion=
UIDevice
.current.systemVersion2.手机系统iPhoneOSletsystemName=
UIDevice
.current.systemName3
天明依旧
·
2020-03-30 04:33
iOS-获取手机唯一标识符(获取苹果手机IMEI,获取苹果手机MAC)
一、iOS7以后不能获取手机IMEIiOS2.0版本以后
UIDevice
提供一个获取设备唯一标识符的方法uniqueIdentifier,通过该方法我们可以获取设备的序列号,这个也是目前为止唯一可以确认唯一的标示符
秋穗巧
·
2020-03-30 00:13
iOS11 导航栏UIBarButtonItem Fix
//iOS11系统,将Button的内容和图片根具体需求进行便处理if(([[[
UIDevice
currentDevice]systemVersion]floatValue]>=11.0)){LeftButton.contentEdgeInsets
饱醉豚吔屎啦你
·
2020-03-29 12:42
iOS获取iPhone系统信息和服务器返回空的常规处理
globallyUniqueString=%@",[[NSProcessInfoprocessInfo]globallyUniqueString]);//全球唯一标识NSLog(@"uniqueIdentifie=%@",[
UIDevice
currentDevi
marlonxlj
·
2020-03-29 05:04
iOS UIScrollView图片循环
-(void)viewDidLoad{[superviewDidLoad];if([[[
UIDevice
currentDevice]systemVersion]floatValue]>=7){self.automaticallyAdjustsScrollViewInsets
丶绅士丿丨丨
·
2020-03-28 14:26
searchBar使用技巧
1、设置中文:if([[[
UIDevice
currentDevice]systemVersion]floatValue]>=9.0){[UIBarButtonItemappearanceWhenContainedInInstancesOfClasses
雨轩_99
·
2020-03-28 09:15
不在appIcon上显示推送数量,但是在系统通知栏保留推送通知的方法
//不在appIcon上显示推送数量,但是在系统通知栏保留推送通知的方法defineIS_IOS11_LATER([[
UIDevice
currentDevice]deviceSystemMajorVersion
koreadragon
·
2020-03-28 09:21
获取iOS设备信息(内存/电量/容量/型号/IP地址/当前WIFI名称/系統版本)
1.获取电池电量(一般用百分数表示,大家自行处理就好)-(CGFloat)getBatteryQuantity{return[[
UIDevice
currentDevice]batteryLevel];}
CrazySteven
·
2020-03-28 07:49
开发 Tips
1.强制转屏if([[
UIDevice
currentDevice]respondsToSelector:@selector(setOrientation:)]){SELselector=NSSelectorFromString
寒咯
·
2020-03-28 00:14
iOS日历组件之FSCalender
_calendar){CGFloatheight=[[
UIDevice
currentDevice].modelhasPrefix:@"iPad"]?
MI移动
·
2020-03-27 22:54
iOS 获取屏幕方向以及方向旋转
self.interfaceOrientation或[[UIApplicationsharedApplication]statusBarOrientation]if(self.interfaceOrientation==
UIDevice
OrientationLandscapeRight
VincentHK
·
2020-03-27 21:50
[转]iOS 获取设备唯一标示符的方法
iOS2.0版本以后
UIDevice
提供一个获取设备唯一标识符的方法uniqueIdentifier,通过该方法我们可以获取设备的序列号,
pzhpengpeng
·
2020-03-27 09:52
iOS - 传感器
void)viewDidLoad{[superviewDidLoad];//[UIApplicationsharedApplication].proximitySensingEnabled=YES;[
UIDevice
currentDevice
CDLOG
·
2020-03-27 01:55
ios 中获取设备信息
-(void)getDeviceNetInfo{//监听移动服务提供商的变化,如开机状态,更换SIM卡//设备唯一标识符NSString*identifierStr=[[[
UIDevice
currentDevice
随风流年
·
2020-03-26 20:25
iOS关于监听手机横竖屏问题
1.在开发的过程中也许有这样的需求;在某个界面要求监听屏幕的旋转方向,比如在某个界面有播放器横竖屏切换靠重力感应,下面我就介绍一种监听横竖屏的方法:大家可以监听
UIDevice
OrientationDidChangeNotification
大叔程序猿
·
2020-03-26 16:45
本地消息提醒
-(void)LocalNotification{if([[[
UIDevice
currentDevice]systemVersion]floatValue]>=8.0){if([[UIApplicationsharedApplication
刘振杰
·
2020-03-26 15:55
iOS 监听横屏竖屏
/***开始生成设备旋转通知*/[[
UIDevice
currentDevice]beginGeneratingDeviceOrientationNotifications];/***添加设备旋转通知**
爱吃鱼的小灰
·
2020-03-25 10:45
API更新:iOS7
1.已禁用-[
UIDevice
uniqueIdentifier]苹果总是把用户的隐私看的很重要。
河南蓝鸥科技有限公司
·
2020-03-24 21:08
iOS 设备的唯一标识符
1.已禁用-[
UIDevice
uniqueIdentifier]苹果总是把用户的隐私看的很重要。
清晨十分的阳光
·
2020-03-24 18:15
计算文字高度
宽度固定rect(
UIDEVICE
_SCREEN_WIDTH-25,MAXFLOAT)-(CGSize)boundingALLRectWithSize:(NSString)txtFont:(UIFont
330PG
·
2020-03-24 12:52
解决iOS10不能跳转系统WiFi列表的问题
系统设置跳转被禁用,只能跳转App设置,但是最近发现苹果又更新了URLscheme,亲测可用,建议iOS10以下,还用原来的scheme(原来的scheme为prefs)#defineiOS10([[
UIDevice
currentDevice
caiteru
·
2020-03-24 10:27
iOS -切换设备方向
方法:-(void)changeToOrientation:(
UIDevice
Orientation)orientation{if([[
UIDevice
currentDevice]respondsToSelector
歌白梨
·
2020-03-24 02:55
Cordova在iOS上面几个兼容问题
Keyboard.automaticScrollToTopOnHiding=true;2、出现导航条上移20px,一部分的导航条被状态栏遮挡的问题-(void)viewWillAppear:(BOOL)animated{if([[[
UIDevice
currentDevice
阿拉丁珍藏的神灯
·
2020-03-23 20:56
iOS 推送总结
setRemoteNotification{UIApplication*application=[UIApplicationsharedApplication];//iOS8之后//#definekVersion[[[
UIDevice
currentDevice
大猿媛
·
2020-03-23 18:42
UIDevice
1.判断是否是横向屏:BOOLb=
UIDevice
OrientationIsLandscape([
UIDevice
currentDevice].orientation);获取设备uniqueIdentifier
随风飘荡的小逗逼
·
2020-03-22 19:09
横竖屏切换时UIScrollView偏移量混乱问题
.设备横竖屏切换通知[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(orientChange:)name:
UIDevice
OrientationDidChangeNotificationobject
白菜松
·
2020-03-22 15:33
iOS开发中常用的宏
#endif2.适配#defineYYIOS_VERSION[[[
UIDevice
currentDevice]systemVersion]floatValue]#defi
小荣袁
·
2020-03-22 14:11
适配iphone X 、iphone Xs 、iphone XR 、iPhone XS Max 宏定义
//判断是否是ipaddefineisPad([[
UIDevice
currentDevice]userInterfaceIdiom]==UIUserInterfaceIdiomPad)//判断iPhoneXdefineIS_IPHONE_X
Finger_s
·
2020-03-22 13:38
获取ios系统版本 ——
UIDevice
的使用
UIDevice
类是一个单例,其唯一的实例([
UIDevice
currentDevice])代表了当前使用的设备。
少年_如他
·
2020-03-22 11:37
YYKit源码探究(二十九) ——
UIDevice
分类之Memory Information(四)
版本记录版本号时间V1.02018.03.28前言iOS圈内有几个人大家基本都知道,比如说王巍、唐巧,还有YYKit框架的作者现任职于滴滴的郭曜源-ibireme等。这里有一篇唐巧对他的专访,还有他的GitHub-Yaoyuan和博客,这里贴出来框架YYKit框架。接下来几篇我们就一起来看一下这个框架。感兴趣的可以看上面写的几篇。1.YYKit源码探究(一)——基本概览2.YYKit源码探究(二)
刀客传奇
·
2020-03-22 10:54
iOS方法调用时的系统适配
1.获取systemVersion后比判断该调用哪种方法方法1NSString*version=[
UIDevice
currentDevice].systemVersion;NSCalendar*calendar
codeCoder
·
2020-03-22 06:35
iOS 音频播放时听筒及扬声器切换
[[
UIDevice
currentDevice]setProximityMonitoringEnabled:YES];//建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应//添加监听[
独孤求涅
·
2020-03-21 17:35
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他