摘要:
NSError *error = NULL; NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"()+?" opt... 阅读全文
摘要:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaultssetObject:@[@"en"]forKey:@"AppleLanguages"]; [defaults synchroni... 阅读全文
摘要:
1、https://developer.apple.com/library/ios/samplecode/LazyTableImages/Introduction/Intro.html这是苹果的官方demo,用itunes的应用列表为例,讲述了图片lazy load的思想。主要思想是,当UITabl... 阅读全文
摘要:
NSString *yourHTMLSourceCodeString = [webView stringByEvaluatingJavaScriptFromString:@"document.body.innerHTML"]; NSError *error = NULL; NSRegul... 阅读全文
摘要:
https://github.com/robbiehanson/CocoaAsyncSocket 阅读全文
摘要:
if (_indexCollation ==nil) { _indexCollation= [UILocalizedIndexedCollationcurrentCollation]; } NSArray *localTracks = [NSArrayarray]; //... 阅读全文
摘要:
https://github.com/kelp404/CocoaSecurity 阅读全文
摘要:
https://github.com/CEWendel/SWTableViewCell 阅读全文
摘要:
如果要做成微信朋友圈的评论效果,那么评论用一个UITableview去加载,每个UITableviewCell上加载一个PPLabel。但是这样会导致一个问题,PPLable在响应点击单词的时候,同样UITableviewCell会响应select事件。有两种处理办法:1、截取点击事件,这种办法比较... 阅读全文
摘要:
可以使用PPLabel来实现这个功能,下载代码https://github.com/petrpavlik/PPLabel。这个demo有两个小bug:1、如果最后一个单词后面没有空格字符,那么不能点击。修改办法:在ViewController中,有一个代理方法:- (void)highlightWo... 阅读全文