Найдя ответ, мы можем использовать следующий код (не уверен, что это правильно, но добиваться цели)
Добавьте следующий код
newCell?.transform = CGAffineTransform(scaleX: 0.7, y: 0.7)
oldCell?.transform = CGAffineTransform(scaleX: 0.7, y: 0.7)
В конце следующего блока в class CommunicateViewController: ButtonBarPagerTabStripViewController
// Changing item text color on swipe
changeCurrentIndexProgressive = { [weak self] (oldCell: ButtonBarViewCell?, newCell: ButtonBarViewCell?, _: CGFloat, changeCurrentIndex: Bool, _: Bool) -> Void in
guard changeCurrentIndex == true else { return }
oldCell?.label.textColor = .white
newCell?.label.textColor = self?.colorAccent
Enter The Code Here
}