Xcode:文本字段重定向到 nib
我有一个解释术语的应用程序。它们都在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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