等效的“sizeWithFont:”是什么? Mac 的方法?
我熟悉 iPhone 的 sizeWithFont:
。现在我正在尝试为 Mac 构建一个应用程序并需要类似的东西,但我不知道该怎么做:/
这就是我需要它的原因:我有一个显示一些文本的面板,我想要调整其大小,使其恰好适合内容(NSTextView
)。你会怎么做?
I'm familiar with sizeWithFont:
for the iPhone. Now I'm trying to build an app for the Mac and need something like that, but I don't know how to do it :/
Here's why I need it: I've got a panel that displays some text, and I want to size it so that it just fits the content (a NSTextView
). How would you do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 NSString 的
sizeWithAttributes:
。您必须创建一个属性字典;看看 Apple 的文档。Take a look at NSString's
sizeWithAttributes:
. You'll have to create a dictionary of attributes; take a look at Apple's documentation for that.