gpt4 book ai didi

ios - 在显示 View Controller 之前选择文本字段并调出键盘 - swift

转载 作者:可可西里 更新时间:2023-11-01 02:13:28 26 4
gpt4 key购买 nike

我有以下代码将信息发送到下一个 UIViewController。在下一个 UIViewController 中,我有一个 UITextField。当函数 commentsTapped 被使用时(这意味着它将转到下一个 UIViewController),它应该自动“选择” UITextField 并带来上键盘。

这是我的代码:

func commentsTapped(cell: updateTableViewCell) {
let allDataSend = cell.pathDB
self.performSegueWithIdentifier("showComments", sender: allDataSend)
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "showComments" {
if let nextVC = segue.destinationViewController as? commentsTableViewController {
nextVC.dataGotten = sender! as! String
}
}
}

有人知道怎么做吗?

最佳答案

这样,您将在加载 View Controller 后看到键盘出现:

override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
self.textField.becomeFirstResponder()
}

关于ios - 在显示 View Controller 之前选择文本字段并调出键盘 - swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40131381/

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