上一页 1 ··· 13 14 15 16 17
  2012年4月13日
摘要: #ifdef DEBUG #define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); #else #define DLog(...) #endif #define ALog(fmt, ...) ... 阅读全文
posted @ 2012-04-13 15:46 easonoutlook 阅读(165) 评论(0) 推荐(0) 编辑
摘要: NSBundle*bundle =[NSBundle mainBundle];NSDictionary*info =[bundle infoDictionary];NSString*prodName =[info objectForKey:@"CFBundleDisplayName"];http://stackoverflow.com/questions/1247142/getting-an-ip... 阅读全文
posted @ 2012-04-13 15:35 easonoutlook 阅读(2924) 评论(0) 推荐(0) 编辑
  2012年4月12日
摘要: http://www.cocoachina.com/bbs/read.php?tid=62061&keyword=tabBar 非常好用的自定制tabBar 阅读全文
posted @ 2012-04-12 10:55 easonoutlook 阅读(284) 评论(0) 推荐(0) 编辑
  2012年4月11日
摘要: 在开发过程中解决了证书的问题之后 遇到 TakingInstallLock问题,重启手机搞定 真机测试,无论是越狱的设备还是未越狱的设备都必须使用证书才能进行刷机。 阅读全文
posted @ 2012-04-11 13:44 easonoutlook 阅读(625) 评论(0) 推荐(0) 编辑
摘要: http://www.cocoachina.com/bbs/read.php?tid-28047-keyword-idp.html 申请证书的过程,未进行验证 http://wjl4926.blog.163.com/blog/static/97330204201112595236780/ 开发证书的生成过程,已经进行了验证 阅读全文
posted @ 2012-04-11 13:42 easonoutlook 阅读(227) 评论(0) 推荐(0) 编辑
  2012年4月10日
摘要: 今天终于搞定了Three20添加到项目中的方式,之前也弄过,但是不记得了,这次纪录下来,好记性不如烂笔头。 步骤如下, 1、在Terminal的目录下,不切换目录 打开终端,输入git clone git://github.com/facebook/three20.git 回车后等待100%完成 2、建好新项目,确保新项目的路径是正确的 /DemoFiles/TestFileOne... 阅读全文
posted @ 2012-04-10 11:19 easonoutlook 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 在finder里面,在向前菜单栏下面,可以选择进入 或者使用快捷键 shift + command + C 来实现 阅读全文
posted @ 2012-04-10 10:31 easonoutlook 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 安装的时候出现如下问题 解决方案 :如果安装包没问题把时间调到1月1号,我使用的是 2012年1月1号,然后可以完成安装,没有任何问题。 出现此问题的原因:是因为安装包的证书过期了,不被信任所以无法安装,只要把时间尽量往前调就可以了,欺骗绕过去,就是这样,证书保护苹果的一贯作风 阅读全文
posted @ 2012-04-10 10:27 easonoutlook 阅读(925) 评论(0) 推荐(0) 编辑
  2012年4月6日
摘要: Introduction C++0x was recently furnished with new algorithms. Some of them fill in gaps in the C++03 Standard Library whereas others are convenience algorithms that simplify recurrent progr... 阅读全文
posted @ 2012-04-06 21:57 easonoutlook 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17