摘要:
// // 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... 阅读全文
摘要:
>>> 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'} >>> 阅读全文
摘要:
我们常使用fmdb或者其他方式创建sqlite数据库,但是由于版本迭代问题,常常有需求要更新数据库,比如加字段、删除、修改字段等等,怎么样才能升级数据库且保持原来存的数据有效呢,上代码: 阅读全文
摘要:
// // Student.h // 内存计数 // // Created by 张凯泽 on 16/7/24. // Copyright © 2016年 rytong_zkz. All rights reserved. // #import @interface Student : NSObject @property(nonatomic,strong)NSMutableStri... 阅读全文
摘要:
http://m.blog.csdn.net/article/details?id=40902065 阅读全文
摘要:
http://blog.csdn.net/zengraoli/article/details/12616075 阅读全文
摘要:
http://ios.jobbole.com/86040/ 阅读全文
摘要:
http://tanqisen.github.io/blog/2013/04/19/gcd-block-cycle-retain/ 阅读全文
摘要:
// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素值 - (CGPoint)convertPoint:(CGPoint)point fromView... 阅读全文
摘要:
http://www.cocoachina.com/ios/20160324/15767.html 阅读全文