摘要: // // CStudent.hpp // 标准C++类库_list // // Created by 张凯泽 on 17/3/28. // Copyright © 2017年 rytong_zkz. All rights reserved. // #ifndef CStudent_hpp #define CStudent_hpp #include #include typede... 阅读全文
posted @ 2017-03-28 14:43 张凯泽 阅读(893) 评论(0) 推荐(0) 编辑
摘要: >>> dic = dict((("A",[1,2,3]),("F",56))) >>> dic {'A': [1, 2, 3], 'F': 56} >>> dic = {"R":"RRRR","T":"TTTT"} >>> dic {'R': 'RRRR', 'T': 'TTTT'} >>> 阅读全文
posted @ 2017-03-18 20:23 张凯泽 阅读(862) 评论(0) 推荐(0) 编辑
摘要: 我们常使用fmdb或者其他方式创建sqlite数据库,但是由于版本迭代问题,常常有需求要更新数据库,比如加字段、删除、修改字段等等,怎么样才能升级数据库且保持原来存的数据有效呢,上代码: 阅读全文
posted @ 2016-07-27 15:24 张凯泽 阅读(248) 评论(0) 推荐(0) 编辑
摘要: // // Student.h // 内存计数 // // Created by 张凯泽 on 16/7/24. // Copyright © 2016年 rytong_zkz. All rights reserved. // #import @interface Student : NSObject @property(nonatomic,strong)NSMutableStri... 阅读全文
posted @ 2016-07-26 21:19 张凯泽 阅读(129) 评论(0) 推荐(0) 编辑
摘要: http://m.blog.csdn.net/article/details?id=40902065 阅读全文
posted @ 2016-07-13 14:23 张凯泽 阅读(129) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zengraoli/article/details/12616075 阅读全文
posted @ 2016-07-12 10:22 张凯泽 阅读(101) 评论(0) 推荐(0) 编辑
摘要: http://ios.jobbole.com/86040/ 阅读全文
posted @ 2016-06-21 18:12 张凯泽 阅读(95) 评论(0) 推荐(0) 编辑
摘要: http://tanqisen.github.io/blog/2013/04/19/gcd-block-cycle-retain/ 阅读全文
posted @ 2016-06-21 18:08 张凯泽 阅读(94) 评论(0) 推荐(0) 编辑
摘要: // 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素值 - (CGPoint)convertPoint:(CGPoint)point fromView... 阅读全文
posted @ 2016-05-31 14:08 张凯泽 阅读(196) 评论(0) 推荐(0) 编辑
摘要: http://www.cocoachina.com/ios/20160324/15767.html 阅读全文
posted @ 2016-05-27 00:47 张凯泽 阅读(162) 评论(0) 推荐(0) 编辑