NSString 和 NSTextfield 的东西
我有这样的东西:
我有一个应用程序,它有一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
[NSString stringWithFormat:]
You are looking for
[NSString stringWithFormat:]