摘要: 虚拟现实(Virtual Reality),简称虚拟技术,也称虚拟环境,是利用电脑模拟产生一个三度空间的虚拟世界,提供用户关于视觉等感官的模拟,让用户如同身历其境一般,电脑可以立即进行复杂的运算,将精确的三维世界视频传回产生临场感。 今年已经毫无疑问的是 VR 起飞的一年,但 Android 手机这 阅读全文
posted @ 2016-05-24 00:19 Jieson Wu 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 1. 很多的情况是由于重复导入Protocol导致的。 例如:import "Protocol1.h" import "Protocol1.h" 在同一项目中的重复导入。 2. 还有另一种情况是 Protocol2 扩展了 Protocol1. 阅读全文
posted @ 2014-03-07 13:14 Jieson Wu 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: 各位在用XCode 5.x 打开用XCode 4.x 创建的项目时候。会遇到编译器警告automatically select architectures.1. This is because the XCode 5 improves thecompile time to active a new feature calledBuild Active Architecture Only.2. so. The XCode only compile the active architecture code.3. The may be a bug. (when you've built th 阅读全文
posted @ 2014-03-06 10:04 Jieson Wu 阅读(509) 评论(0) 推荐(0) 编辑
摘要: instancetype: 使用 instancetype 编译器和IDE 会做类型检查,而id不会做完整的类型检查。A method with a related result type can be declared by using the typeinstancetypeas its result type.instancetypeis a contextual keyword that is only permitted in the result type of an Objective-C method, e.g.上面的话的意思:instancetype 是一个关键字,它只能用来 阅读全文
posted @ 2014-02-11 17:37 Jieson Wu 阅读(431) 评论(0) 推荐(1) 编辑
摘要: 原文地址:http://blog.csdn.net/heiyeshuwu/article/details/8688324推荐一些不错的计算机书籍。# PHP《PHP程序设计》(第2版) –PHP语法和入门最好的书《PHP5权威编程》 –PHP入门后升级书《深入PHP:面向对象、模式与实践》(第3版) –理解PHP中的面向对象和设计模式《高性能PHP应用开发》 –了解一些基本简单的PHP优化《PHP核心技术与最佳实践》 –了解很多PHP高级技术和延伸技术《Extending and Embedding PHP》–PHP内核介绍和扩展开发最好的书!没有之一!# MySQL《MySQL必知必会》 – 阅读全文
posted @ 2013-03-19 13:30 Jieson Wu 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://lschou88.blog.163.com/blog/static/1729592462011224287938/Linux Shell常用shell命令2011-03-24 14:08:07|分类:shell|标签:linuxshell命令|字号订阅一、文件、目录操作命令1、ls命令功能:显示文件和目录的信息ls 以默认方式显示当前目录文件列表ls -a 显示所有文件包括隐藏文件ls -l 显示文件属性,包括大小,日期,符号连接,是否可读写及是否可执行ls -lh 显示文件的大小,以容易理解的格式印出文件大小 (例如 1K 234M 2G)ls -lt 显示文件,按照 阅读全文
posted @ 2012-11-28 17:08 Jieson Wu 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.sina.com.cn/s/blog_61d8c7210100jpwd.html命令参数描述ls-a列出当前目录下的所有文件,包括"."开头的隐藏文件-b把文件名中不可输出的字符用反斜杠加字符编号的形式写出-c输出文件的i节点的修改时间,并以此排序-d将目录象文件一样显示,而不是显示其下的文件-e输出时间的全部信息,而不是显示简要信息-f对输出的信息不排序-i输出文件的i节点的索引信息-k以k字节的形式显示文件大小-l列出文件的详细信息-m横向输出文件名,并以","作为分隔符-n用数字的UID,GID代替文件名称-o输出 阅读全文
posted @ 2012-11-28 17:02 Jieson Wu 阅读(268) 评论(0) 推荐(0) 编辑
摘要: One of the strangest pieces of common syntax in Objective-C is the line self = [super init];. Without any explanation, this arrangement raises a few questions. Does this line set the self value for the instance? Is self just a variable like any other? If so, why have it at all? I'll address each 阅读全文
posted @ 2012-08-02 14:38 Jieson Wu 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Sometimes you find that there is a strange stituation about xcode giving message "object send -autorelease many times". 1. Usually, you may seed autorelease to object many times. 2. There is also a stituation an object' initial method is not named according to apple initial method name 阅读全文
posted @ 2012-08-01 17:18 Jieson Wu 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1. Application Aandbox applicdation bundle.2. Library/Preferences tem/3. Tmp/:4. Documents/:5. Library/Caches/: 阅读全文
posted @ 2012-07-25 16:21 Jieson Wu 阅读(165) 评论(0) 推荐(0) 编辑