iphone 相关网址收集

汇集一些常用的网址

 1.一个开源iphone 的库,包含了一个calendar类

https://github.com/devinross/tapkulibrary

2. 一个好的博客,有很多开发经验总结。

http://blog.csdn.net/favormm/default.aspx?PageNumber=2

3.Open GL和COCO2D开发

http://blogold.chinaunix.net/u1/49717/article_124719.html
http://blog.sina.com.cn/s/articlelist_1400679352_3_1.html
http://www.cnblogs.com/KidReborn/archive/2010/07/26/1785521.html

4.内存管理相关文章

 内存管理基本知识:

->http://www.cocoachina.com/bbs/simple/index.php?t15963.html

Objective C内存管理进阶(一):实践准则
->http://www.cnblogs.com/MobileDevelop/archive/2010/07/19/1779755.html
Objective C内存管理进阶(二):理解autorelease
->http://www.cnblogs.com/MobileDevelop/archive/2010/07/19/1779138.html
Objective C内存管理进阶(三): 调试内存泄露
->http://www.cnblogs.com/MobileDevelop/archive/2010/09/21/1779137.html#1922518

 iphone内存管理 10 tips :

->http://akosma.com/2009/01/28/10-iphone-memory-management-tips/

5.UI相关网址集合

7.用Quratz画聊天窗口

http://donbe.blog.163.com/blog/static/13804802120106302487518/ 

8.UILabel圆角处理

 http://www.189works.com/article-14471-1.html

 

9.比较好的iphone 博客

http://xubenyang.me/tag/nsrunloop 

10。 http://idev.name/

 http://www.cocoadev.com/index.pl?DebuggingAutorelease 

One thing I find very useful is being able to find an object's retain count in the debugger. One easy way to do it is to define this macro in .gdbinit:

 

define rc call (int)[$arg0 retainCount] end 

I do this with a .gdbinit file. Create a file named .gdbinit and place it in your home directory. This is the contents of mine:

fb -[NSException raise]
fb -[_NSZombie release]
fb szone_error

fb objc_exception_throw 

11.私有api试用的一些知识

http://www.yifeiyang.net/iphone-development-skills-of-the-private-api-1-equipment-information/ 

12.http://lldb.llvm.org/tutorial.html lldb debug的一些教程

13. https://github.com/CocoaPods/CocoaPods 开源库管理

原文地址:https://www.cnblogs.com/likwo/p/1950588.html