04 2012 档案
千万别study English,应学会learn English——英语学习方法强烈推荐
摘要:开始第一阶段:“打通”耳朵,完全听清 要领: 第一, 选择1盘(再次强调是1盘而非一套)适合自身英语水平的磁带;(磁带我选用的是李阳的疯狂英语,电驴有很多资源的,也可用新东方的或者BBC) 第二, 每天集中精力把A面和B面连续听两遍 第三, 要坚持天天听,但每隔6天要休息一天 第四, 直到听清磁带中的所有内容 2 完成第二阶段:听读并举,掌握语法 要领: 第一, 把已经能完全听清的磁带中的第1盘磁... 阅读全文
posted @ 2012-04-28 12:19 easonoutlook 阅读(418) 评论(0) 推荐(0)
关于dyld: Library not loaded
摘要:分享解决方案:方法:菜单-->Product--->EditScheme, 关闭 Guard Malloc http://www.cocoachina.com/bbs/read.php?tid=95769 阅读全文
posted @ 2012-04-27 12:46 easonoutlook 阅读(127) 评论(0) 推荐(0)
查找 EXC_BAD_ACCESS 问题根源的方法
摘要:http://wangjianlewo.blog.163.com/blog/static/176568051201231311562319/ 阅读全文
posted @ 2012-04-27 12:38 easonoutlook 阅读(183) 评论(0) 推荐(0)
通过URL下载,创建和显示UIImage
摘要:NSURL *url = [NSURLURLWithString:@“http.....”]; UIImage *image = [UIImageimageWithData:[NSDatadataWithContentsOfURL:url]]; uiimage.image = image; 阅读全文
posted @ 2012-04-27 12:16 easonoutlook 阅读(193) 评论(0) 推荐(0)
启动动画以及视图
摘要:http://blog.csdn.net/zltianhen/article/details/6737958 http://www.weste.net/2011/9-22/76761.html 有两种方法 //设置一个图片; UIImageView *niceView = [[UIImageView alloc] initWithFrame:CGRectMake(0,0, 320, 48... 阅读全文
posted @ 2012-04-26 18:25 easonoutlook 阅读(172) 评论(0) 推荐(0)
iOS应用程序图标标准以及 要求
摘要:http://mobile.51cto.com/iphone-249370.htm http://blog.csdn.net/bl1988530/article/details/6698120 从icon说起 命名方法,举例 Icon.png 57×57 Icon-72.png 72×72 Icon-Small... 阅读全文
posted @ 2012-04-26 18:23 easonoutlook 阅读(843) 评论(0) 推荐(0)
duplicate symbol _OBJC_IVAR_$_TTURLJSONResponse._rootObject
摘要:出现此错误是因为引入了过多的json.a文件 加入链接的时候只要加一个json的就可以了,不然会引起冲突 阅读全文
posted @ 2012-04-20 11:20 easonoutlook 阅读(294) 评论(0) 推荐(0)
引入extThree20JSON之后,怎么在工程中使用
摘要:引入到工程中去之后,无法使用 #import 将类文件在工程中使用 需要对引入的文件先进行编译,生成目标文件之后才可以使用,不然会一直报错! 阅读全文
posted @ 2012-04-20 09:37 easonoutlook 阅读(182) 评论(0) 推荐(0)
离线使用iPhone SDK文档的方法
摘要:在使用Xcode进行iPhone编程时,有时需要参考iPhone SDK的文档,不过每次Control+Click后,Xcode都会试图连接Internet,进行在线读取。有什么方法能够把资料下载到硬盘上进行离线阅读吗? 答案是肯定的。首先去Xcode的Preference中的Documentation Sets下,选择所需的docset,这里是iPhone 4.0 Reference L... 阅读全文
posted @ 2012-04-19 11:30 easonoutlook 阅读(148) 评论(0) 推荐(0)
UIButton of UIButtonTypeCustom with title does not show as clicked
摘要:按钮custom之后 进行单击无法显示 title http://stackoverflow.com/questions/9561427/uibutton-of-uibuttontypecustom-with-title-does-not-show-as-clicked 阅读全文
posted @ 2012-04-16 16:57 easonoutlook 阅读(178) 评论(0) 推荐(0)
在navigationBar上面加入任意数量的任何控件
摘要:http://www.cocoachina.com/bbs/read.php?tid=92353 阅读全文
posted @ 2012-04-16 14:14 easonoutlook 阅读(152) 评论(0) 推荐(0)
UINavigationBar 上面添加多个按钮
摘要:http://xiaohui3837843.blog.163.com/blog/static/54388740201111615432445/ 此方法已经验证,可行 UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 150, 45)]; [tools setTintColor:[self.navigation... 阅读全文
posted @ 2012-04-16 14:10 easonoutlook 阅读(1569) 评论(0) 推荐(0)
iOS打印Debug日志的方式
摘要:#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 阅读(173) 评论(0) 推荐(0)
iOS获取应用程序名称的方法 application Name
摘要: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 阅读(2942) 评论(0) 推荐(0)
自定义tabbar更新,支持badge,隐藏+tableview自动分页
摘要:http://www.cocoachina.com/bbs/read.php?tid=62061&keyword=tabBar 非常好用的自定制tabBar 阅读全文
posted @ 2012-04-12 10:55 easonoutlook 阅读(303) 评论(0) 推荐(0)
越狱的iPhone 遇到TakingInstallLock问题的解决方案
摘要:在开发过程中解决了证书的问题之后 遇到 TakingInstallLock问题,重启手机搞定 真机测试,无论是越狱的设备还是未越狱的设备都必须使用证书才能进行刷机。 阅读全文
posted @ 2012-04-11 13:44 easonoutlook 阅读(636) 评论(0) 推荐(0)
Apple 开发证书的申请和管理
摘要: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 阅读(242) 评论(0) 推荐(0)
将Three20添加到项目中的方式
摘要:今天终于搞定了Three20添加到项目中的方式,之前也弄过,但是不记得了,这次纪录下来,好记性不如烂笔头。 步骤如下, 1、在Terminal的目录下,不切换目录 打开终端,输入git clone git://github.com/facebook/three20.git 回车后等待100%完成 2、建好新项目,确保新项目的路径是正确的 /DemoFiles/TestFileOne... 阅读全文
posted @ 2012-04-10 11:19 easonoutlook 阅读(157) 评论(0) 推荐(0)
Mac OS Lion里面进入磁盘的方式
摘要:在finder里面,在向前菜单栏下面,可以选择进入 或者使用快捷键 shift + command + C 来实现 阅读全文
posted @ 2012-04-10 10:31 easonoutlook 阅读(268) 评论(0) 推荐(0)
Xcode在Mac OS X10.7.3上无法安装的问题的解决方案
摘要:安装的时候出现如下问题 解决方案 :如果安装包没问题把时间调到1月1号,我使用的是 2012年1月1号,然后可以完成安装,没有任何问题。 出现此问题的原因:是因为安装包的证书过期了,不被信任所以无法安装,只要把时间尽量往前调就可以了,欺骗绕过去,就是这样,证书保护苹果的一贯作风 阅读全文
posted @ 2012-04-10 10:27 easonoutlook 阅读(959) 评论(0) 推荐(0)
New STL Algorithms That Will Make A More Productive Developer
摘要: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 阅读(219) 评论(0) 推荐(0)