摘要: webView与js交互常用JS语句:::1、 //禁用用户选择 [self.webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitUserSelect=‘none‘;"];2、//... 阅读全文
posted @ 2016-01-22 11:50 挽月细数风流 阅读(270) 评论(0) 推荐(0) 编辑
摘要: - (void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath { //从锚点位置出发,逆时针绕Y 和 Z坐标轴旋转9... 阅读全文
posted @ 2016-01-22 11:49 挽月细数风流 阅读(115) 评论(0) 推荐(0) 编辑
摘要: - (void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath { //从锚点位置出发,逆时针绕Y 和 Z坐标轴旋转9... 阅读全文
posted @ 2016-01-22 11:48 挽月细数风流 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 这份学习资料是为 iOS 初学者所准备的, 旨在帮助 iOS 初学者们快速找到适合自己的学习资料, 节省他们搜索资料的时间, 使他们更好的规划好自己的 iOS 学习路线, 更快的入门, 更准确的定位的目前所处的位置.该文档会持续更新, 同时也欢迎更多具有丰富经验的 iOS 开发者将自己的常用的一些工... 阅读全文
posted @ 2016-01-22 11:46 挽月细数风流 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1.第一种方式:在WebView的代理方法webViewDidFinishLoad中:字体大小:[webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName(‘body‘)[0].style.webki... 阅读全文
posted @ 2016-01-22 11:44 挽月细数风流 阅读(1390) 评论(0) 推荐(0) 编辑
摘要: 注意点1: 使用 mas_makeConstraints方法的元素必须事先添加到父元素的中,例如[self.view addSubview:view];注意点2: masequalTo 和 equalTo 区别:masequalTo 比equalTo多了类型转换操作,一般来说,大多数时候两个方法都是... 阅读全文
posted @ 2016-01-22 11:43 挽月细数风流 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 概括来说,new和alloc/init在功能上几乎是一致的,分配内存并完成初始化。差别在于,采用new的方式只能采用默认的init方法完成初始化,采用alloc的方式可以用其他定制的初始化方法。英文详解:http://macresearch.org/difference-between-alloc-... 阅读全文
posted @ 2016-01-22 11:42 挽月细数风流 阅读(273) 评论(0) 推荐(0) 编辑
摘要: http://www.tuicool.com/articles/jENfIjJ内容很新, 最近才写的, 一定有你用得上的!!!!! 阅读全文
posted @ 2016-01-22 11:40 挽月细数风流 阅读(106) 评论(0) 推荐(0) 编辑
摘要: NSData*jsonData=[NSJSONSerializationdataWithJSONObject:dicoptions:NSJSONWritingPrettyPrintederror:nil];NSString*jsonString=[[NSStringalloc]initWithDat... 阅读全文
posted @ 2016-01-22 11:35 挽月细数风流 阅读(168) 评论(0) 推荐(0) 编辑
摘要: // // 1// NSMutableAttributedString *attributed = [[NSMutableAttributedString alloc] initWithString:str];// [attributed addAttribute:NSFontAttributeNa... 阅读全文
posted @ 2016-01-22 11:34 挽月细数风流 阅读(242) 评论(0) 推荐(0) 编辑