03 2019 档案

摘要:推送代码到远程私有库 创建私有库(注意:仓库名称LYDKit必须和本地仓库对应的名称一样) 复制远程仓库的地址,打开终端,cd到对应的本地库路径下面 >>> cd /Users/cxx/Desktop/Mange_JJH/Lib/TZEIndex >>> git status (查看本地代码状态,代 阅读全文
posted @ 2019-03-27 14:30 神来钥匙-陈诗友 阅读(486) 评论(0) 推荐(0) 编辑
摘要:创建本地私有库 >>> cd /Users/cxx/Desktop/Mange_JJH/Lib >>> pod lib create TZTools >>> iOS >>> ObjC >>> Yes >>> None >>> Yes >>> TZ 阅读全文
posted @ 2019-03-27 14:30 神来钥匙-陈诗友 阅读(245) 评论(0) 推荐(0) 编辑
摘要:模块化 1.公共模块 网络层 模型层(基类) 2.mvvm 3.模块化(单元模块,实现单元功能,单元测试) 4.pod 5.路由 阅读全文
posted @ 2019-03-27 14:28 神来钥匙-陈诗友 阅读(398) 评论(0) 推荐(0) 编辑
摘要:self.backgroundColor = [UIColor whiteColor]; self.layer.shadowColor = [UIColor lightGrayColor].CGColor; self.layer.shadowOffset = CGSizeMake(0,0); self.layer.shadowOpacity = 0.5; ... 阅读全文
posted @ 2019-03-16 13:50 神来钥匙-陈诗友 阅读(308) 评论(0) 推荐(0) 编辑
摘要:[cocopad集成百川sdk官网] iOS需要填写BundleID 。BundleID要是当前应用的BundleID。勾选淘宝登录基础包下载SDK。 注意事项:将下载的SDK中的身份图片yw_1222.jpg 复制到xcode工程下,并copy到BundleResources里,注意不能改名。 (http://baichuan.taobao.com/docs/doc.htm?spm=a3... 阅读全文
posted @ 2019-03-11 14:55 神来钥匙-陈诗友 阅读(4302) 评论(0) 推荐(0) 编辑
摘要://不论是创建还是写入只需调用此段代码即可 如果文件未创建 会进行创建操作 - (void)writeToFileWithTxt:(NSString *)string{ dispatch_async(dispatch_get_global_queue(0, 0), ^{ @synchronized (self) { //获取沙盒路径 ... 阅读全文
posted @ 2019-03-08 14:25 神来钥匙-陈诗友 阅读(1493) 评论(0) 推荐(0) 编辑