UIDevice+IdentifierAddition.h: #import <Foundation/Foundation.h> @interface UIDevice (IdentifierAddition) - (NSString *) uniqueDeviceIdentifier; @end
分类:
移动开发 时间:
2016-01-28 09:28:33
阅读次数:
201
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES];//建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应//添加监听[[NSNotificationCenter defaultCenter] addObserve...
分类:
移动开发 时间:
2016-01-21 18:42:12
阅读次数:
209
#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
1、获取设备的信息1 UIDevice *device = [[UIDevice alloc] int]; 2 NSString *name = device.name; //获取设备所有者的名称 3 NSString *model = device.name...
分类:
移动开发 时间:
2016-01-12 15:18:39
阅读次数:
264
在次之前,补充个内容。UIDevice是无法获得具体的设备型号的。要获得设备型号,比如(iphone 4s, iphone5)这样的,要通过这样的办法。1.引入头文件。#include#include2.获取型号//手机型号。size_tsize;sysctlbyname("hw.machine",...
分类:
移动开发 时间:
2016-01-12 13:18:54
阅读次数:
202
开发中有的时候查看设计统计数据,或者通过日志查看错误信息,这个时候我们就需要获取获取设备信息,看下关于设备有几种方法: NSLog(@"%@",[[UIDevice currentDevice] name]);//设备名称 NSLog(@"%@",[[UIDevice currentDe...
分类:
移动开发 时间:
2016-01-04 22:26:48
阅读次数:
224
开发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
Application 是单例iOS程序创建的第一个对象就是UIApplication对象[UIApplicationsharedApplication]可以获得这个单例对象// 判断是否是iOS8以上版本#define KiOS8 [[UIDevice currentDevice].systemV...
分类:
移动开发 时间:
2015-12-21 18:26:54
阅读次数:
147