摘要: 当出现如下错误时 :dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social是因为加入的库文件不兼容旧的版本。解决办法 阅读全文
posted @ 2013-07-22 17:57 just to do 阅读(137) 评论(0) 推荐(0) 编辑
摘要: html5 video标签分两种,一种是 另一种是 在解析网页视频地址时,要注意不同的网站可能用的视频标签不同。具体分析请看以下链接http://blog.csdn.net/mihenyinghua/article/details/7315432 阅读全文
posted @ 2013-07-17 12:56 just to do 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 在objective-c 中混编 c++程序,很容易忽略掉c++的命名规则。下边链接一篇博文,其中详细说明了c++的命名规则,感谢博主。http://www.cnblogs.com/ggjucheng/archive/2011/12/15/2289291.html 阅读全文
posted @ 2013-07-08 15:20 just to do 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #import @interface LightLabel : UILabel{ float redValue_; float greenValue_; float blueValue_; float size_;}@property(assign,nonatomic)float redValue;... 阅读全文
posted @ 2013-07-01 13:35 just to do 阅读(445) 评论(0) 推荐(0) 编辑
摘要: #import @interface LineSpaceLabel : UILabel{ CGFloat charSpace_; CGFloat lineSpace_;}@property(nonatomic, assign) CGFloat charSpace;@property(nonatomic, assign) CGFloat lineSpace;@end#import "LineSpaceLabel.h"#import #import@implementation LineSpaceLabel@synthesize lineSpace = lineSpace_;@ 阅读全文
posted @ 2013-07-01 13:32 just to do 阅读(4838) 评论(0) 推荐(0) 编辑
摘要: 在用到[UIDevice currentDevice].uniqueIdentifier 的地方修改为其他代码,如果需要用到机器唯一标示的地方,可以用mac地址等替代。 阅读全文
posted @ 2013-06-21 11:24 just to do 阅读(214) 评论(0) 推荐(0) 编辑
摘要: [UIApplication sharedApplication].idleTimerDisabled=YES 阅读全文
posted @ 2013-04-17 16:58 just to do 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 感谢原作者的无私分享 原作地址:http://www.onevcat.com/2012/06/arc-hand-by-hand/ 阅读全文
posted @ 2013-04-17 10:55 just to do 阅读(171) 评论(0) 推荐(0) 编辑