08 2016 档案

摘要:参考:http://blog.csdn.net/u011349387/article/details/47318679 1、导入头文件: #import <CommonCrypto/CommonDigest.h> 2、MD5加密处理 /** * 对密码进行MD5加密 */ -(NSString *) 阅读全文
posted @ 2016-08-30 17:12 偶阵雨ss33 阅读(176) 评论(0) 推荐(0)
摘要:有些情况下,并不是简单的push pop,需要连跳几个VC,可以用下面的方法: for(UIViewController * vc in self.navigationController.childViewControllers){ if([vc isKindOfClass:(NSClassFro 阅读全文
posted @ 2016-08-25 11:35 偶阵雨ss33 阅读(127) 评论(0) 推荐(0)
摘要:UIView * lineView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, bgView.frame.size.width, 0.5)]; lineView.backgroundColor = JYEColor(226, 226, 226); 阅读全文
posted @ 2016-08-10 17:21 偶阵雨ss33 阅读(1019) 评论(0) 推荐(0)
摘要://头部拉伸效果 #import "ViewController.h" @interface ViewController ()<UITableViewDelegate,UITableViewDataSource> @property (nonatomic) UITableView *tabelVi 阅读全文
posted @ 2016-08-10 11:22 偶阵雨ss33 阅读(164) 评论(0) 推荐(0)
摘要:转自:http://hi.baidu.com/zhu410289616/item/0de0262910886011097508c2 1.系统默认的颜色设置 //无色 cell.selectionStyle = UITableViewCellSelectionStyleNone; //蓝色 cell. 阅读全文
posted @ 2016-08-09 17:12 偶阵雨ss33 阅读(145) 评论(0) 推荐(0)