◕ ̯͡◕苦瓜
◕ ̯͡◕苦瓜
在Demo 中二级页面下拉过程中返回到首页会 crash, 其中一处crash 断点在 `ESRefreshComponent.swift` 中, ```swift open override func willMove(toSuperview newSuperview: UIView?) { super.willMove(toSuperview: newSuperview) /// Remove observer from superview immediately self.removeObserver() DispatchQueue.main.async { [unowned self, newSuperview] in...
I have set `shouldCachePhotoURLImage` enabled, but when I load some image (which was cached before) will always fetch Image by URLSession。 Maybe I should change code in [SKZoomingScrollView.swift#L13](https://github.com/suzuki-0000/SKPhotoBrowser/blob/f59375bb5a79d54956ebb9b91833cad03ea3390b/SKPhotoBrowser/SKZoomingScrollView.swift#L13) like this?...
fix 'Fix : NSURLSessionDownloadTask resumeData error on iOS 10.0~10.1. ' commit correct
参见: https://www.jianshu.com/p/60d1d2483351 https://github.com/liwenDeng/brainking 可以直接通过Charles 在UI还没有显示的时候直接拿到题目与选项答案,省去OCR识别的过程。
楼主,我最近在学习runtime 的过程中也发现了一个不错的博客,共有 六章,内容较多 分享一下 : http://southpeak.github.io/blog/2014/10/25/objective-c-runtime-yun-xing-shi-zhi-lei-yu-dui-xiang/
Line.m 文件中动画执行完后未移除动画,会导致无限调用initWithLayer: 和 drawInContext:方法 ` - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{ if (flag) { initialSelectedLineLength = self.selectedLineLength; lastContentOffsetX = (self.selectedLineLength / DISTANCE) \* self.bindScrollView.frame.size.width; //[self removeAllAnimations]; } } `