gpt4 book ai didi

ios - XLPagerTabStrip 更改图标大小

转载 作者:行者123 更新时间:2023-11-28 23:30:59 27 4
gpt4 key购买 nike

您好,我正在使用 XLPagerTabStrip 在我的 ios 应用程序 (xcode 10.2.1) (IOS 12.3.1) 上显示类似 Android 的片段选项卡

我正在尝试更改图标大小。我使用以下代码来声明图标

return IndicatorInfo(image: UIImage(named: "ic_chats"), highlightedImage: UIImage(named: "ic_chats"), userInfo: Any?.self)

我尝试进入 Assets 文件夹并将图标大小从 90x90 更改为 70x70,但没有成功。

最佳答案

找到答案我们可以使用下面的代码(不确定这是否正确但可以解决问题)

添加以下代码

    newCell?.transform = CGAffineTransform(scaleX: 0.7, y: 0.7)
oldCell?.transform = CGAffineTransform(scaleX: 0.7, y: 0.7)

类 CommunicateViewController 中以下 block 的末尾: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

}

关于ios - XLPagerTabStrip 更改图标大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56513238/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com