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.
如何使UITextField成为必需?换句话说,如果条目为空,则将它们重新集中在必填字段上。
为您的领域设置一个委托,并-textFieldShouldEndEditing:在其中实施。
-textFieldShouldEndEditing:
通过 [textfieldname.length] > 0 检查文本字段的长度。如果是则移动,否则文本字段成为第一响应者。