https://github.com/YouXianMing
摘要: ObjectAL for iPhone and Machttps://github.com/kstenerud/ObjectAL-for-iPhone以后补上使用教程Mac and iOS Audio, minus the headache.Mac 和 iOS 的的音频框架,真心让人蛋疼。So you want to add audio to your app. Usually your audio needs are something like:即使是这样你还是得把音频添加进的app中,你的老板说的算。通常情况下,你会用到下面的功能:Play, Pause, Stop, LoopVolum 阅读全文
posted @ 2014-03-31 21:50 YouXianMing 阅读(419) 评论(0) 推荐(0) 编辑
摘要: FRDLivelyButtonhttps://github.com/sebastienwindal/FRDLivelyButtonFRDLivelyButtonis a simple UIButton subclass intended to be used inside a UIBarButtonItem, even though it can be used anywhere you can use a UIButton. It is entirely Core Graphics driven, supports 5 common button types (menu, close, ad 阅读全文
posted @ 2014-03-31 20:50 YouXianMing 阅读(421) 评论(0) 推荐(0) 编辑
摘要: SVWebViewController简单翻译https://github.com/samvermette/SVWebViewControllerSVWebViewController is a simple inline browser for your iOS 7 app.SVWebViewController是一个简单别致且易用的浏览器控制器,为iOS7应用而设计.SVWebViewController features:iPhone and iPad distinct UIsfull landscape orientation supportback, forward, stop/re 阅读全文
posted @ 2014-03-31 17:39 YouXianMing 阅读(833) 评论(2) 推荐(0) 编辑
摘要: 1. weak属性(弱引用)被weak修饰的对象叫弱引用,不算对象持有者,一个方法执行完后会导致这个对象自动释放掉,并将对象的指针设置成nil,我使用GCD延时1000ms来验证,1000ms之后,其对象是否还在.#import "RootViewController.h"@interface RootViewController ()@property (nonatomic, weak) NSString *str;@end@implementation RootViewController/** 延时多少毫秒 @param microseconds 毫秒 @param 阅读全文
posted @ 2014-03-31 15:46 YouXianMing 阅读(657) 评论(0) 推荐(1) 编辑