Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,即使 UITextView 为空,我也需要在 UITextView 上启用 Return Key。默认情况下,在用户未输入任何符号之前,返回键被禁用。我怎么能做到这一点?
谢谢。
即使 UITextView 为空,我也需要在 UITextView 上启用 Return Key。
实际上,无论文本视图是否为空,都默认启用返回键。但是,如果要将返回键默认设置为禁用,则需要将 设置enablesReturnKeyAutomatically为YES。正如 Apple Doc 所说:
enablesReturnKeyAutomatically
YES
此属性的默认值为 NO。如果将其设置为 YES,则当文本输入区域不包含文本时,键盘将禁用返回键。一旦用户输入任何文本,返回键就会自动启用。