gpt4 book ai didi

ios - 如何在用户快速在textField中输入键时显示键的值

转载 作者:行者123 更新时间:2023-11-29 01:49:46 26 4
gpt4 key购买 nike

我正在尝试使用 dictionary 创建一个类似字典的应用程序多个 key - value对。这个想法是当用户输入和现有的 key 时在textField并单击 button value其中key显示在label上。我只能在 button 时显示所有条目(包括键和值)。被单击(无论 textField 的内容如何),但这不是我想要实现的目标。

这是我的代码:

//
// ViewController.swift
// Dictionary
//
// Created by Ralph on 7/20/15.
// Copyright (c) 2015 Ralph. All rights reserved.
//

import UIKit

class ViewController: UIViewController {

let words = [
“doe” : “a deer, a female deer”,
“ray" : “a drop of golden sun”,
“me” : “a name I call myself”
]

@IBOutlet weak var textField: UITextField!

@IBAction func searchButton(sender: AnyObject) {
displayMeaning.text = words.description
}

@IBOutlet weak var displayMeaning: UILabel!

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

最佳答案

您需要像这样访问文本字段中的文本

displayMeaning.text = words[textField.text]

关于ios - 如何在用户快速在textField中输入键时显示键的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31539276/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com