KpengS

Results 16 comments of KpengS

我找到了 ```Objective-C UITabBarAppearance *appearance = UITabBarAppearance.new; NSMutableParagraphStyle *par = [[NSMutableParagraphStyle alloc]init]; par.alignment = NSTextAlignmentCenter; UITabBarItemStateAppearance *normal = appearance.stackedLayoutAppearance.normal; if (normal) { normal.titleTextAttributes = @{NSFontAttributeName : [UIFont systemFontOfSize:font]}; } UITabBarItemStateAppearance *selected...

同问,抖音tableview 闪一下的问题@作者大大

这个问题我今天研究出来了,在ZFDouYinControlView.m里 ![WeChatc32f206185ea2099cce69b214e792513](https://user-images.githubusercontent.com/17844055/86209303-dfae6380-bba4-11ea-9698-8ce2e335f9cd.png) 作者是在这里判断coverimage显示隐藏的 /// 加载状态改变 - (void)videoPlayer:(ZFPlayerController *)videoPlayer loadStateChanged:(ZFPlayerLoadState)state { // if (state == ZFPlayerLoadStatePrepare) { // self.coverImageView.hidden = NO; // } else if (state == ZFPlayerLoadStatePlaythroughOK || state ==...

一样有这个问题有大佬解决了吗

@gsdios 作者还会更新这个库吗

multipleline, really hope you could have this support, it's a bad limit to it.

我也遇到了这个问题,我发现是页面有其他ScorllView,然后一直滑动页面的ScrollView 加上FS自动滑动就会出现,没找到bug源头,目前我在scorllView代理暂停了 自动轮播 快结束滑动时又启动 来解决的这个问题 ``` //防止一直滑动导致FSpagerView 卡顿 func scrollViewWillBeginDragging(_ scrollView: UIScrollView) { if (scrollView == tableView) { pagerView.automaticSlidingInterval = 0 } } func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint,...