新浪微博 有道云笔记 麦库 EverNote Pocket Instapaper 更多
摘要: 源代码下载链接:06-归档普通对象.zip34.2 KB // MJPerson.h // // MJPerson.h // 06-归档普通对象 // // Created by apple on 13-12-11. // Copyright (c) 2013年itcast. All rights reserved. // #import @interfaceMJ... 阅读全文
posted @ 2013-12-25 14:31 iTeaTime(技术清谈) 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 源码下载地址:07-联系人数据存储.zip35.8 KB // MJPerson.h // // MJPerson.h // 07-联系人数据存储 // // Created by apple on 13-12-11. // Copyright (c) 2013年itcast. All rights reserved. ////本文永久链接,转载请注明出处:http... 阅读全文
posted @ 2013-12-25 14:26 iTeaTime(技术清谈) 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 笔记的完整版pdf文档下载地址:https://www.evernote.com/shard/s227/sh/aba2aa01-4d96-429d-9bbd-2f285c7c0c79/65772262ca10a07770ed5dfff7504930 1213.doc703.5 KB1213.pdf522.9 KB 笔记的文本摘要如下所示: 注意:以下仅仅是文本摘要,没有贴图... 阅读全文
posted @ 2013-12-25 14:18 iTeaTime(技术清谈) 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 源码下载:04-计算代码行数.zip24.1 KB//// main.m// 计算代码行数//// Created by apple on 13-8-12.//技术博客http://www.cnblogs.com/ChenYilong/新浪微博http://weibo.com/luohanchenyilong ///**考察NSString、NSArray的使用* NSFileMana... 阅读全文
posted @ 2013-12-25 14:13 iTeaTime(技术清谈) 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 12.22笔记 pdf下载文件:https://www.evernote.com/shard/s227/sh/f81ba498-41aa-443b-81c1-9b569fcc34c5/f033b89a4394b20921fcb8489066acbc 笔记的文本摘要如下所示: 注意:以下仅仅是文本摘要,没有贴图,出现右边的图标()表示笔记中此处有图片,完整笔记请前往pdf链接中观看或下载观看. ... 阅读全文
posted @ 2013-12-25 12:03 iTeaTime(技术清谈) 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 源代码下载: 01-简单演练.zip72.0 KB // // ViewController.m // 01.简单演练 // // Created by apple on 13-12-24. //技术博客http://www.cnblogs.com/ChenYilong/新浪微博http://weibo.com/luohanchenyilong #import"... 阅读全文
posted @ 2013-12-25 11:36 iTeaTime(技术清谈) 阅读(419) 评论(0) 推荐(0) 编辑
摘要: ⓵UIImageView 1. // iOS7添加的对图像颜色处理的功能,过滤颜色的功能 2. _imageView.tintColor = [UIColor blueColor]; 3. //重新绘图 4. _imageView.image = [_imageView.image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplat... 阅读全文
posted @ 2013-12-25 04:34 iTeaTime(技术清谈) 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 知识点复习 1. 触摸事件&手势识别 1> 4个触摸事件,针对视图的 2> 6个手势识别(除了用代码添加,也可以用Storyboard添加) 附加在某一个特定视图上的,其中需要注意轻扫手势通常会附加到根视图上。 * 大部分操作,都会在touchesBegan事件中处理,以防夜长梦多! * touchesEnd事件通常用于处理touchesMoved事件中的收尾工作! 以上两项... 阅读全文
posted @ 2013-12-25 03:54 iTeaTime(技术清谈) 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 前言:这是一个两万余行的商业项目,但代码质量却不敢恭维! //本文永久链接,转载请注明出处:http://www.cnblogs.com/ChenYilong/p/3489939.html Technorati Tags: iOS, 代码优化 阅读全文
posted @ 2013-12-25 03:35 iTeaTime(技术清谈) 阅读(2596) 评论(0) 推荐(0) 编辑
摘要: 使用storyboard显示UITableView时,如果不修改系统默认生成的tableView:cellForRowAtIndexPath:方法中的代码,必须为UITableViewCell注册(填写)重用标识符:identifier.必须要代码方法中的标识符一致.然后,就可以省略代码设置标识符的方法:(也就是那三行if语句)如下所示: - (UITableViewCell *)tableVie... 阅读全文
posted @ 2013-12-25 03:23 iTeaTime(技术清谈) 阅读(1995) 评论(0) 推荐(0) 编辑