Xcode:文本字段重定向到 nib

发布于 2024-10-22 03:16:33 字数 205 浏览 4 评论 0原文

我有一个解释术语的应用程序。它们都在 nib 文件中进行了解释。例如“汽车”这个词。 用户必须搜索单词“car”。

我想要一个文本字段。在该文本字段中,用户可以输入单词“car”,它将转到 nib 文件:“car”。我该怎么做?

它就像一个应用程序,您可以在文本字段中输入问题,如果您正确编写问题,它会在 nib 文件中回答您。

I have an app that explains terms. They are all explained in nib files. For example, the word "car".
The user has to search for the word "car".

I want to have a text field. In that text field the user can type the word "car" and it will go to the nib file : "car". How do I do that?

It's like app where you can type an question in a text field and it will answer you in a nib file if you write the question correctly.

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

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

发布评论

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

评论(1

梦明 2024-10-29 03:16:33

1)在objrct中声明一个名为lookForTerm:的新IBAction(例如appDelegate)
2)在.m文件中添加此方法:

-(IBAction)lookForTerm:(id)sender {
UiTextField* 字段 = 发件人;
if ([[字段文本] isEqualToString:@"car"]) {
加载你的笔尖
}
3

) 在界面生成器中将操作与文本字段连接起来

1) declare a new IBAction called lookForTerm: in an objrct (eg appDelegate)
2) in the .m file add this method:

-(IBAction)lookForTerm:(id)sender {
UiTextField* field = sender;
if ([[field text] isEqualToString:@"car"]) {
Load your nib
}
}

3) connect in the interface builder the action with your textfield

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