码迷,mamicode.com
首页 >  
搜索关键字:uidevice    ( 271个结果
【IOS工具类】获得设备唯一标识(兼容IOS5,6,7)
UIDevice+IdentifierAddition.h: #import <Foundation/Foundation.h> @interface UIDevice (IdentifierAddition) - (NSString *) uniqueDeviceIdentifier; @end
分类:移动开发   时间:2016-01-28 09:28:33    阅读次数:201
iOS语音播放之切换听筒和扬声器的方法解决方案
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES];//建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应//添加监听[[NSNotificationCenter defaultCenter] addObserve...
分类:移动开发   时间:2016-01-21 18:42:12    阅读次数:209
Location
#import "ViewController.h"#import #define isIOS(version) ([[UIDevice currentDevice].systemVersion floatValue] >= version)@interface ViewController (){...
分类:其他好文   时间:2016-01-17 20:18:27    阅读次数:219
常用的宏定义
//判断IOS7以上版本#define ISIOS7PLUS ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0 ? YES : NO)//判断iPhone型号大于5#define ISIPHONE5PLUS ([UIScree...
分类:其他好文   时间:2016-01-14 20:50:17    阅读次数:180
ios获取设备信息总结
1、获取设备的信息1 UIDevice *device = [[UIDevice alloc] int]; 2 NSString *name = device.name; //获取设备所有者的名称 3 NSString *model = device.name...
分类:移动开发   时间:2016-01-12 15:18:39    阅读次数:264
01-12 IOS获取手机与屏幕属性
在次之前,补充个内容。UIDevice是无法获得具体的设备型号的。要获得设备型号,比如(iphone 4s, iphone5)这样的,要通过这样的办法。1.引入头文件。#include#include2.获取型号//手机型号。size_tsize;sysctlbyname("hw.machine",...
分类:移动开发   时间:2016-01-12 13:18:54    阅读次数:202
iOS开发-获取设备型号信息
开发中有的时候查看设计统计数据,或者通过日志查看错误信息,这个时候我们就需要获取获取设备信息,看下关于设备有几种方法: NSLog(@"%@",[[UIDevice currentDevice] name]);//设备名称 NSLog(@"%@",[[UIDevice currentDe...
分类:移动开发   时间:2016-01-04 22:26:48    阅读次数:224
[转载]iOS开发:获取设备信息
开发iOS平台的应用的时候,可以获取iOS设备的设备信息,包括设备的名称,设备的机型,设备的iOS版本等等。设备信息主要来自 UIDevice 类。UIDevice *currentDevice = [UIDevice currentDevice];NSString *strName = curre...
分类:移动开发   时间:2016-01-03 00:29:03    阅读次数:180
单例模式
它可以保证某个类创建出来的对象永远只有一个作用减少内存开销如果有一些数据 整个程序中都用得上 使用同一份资源[UIApplication shareApplication] [UIDevice currentDevice] [NSUserDefaults Stander]一般工具类使用单例模式ARC...
分类:其他好文   时间:2015-12-31 19:01:59    阅读次数:141
UIApplication
Application 是单例iOS程序创建的第一个对象就是UIApplication对象[UIApplicationsharedApplication]可以获得这个单例对象// 判断是否是iOS8以上版本#define KiOS8 [[UIDevice currentDevice].systemV...
分类:移动开发   时间:2015-12-21 18:26:54    阅读次数:147
271条   上一页 1 ... 6 7 8 9 10 ... 28 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!