摘要: 固态硬盘(Solid State Disk或Solid State Drive),也称作电子硬盘或者固态电子盘,是由控制单元和固态存储单元(DRAM或FLASH芯片)组成的硬盘。固态硬盘的接口规范和定义、功能及使用方法上与普通硬盘的相同,在产品外形和尺寸上也与普通硬盘一致。由于固态硬盘没有普通硬盘的旋转介质,因而抗震性极佳。其芯片的工作温度范围很宽(-40~85摄氏度)。目前广泛应用于军事、车载、工控、视频监控、网络监控、网络终端、电力、医疗、航空等、导航设备等领域。目前由于成本较高,正在逐渐普及到DIY市场。 由于固态硬盘技术与传统硬盘技术不同,所以产生了不少新兴的存储器厂商。厂商只需购买. 阅读全文
posted @ 2013-01-22 18:41 正在路上的小菜鸟 阅读(551) 评论(0) 推荐(0) 编辑
摘要: NSMutableDictionary *titleBarAttributes = [NSMutableDictionary dictionaryWithDictionary: [[UINavigationBar appearance] titleTextAttributes]]; [titleBarAttributes setValue:navBarTitleColor forKey:UITextAttributeTextColor]; [titleBarAttributes setValue:[NSValue valueWithUIOffset:UIOffsetMake(0.... 阅读全文
posted @ 2013-01-22 17:34 正在路上的小菜鸟 阅读(388) 评论(0) 推荐(0) 编辑
摘要: How can I detect that an app has just returned from "background mode"? I mean, I don't want my app to fetch data (each 60 sec) when the user press the "home button". But, I'd like to make some "special" update the first time the app is in foreground mode.How can 阅读全文
posted @ 2013-01-22 17:22 正在路上的小菜鸟 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 这两天在看和这个相关的的内容,全部推翻重写一个版本,这是公司内做技术分享的文档总结,对结构、条理做了更清晰的调整。先找了段代码,理解下,网上看到最多的一段的关于KVC的代码先上代码1.1.Person类2.@implementationPerson3.@synthesizename,age;//属性name将被监视4.-(void)changeName5.{6.name=@"changeNamedirectly";7.}8.@end9.10.11.2.PersonMonitor类监视了name属性12.@implementationPersonMonitor13.14.-( 阅读全文
posted @ 2013-01-22 17:15 正在路上的小菜鸟 阅读(612) 评论(0) 推荐(0) 编辑