gpt4 book ai didi

ios - Swift 中的外观代理 (iOS)

转载 作者:搜寻专家 更新时间:2023-10-30 22:24:49 25 4
gpt4 key购买 nike

有人试过在 swift 中使用外观代理吗?

这种语法不起作用,有没有人知道如何在 segmentedControl 或 UITabBar 等控件上设置标题文本属性?我想我很接近

segmentedControl.titleTextAttributesForState(UIControlState.Normal) = 
NSDictionary(objects: [UIFont(name: fontFamilyRegular, size: 16.0)],
forKeys: [NSFontAttributeName])

最佳答案

应该这样做:

segmentedControl.setTitleTextAttributes([
NSFontAttributeName: UIFont(name: "Helvetica", size: 16.0)!,
NSForegroundColorAttributeName: UIColor.blueColor()
], forState: UIControlState.Normal)

关于ios - Swift 中的外观代理 (iOS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24017951/

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