从UITableViewCell中的列表中选择月份?

时间:2011-06-08 18:14:06

标签: objective-c cocoa-touch uitableview uipickerview

允许用户从UITableViewCell中选择一个月的最佳方式是什么? UIPickerView要求高度非常大,这使得它看起来很丑..其他一些选择是什么?我不想在那里放置文本字段并手动让用户输入一个月.. 感谢。

1 个答案:

答案 0 :(得分:0)

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

textField.inputView = datePicker; // Now the Keyboard will not appear //

[datePicker release];