选择器视图的标准值

时间:2015-08-26 18:45:33

标签: objective-c uipickerview uidatepicker

是否可以通过选择器视图设置另一个起点: 即使我启动我的应用程序,它也会显示两行,数字最多为60.标准值为00:00。

如何使第一行的起始值减去60,第二行的起始值减去45?

1 个答案:

答案 0 :(得分:1)

您可以使用UIPickerView方法:

- (void)selectRow:(NSInteger)row
      inComponent:(NSInteger)component
         animated:(BOOL)animated

例如:

[myPickerView selectRow:2 inComponent:0 animated:NO];
[myPickerView selectRow:9 inComponent:1 animated:NO];

分别选择第1列和第2列中的第三个和第十个值(在您询问起始值时不设置更改动画)。

此初始化可以在控制器的viewWillAppear方法中进行(如果适用)。