弹出UIPicker而不是键盘

时间:2010-07-08 15:39:06

标签: iphone xcode uipicker

我想在单击文本字段时弹出UIPicker而不是键盘。这可能吗,我一直在谷歌搜索一段时间但找不到任何东西。

有没有人有任何示例代码?

此致 斯蒂芬

3 个答案:

答案 0 :(得分:5)

我认为这是一种更正式的方法:

UIDatePicker *datePicker = [[[UIDatePicker alloc] init] autorelease];
datePicker.datePickerMode = UIDatePickerModeDate;
[datePicker addTarget:self action:@selector(datePickerValueChanged:) forControlEvents:UIControlEventValueChanged];
datePicker.tag = indexPath.row;
textField.inputView = datePicker;

答案 1 :(得分:3)

当用户单击文本字段时,使用[self presentModalViewController:picker]显示模态视图控制器。我希望你知道如何处理文本字段事件

答案 2 :(得分:0)

试试这个 - 非常有帮助

https://github.com/larsacus/LARSSlidingPicker