PhilCai
PhilCai
Fix interactive reordering and destroying collection view at the same time ## Changes in this pull request Issue fixed: https://github.com/Instagram/IGListKit/issues/1341#issuecomment-514055500 ### Checklist - [ ] All tests pass. Demo project...
以前有子类`SKStoreProductViewController` 的,到iOS13不允许了
``` @implementation UIImage (WebP) + (UIImage *)xx_imageWithWebPData:(NSData *)data { CFDataRef dataRef = (__bridge CFDataRef)data; YYImageType type = YYImageDetectType(dataRef); NSInteger frameCount = YYImageGetWebPFrameCount(dataRef); CGImageRef cgImageRef = YYCGImageCreateWithWebPData(dataRef, YES, NO, NO, NO);...
`frame.size.width += CGRectGetMaxX(glyphRect) - CGRectGetMaxX(frame)` 这个是让前面的一个layer的宽度放大, 防止这个layer截断glyph?但是放大的值是 `CGRectGetMaxX(glyphRect) - CGRectGetMaxX(frame)`,是为什么呢? 拿单词“WAY”举例,每个字母都有那个kerning, "我们需要将前一个 textLayer 取出来调整其 Rect 的宽度至新的 glyphRect 的最右边"看到文章是这么说的,但是实际上我看到的结果是:“W”的layer的宽度是到了“Y”的最左边,而不是“A”的最右边,是需要这个效果吗?
For example, the `OTHER_LDFLAGS` in the xcconfig file looks like below: ``` ... OTHER_LDFLAGS=$(inherited) -ObjC -filelist $(PODS_ROOT)/Pods-MyApp.xcconfig.LinkFile.list -l"IGListKit" -l"Whatever" ... ``` And after parsing xcconfig using `Xcodeproj::Config`, the items of...
I'm a little curious, when using `swift_c_module`, the `.pcm` files emitted by swiftc would store some absolute paths, like the path of the modulemap, or the path of Xcode SDK,...