Results 7 comments of iMoeNya

@sathya26d94 hey. Seems no one is maintaining this repo anymore. Maybe you can try out my UI framework, Delayout, and give me some advice.

> Any update on this? Obviously none. You have to fork this repo and update Kingfisher all by yourself. ALSO, update Kingfisher to 7.0.0, otherwise it won't be compatible with...

这个库,按照作者的回复,应该是基于 `NSAttributedString`,所以在确定`range`的时候,应该先将`Swift.String`转化成`NSString`。比如: ```swift let length = "🤔".count let range = NSRange(location: 0, length: length) ``` 应该改成: ```swift let length = ("🤔" as NSString).length let range = NSRange(location: 0, length: length)...

Doubt if it is possible. You'd never expect a `UIPageViewController` to do so. Refer to some `UIScrollView` lib instead.

注册是在运行前发生的,所以无所谓;`BHModuleManager.registerDynamicModule` 在注册的时候是去重的,所以也不会影响运行时的性能。 ```objective-c __block BOOL flag = YES; [self.BHModules enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { if ([obj isKindOfClass:class]) { flag = NO; *stop = YES; }...

Is this still the case? Tested and it didn't happen. Seems fixed?