摘要: nonlocal 几个特殊函数 filter、map、reduce、lambda、yield 阅读全文
posted @ 2016-08-19 11:52 liqiantu 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 文件 名称 文档字符串 dir() 阅读全文
posted @ 2016-08-18 20:51 liqiantu 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 三元操作 循环 enumerate 列表解析 阅读全文
posted @ 2016-08-18 17:32 liqiantu 阅读(164) 评论(0) 推荐(0) 编辑
摘要: python通过配置文件共享全局变量 python 深浅拷贝 阅读全文
posted @ 2016-08-14 23:15 liqiantu 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Linux学习 阅读全文
posted @ 2016-08-14 00:04 liqiantu 阅读(98) 评论(0) 推荐(0) 编辑
摘要: plist文件的存储读取 偏好设置的存储与读取 自定义对象归解档 阅读全文
posted @ 2015-04-20 16:30 liqiantu 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 模仿有storyboard的项目控制器的创建: controller中view的创建方式 阅读全文
posted @ 2015-04-18 18:58 liqiantu 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 1 一.UIPickerView 2 1.UIPickerView的常见属性 3 // 数据源(用来告诉UIPickerView有多少列多少行) 4 @property(nonatomic,assign) id dataSource; 5 // 代理(用来告诉UIPickerView每1列的每1行显示什么内容,监听UIPickerView的选择) 6 @property(n... 阅读全文
posted @ 2015-04-18 14:21 liqiantu 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1 // __OBJC__这个宏,在所有的.m和.mm文件中默认就定义了这个宏 2 #ifdef __OBJC__ 3 4 // 如果这个全局的头文件或者宏只需要在.m或者.mm文件中使用, 5 // 请把该头文件或宏写到#ifdef __OBJC__ 中 6 7 #import 8... 阅读全文
posted @ 2015-04-18 03:02 liqiantu 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 1 - (void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 // 5 // self.inputTextField.inputView = [[UISwitch alloc ] init]; 6 7 // 1.创建... 阅读全文
posted @ 2015-04-18 01:55 liqiantu 阅读(165) 评论(0) 推荐(0) 编辑