fanlilinSaber

Results 6 issues of fanlilinSaber

我们通过pod 正常的方式导入库对里面的资源访问是没有问题的,但是我们的组件化工程为了解决其他组件单例共享必须得使用以下方式 target 'ZJKGoods' do pod 'HXPhotoPicker/SDWebImage', '~> 3.3.1' # Pods for ZJKGoods target 'ZJKGoods IOS Example' do # Comment the next line if you don't want to use dynamic...

1. 能否把外部预览的单独独立出来 2. [self hx_presentPreviewPhotoControllerWithManager:photoManager previewStyle:HXPhotoViewPreViewShowStyleDark currentIndex:currentIndex photoView:nil]; 如果 photoView = nil 我看了 里面的逻辑 始终拿不到图片是否已经下载,也就是获取不到图片的原始大小一直都是200 * 200 所以每次都会闪一下 我现在临时的解决方案是在 ![image](https://user-images.githubusercontent.com/26476506/113964430-11eca000-985e-11eb-8045-e93202310658.png) 暂时可以修复单独作为外部预览图片 闪跳一下的问题 希望作者能解决这个bug

希望能默认显示出UITableView的自定义(headerView 和 footerView)作为分割线 类似下面这种代码 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return dataArray.count; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 1; } - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { return 10; } - (CGFloat)tableView:(UITableView *)tableView...

我们的工程为了支持二进制兼容包,其中依赖了这个组件,但是开启了兼容 BUILD_LIBRARY_FOR_DISTRIBUTION 之后在 framework swiftinterface中会报错如下 'JXPagerViewListViewDelegate' is not a member type of class 'JXPagingView.JXPagingView' 原因就是模块名和类名相同了,这个问题我这边已经验证过了 https://stackoverflow.com/questions/65798857/xcframeworks-swiftinterface-breaks-compile-when-imported-with-swift-package-ma 二进制包对我们很重要,希望作者能修改一下,谢谢。只要模块名和类名不一样就行。这个问题在 [HandyJSON](https://github.com/alibaba/HandyJSON)这提到过

1. @property (nonatomic, assign, readonly, getter=hasFinished) BOOL finished; 可否暴露这个属性 我想在自定义的时候更多扩展 2. @property (assign, nonatomic) CGFloat verticalMargin UI_APPEARANCE_SELECTOR; 可否新增这个属性,因为默认 margin 是调整左右上下的间距,定制化的时候 我想可以单独调整上下的间距 [topSpacer addConstraint:[NSLayoutConstraint constraintWithItem:topSpacer attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationGreaterThanOrEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.f constant:self.verticalMargin]];...