gpt4 book ai didi

swift - 使用 NSTextField 替代 NSLabel

转载 作者:搜寻专家 更新时间:2023-11-01 07:18:14 34 4
gpt4 key购买 nike

由于 AppKit 不提供 NSLabel,我们需要找到类似的东西。 NSTextField 可能是我需要的东西?

怎么做this在 Swift 中?

[textField setBezeled:NO];
[textField setDrawsBackground:NO];
[textField setEditable:NO];
[textField setSelectable:NO];

感谢您的帮助!

最佳答案

是的,NSTextField 是正确的。

这是 Xcode 在您请求标签时的建议:

enter image description here

您可以从 Interface Builder 或代码创建标签:

enter image description here

然后像这样设置你的值,例如:

let tf = NSTextField()
tf.isBezeled = false
tf.drawsBackground = false
tf.isEditable = false
tf.isSelectable = false

关于swift - 使用 NSTextField 替代 NSLabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40673646/

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