KpengS
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里  作者是在这里判断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,...