如何以编程方式显示键盘

如何以编程方式显示键盘

本文介绍了如何以编程方式显示键盘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有 UITableView,其中每个单元格由两个 UILabel 组成,我想在选择单元格时显示键盘吗?UILabels 可以吗?

I have UITableView where each cell consists of two UILabel, I want to show up keyboard when the cell is selected? Is it possible with UILabels?

推荐答案

如果你只是想弹出一个键盘,你可以在任何可见视图的任何位置添加一个微小的不可见(透明 1x1 透明文本)UITextField 并制作此文本现场第一响应者弹出一个键盘.然后,您可以使用文本字段委托将输入文本重定向到两个标签中的任何一个(或其他地方)以捕获输入.

If you just want to pop up a keyboard, you can add a tiny invisible (transparent 1x1 with transparent text) UITextField anywhere in any visible view and make this text field first responder to pop up a keyboard. Then you can redirect the input text to any of the two labels (or somewhere else) using the text field delegates to capture the input.

这篇关于如何以编程方式显示键盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 03:37