其他分享
首页 > 其他分享> > HMSegmentedControl 使用bug

HMSegmentedControl 使用bug

作者:互联网

 self.segmentedControl.selectedSegmentIndex = self.selectIndex;

当遇到某种条件直接选中某个item有时候滑动效果很丑 甚至有时候划不过去

这多半是因为    NSDictionary *selectDic = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:kUIFitSize(20)], NSForegroundColorAttributeName: kUIColorFromRGB(0x0A93FF)};
    NSDictionary *commontDic = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:kUIFitSize(15)], NSForegroundColorAttributeName: kUIColorFromRGB(0x666666)};

 

两个字体差异过大导致,和UI协商一下 改的小一点可以继续用,如果有大佬能更好的解决 请留言

标签:boldSystemFontOfSize,UIFont,self,使用,kUIColorFromRGB,kUIFitSize,NSForegroundColor
来源: https://blog.csdn.net/cola_wh/article/details/112190434