2020年12月3日
摘要: tableView滚动视图中包含播放器窗口,播放器控制层包含了上下滑动手势调节音量和屏幕亮度功能,与tableView的上下滚动手势冲突。导致播放器窗口上下滚动时,tableView不滚动问题,影响用户体验。 因此本内容主要是为了处理UIScrollView的子视图上添加UIPanGestureRe 阅读全文
posted @ 2020-12-03 15:32 大圣ios博客 阅读(1718) 评论(0) 推荐(0) 编辑
  2020年11月26日
摘要: 在公司开发Framework,记录一下关于cocoapods制作私有库的过程: 1、创建私有repo仓库,比如我的是 https://gitee.com/lishengpei/lspcustom-basic-repo.git,并初始化(设置开发语言,以及readMe) pod repo add LS 阅读全文
posted @ 2020-11-26 20:05 大圣ios博客 阅读(232) 评论(0) 推荐(0) 编辑
  2020年3月23日
摘要: git代码迁移 阅读全文
posted @ 2020-03-23 17:59 大圣ios博客 阅读(2113) 评论(0) 推荐(0) 编辑
  2019年6月4日
摘要: 显⽰示隐藏⽂文件 defaults write com.apple.finder AppleShowAllFiles -bool true GIT演练
一.个人演练(命令行演练) 1.进入到⼯工作⽬录中,初始化一个代码仓库 git init 2.给该git仓库配置一个用户名和邮箱 git config user.name “why”
git config user.email “why... 阅读全文
posted @ 2019-06-04 10:20 大圣ios博客 阅读(222) 评论(0) 推荐(0) 编辑
  2019年4月12日
摘要: -(void)dispatchSignal{ //crate的value表示,最多几个资源可访问 dispatch_semaphore_t semaphore = dispatch_semaphore_create(2); dispatch_queue_t quene = dispatch_get_ 阅读全文
posted @ 2019-04-12 11:25 大圣ios博客 阅读(1656) 评论(0) 推荐(0) 编辑
  2019年3月25日
摘要: 1, 动态添加一个类, 就像KVO一样, 系统是在程序运行的时候根据你要监听的类, 动态添加一个新类继承自该类, 然后重写原类的setter方法并在里面通知observer的. 2, 通过runtime获取一个类的所有属性 3, 动态变量控制,动态修改变量的值 4, 在NSObject的分类中增加方 阅读全文
posted @ 2019-03-25 21:19 大圣ios博客 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1, 修改main方法 2, 让 AppDelegate继承自UIApplication,原来是继承自UIResponder 3, 在AppDelegate中实现 sendEvent方法 阅读全文
posted @ 2019-03-25 19:28 大圣ios博客 阅读(1473) 评论(0) 推荐(0) 编辑
  2019年3月21日
摘要: OC消息发送机制: 使用运行时,通过selector 去快速查找IMP(函数指针)的过程。 消息转发:IMP找不到的时候,通过一些方法做转发处理。 阅读全文
posted @ 2019-03-21 20:07 大圣ios博客 阅读(705) 评论(0) 推荐(0) 编辑
  2019年3月20日
摘要: #import "ViewController.h" #import "AFNetworking/AFNetworking.h" @interface ViewController () @end @implementation ViewController -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event... 阅读全文
posted @ 2019-03-20 15:57 大圣ios博客 阅读(3384) 评论(0) 推荐(0) 编辑
摘要: NSURLSessionDownloadTask不能实现离线断点下载 因为该代理方法是直接将下载结果返回,而不是分步存储磁盘,因此离线断点下载可以使用NSURLSessionDataTask 阅读全文
posted @ 2019-03-20 11:58 大圣ios博客 阅读(1778) 评论(0) 推荐(0) 编辑