2

我有以格式显示倒数计时器的功能,但是当 uidatepicker 处于倒数计时器模式时,它只显示 HH:MM。

how i can add a extra field for second in uidatepickerview.
4

2 回答 2

3

我如何在 uidatepickerview 中为第二个添加一个额外的字段。

你不能。 UIDatePicker仅在倒计时模式下显示小时和分钟。如果您还需要显示秒数,则必须使用UIPickerView.

与往常一样,您应该提交增强请求以请求此功能。

于 2012-10-06T23:42:12.040 回答
0
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView;
{
return 2;
}

它将在您的选择器视图中创建部分。

于 2012-10-05T08:44:45.273 回答