//自动调节输入文本框的高度 - (void)textViewDidChange:(UITableView *)textView{ float height; if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { CGRe
分类:
移动开发 时间:
2016-01-28 10:49:58
阅读次数:
189
[[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
开发中有的时候查看设计统计数据,或者通过日志查看错误信息,这个时候我们就需要获取获取设备信息,看下关于设备有几种方法: 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
首先判断是否支持多线程UIDevice *device = [UIDevice currentDevice];BOOL backgroundSupported = NO;if ([device respondsToSelector:@selector(isMultitaskSupported)]) ...
分类:
移动开发 时间:
2015-11-26 01:20:36
阅读次数:
159
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7){ self.navigationController.navigationBar.barTintColor = [UIColor redColor]; } self.na....
分类:
其他好文 时间:
2015-11-24 12:36:36
阅读次数:
205