摘要: Mac程序的大包上传和iOS的有些许不同,因为Mac app既可以上传到store,也可以不通过store供人下载。因此,code sign和provision要根据情况(开发,release<store 还是非store>)制作。在程序打包后,验证程序的可行性上,也有所不同。下面,就将一些要点纪录 阅读全文
posted @ 2016-07-08 16:54 爬坡 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 1、在子线程中是不能进行UI 更新的,而可以更新的结果只是一个幻像:因为子线程代码执行完毕了,又自动进入到了主线程,执行了子线程中的UI更新的函数栈,这中间的时间非常的短,就让大家误以为分线程可以更新UI。如果子线程一直在运行,则子线程中的UI更新的函数栈 主线程无法获知,即无法更新 2、只有极少数 阅读全文
posted @ 2016-06-06 15:48 爬坡 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 1.让自己习惯C++ 2.构造/析构/赋值运算 3.资源管理 4.设计与声明 阅读全文
posted @ 2016-05-14 20:44 爬坡 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 3rd开头证书用于上传AppStore Application用于给App签名 Installer用于生成pkg 阅读全文
posted @ 2016-05-11 10:15 爬坡 阅读(106) 评论(0) 推荐(0) 编辑
摘要: find *.* -exec sh -c "iconv -f GB18030 -t UTF-8 {} > {}.txt" \; 文件转换 sudo find ./ -name "*.h" | xargs dos2unix 阅读全文
posted @ 2016-04-14 15:41 爬坡 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 参考博客 http://www.cnblogs.com/lidabo/p/3805487.html http://www.cppblog.com/Robertxiao/archive/2013/01/06/197022.html http://www.cnblogs.com/finallyliuyu 阅读全文
posted @ 2016-03-23 00:09 爬坡 阅读(214) 评论(0) 推荐(0) 编辑
摘要: direct ui 句柄 阅读全文
posted @ 2016-03-03 16:02 爬坡 阅读(118) 评论(0) 推荐(0) 编辑
摘要: ---------------------------------------------------------------------------------------- 原文 http://blog.csdn.net/u012333003/article/details/20282277 一、简述 Google 的C++规范号称世界上最优秀的编码规范,于是拿来研究下,已改善自己以... 阅读全文
posted @ 2016-02-23 15:52 爬坡 阅读(1551) 评论(0) 推荐(0) 编辑
摘要: 宏Q_OBJECT 阅读全文
posted @ 2016-02-23 15:03 爬坡 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 虚析构函数 阅读全文
posted @ 2016-02-19 14:22 爬坡 阅读(140) 评论(0) 推荐(0) 编辑