09 2012 档案
ASIHTTPRequest
摘要:1.入门教程:http://blog.csdn.net/lzpsnake/article/details/73725522.进阶(详解):http://blog.csdn.net/pjk1129/article/details/6575588What is ASIHTTPRequest?ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It i 阅读全文
posted @ 2012-09-26 15:13 kelisi_king 阅读(337) 评论(0) 推荐(0)
iOS内存管理
摘要:关于内存的崩溃后调试:http://blog.csdn.net/ToddFox/article/details/7695799 http://www.cnblogs.com/ipinka/archive/2012/09/03/2660924.html 1. ios的内存管理采用的是手动回收机制,每次alloc init / new / copy执行过后,针对某对象的内存计数器将会+1,该对象执行一次release操作则-1。当计数器为0时,则该对象被回收。若计数器当前计数为0,依然执行release的话,程序则会crash。若变量获取的方法不属于alloc new copy 三者之一,则... 阅读全文
posted @ 2012-09-25 17:05 kelisi_king 阅读(327) 评论(0) 推荐(0)
ios 随笔_基于uiwebview的浏览器开发
摘要:好http://xinsheng.huawei.com/cn/index.php?app=forum&mod=Detail&act=index&id=9918311.const char * ->NSString:[NSString stringWithCString:(const char*) encoding:NSUTF8StringEncoding];2.多窗口浏览 可以使用WEpopover 实现;3.浏览器设置的弹窗使用WEpopover 调用自定义的Cell 类实现,然后使用delegate来完成各个按钮的相关操作(注意对delegate的赋值);ht 阅读全文
posted @ 2012-09-14 16:32 kelisi_king 阅读(949) 评论(0) 推荐(0)