gpt4 book ai didi

ios - 触摸外部时如何更改按钮字体?

转载 作者:行者123 更新时间:2023-11-30 12:58:38 24 4
gpt4 key购买 nike

因此,我尝试在按下按钮时更改按钮的字体,然后在用户触摸另一个按钮内部时恢复字体。当前,当用户触摸内部时更改字体是可行的,但我从 Storyboard 中为 touchUpOutside 操作创建了一个导出,并尝试回收代码,但它不起作用。

@IBAction func touchUpInside(_ sender: AnyObject) {
sender.titleLabel?!.font = UIFont(name: "Futura-CondensedExtraBold", size: 25)
}
@IBAction func touchUpOutside(_ sender: AnyObject) {
sender.titleLabel?.font = UIFont(name: "Futura-Medium", size: 22)
}

最佳答案

按下按钮2时恢复按钮1的字体

如果这是您正在寻找的答案,请不要忘记排除答案。

//Button 1 as outlet.
@IBOutlet weak var button1Outlet: UIButton!

//Button 1 as touchUpInside.
@IBAction func button1(_ sender: AnyObject) {
sender.titleLabel?!.font = UIFont(name: "Futura-CondensedExtraBold", size: 25)
}

//Button 2 as touchUpInside.
@IBAction func button2(_ sender: AnyObject) {

//Referenceing button 1 outlet.
button1Outlet.titleLabel?.font = UIFont.systemFont(ofSize: 15.0)
}

关于ios - 触摸外部时如何更改按钮字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40116819/

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