摘要: #region 更新赋值,前者赋值给后者 public static void ShadowCopy(object a, object b) { if (a == null) return; if (a.GetType() == b.GetType()) { ... 阅读全文
posted @ 2016-12-16 21:38 justqi 阅读(2684) 评论(0) 推荐(0) 编辑
摘要: 1.模型CellItem.h 2.模型CellItem.m 3.TableViewController.m 阅读全文
posted @ 2016-12-16 21:36 justqi 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 自签名证书制作流程 打开终端,输入 openssl genrsa -out ca.key 1024 ,生成名称为ca的秘钥 注:openssl生成的文件皆放在用户文档下(finder菜单栏’前往’ - 电脑 -Macintosh Hd - 用户 - dongxinda) 根据密钥在桌面生成证书: 终端输入 openssl req -x509 -new -key ca.key -out... 阅读全文
posted @ 2016-12-16 21:34 justqi 阅读(1198) 评论(0) 推荐(0) 编辑