使用uidatepicker编辑ios UITextField

前端之家收集整理的这篇文章主要介绍了使用uidatepicker编辑ios UITextField前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个uitextfield写的日期..如何在页面底部显示一个uidatepicker而不是标准键盘
提前致谢

解决方法

确保您的类实现了 UITextFieldDelegate协议.然后,覆盖shouldBeginEditing委托方法以返回FALSE:
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
    //check if it is the UITextField you don't want the keyboard for
    if (textField != dateTextField)
        return TRUE;

    //present your UIDatePicker
    //see instructions below

    //Return false to prevent the keyboard from appearing.
    return FALSE;
}

我建议使用另一个包含UIDatePicker的UIViewController并使用presentModalViewController来显示它.这符合用户界面指南.

原文链接:https://www.f2er.com/iOS/330919.html

猜你在找的iOS相关文章