NSString 和 NSTextfield 的东西

发布于 2024-09-28 23:04:39 字数 357 浏览 2 评论 0原文

我有这样的东西:

我有一个应用程序,它有一个名为 userName 的 NSTextfield 、一个名为 helloName 的 NSTextfield 和一个启动整个应用程序的 NSButton 。过程。它所做的只是用户在“名称”文本字段中输入他/她的姓名。 当用户按下确认键时,Hello 文本字段会显示类似“Hello, userName”的内容,而 userName 是直接从 Name 文本字段获取的字符串。

我知道有一种方法可以从名称文本字段中获取字符串值,并使用 %@ 将该值添加到句子“Hello, userName”中。但我到处都找不到它...

I have something like this:

I have an application that has a NSTextfield named userName, a NSTextfield named helloName, and a NSButton that starts the whole process. All it does is that the user types in his/her name in the Name textfield.
when the user presses confirm, the Hello textfield will say something like "Hello, userName" whereas userName is the string that is taken directly from the Name textfield.

I know that there is a way to take the string value from the Name textfield and use %@ to add that value to the sentence "Hello, userName". But I can't find it anywhere...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千秋岁 2024-10-05 23:04:39

您正在寻找 [NSString stringWithFormat:]

NSString* helloSentence = [NSString stringWithFormat:@"Hello, %@", [userName stringValue];

You are looking for [NSString stringWithFormat:]

NSString* helloSentence = [NSString stringWithFormat:@"Hello, %@", [userName stringValue];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文