XiaoKL

10 2013 档案

iOS.NSString.pitfall-in-using-nsstring
摘要:1. NSString的使用 在CodeReview中, 发现类似以下代码, 表示深深受伤了: 在A行代码执行后, fString就会发生变化, 变成"P_XXXX"。 做CodeReview时可以让人大开眼界, 代码是千奇百怪. 阅读全文

posted @ 2013-10-21 17:02 XiaoKL 阅读(186) 评论(0) 推荐(0)

Python.__getattr__Vs__getattribute__
摘要:__getattr__ Vs __getattribute__ 1 class Fish(object): 2 3 def __getattr__(self, key): 4 if key == 'color': 5 print 'access color' 6 return 'blue' 7 else: 8 raise AttributeError 9 10 def __getattribute__(self, key):11 p... 阅读全文

posted @ 2013-10-17 23:33 XiaoKL 阅读(399) 评论(0) 推荐(0)

iOS.Compiler
摘要:1. 在Xcode4.6下创建的工程, 在Xcode5下build&run, 然后提示以下error. 难不成要在Xcode5下重新创建工程?Xcode cannot run using the selected device. Choose a destination with a supported architecture in order to run on this device. 阅读全文

posted @ 2013-10-17 20:41 XiaoKL 阅读(192) 评论(0) 推荐(0)

iOS.Dev.Guru
摘要:1.Ricardo QuesadaCocos2dhttps://github.com/ricardoquesadahttp://www.elance.com/s/rquesada/2.Jeff VerkoeyenThree20http://jeffverkoeyen.com/timeline3. Matt Gallowayhttp://www.galloway.me.uk(持续更新。。。) 阅读全文

posted @ 2013-10-15 17:56 XiaoKL 阅读(168) 评论(0) 推荐(0)

iOS.Book.Effective Objective-C 2.0
摘要:1. 中文翻译版 (更新中)https://github.com/HagerHu/effective-objective-c-2.02. Book的主页 和 代码主页http://www.effectiveobjectivec.comhttps://github.com/effectiveobjc/codehttp://www.galloway.me.uk/2013/05/effective-objective-c-2-dot-0/3. 国内开发者的学习笔记http://blog.csdn.net/alfred_kwong/article/details/10102977http://esof 阅读全文

posted @ 2013-10-15 17:53 XiaoKL 阅读(1117) 评论(2) 推荐(0)

svn.SvnX
摘要:1. 使用SvnX的入门http://www.divvun.no/doc/tools/docu-svn-user-svnx.html2. SvnX的代码https://code.google.com/p/svnx/ 阅读全文

posted @ 2013-10-10 18:08 XiaoKL 阅读(184) 评论(0) 推荐(0)

导航