摘要:1. NSString的使用 在CodeReview中, 发现类似以下代码, 表示深深受伤了: 在A行代码执行后, fString就会发生变化, 变成"P_XXXX"。 做CodeReview时可以让人大开眼界, 代码是千奇百怪.
阅读全文
摘要:__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...
阅读全文
摘要: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.
阅读全文
摘要:1.Ricardo QuesadaCocos2dhttps://github.com/ricardoquesadahttp://www.elance.com/s/rquesada/2.Jeff VerkoeyenThree20http://jeffverkoeyen.com/timeline3. Matt Gallowayhttp://www.galloway.me.uk(持续更新。。。)
阅读全文
摘要: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
阅读全文
摘要:1. 使用SvnX的入门http://www.divvun.no/doc/tools/docu-svn-user-svnx.html2. SvnX的代码https://code.google.com/p/svnx/
阅读全文