Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法-(void)viewDidLoad让我的选择器以某个值启动。例如,如果我有一个显示: 1 、 2 、 3 、 4 、 5 的选择器,我可以让它在 3 上启动。这有意义吗?谢谢
-(void)viewDidLoad
您可以使用此实例方法:
- (void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL)animated;
UIPickerView 文档
在您的情况下,它将是这样的:
- (void)viewDidLoad { [super viewDidLoad]; [myPickerView selectRow:3 inComponent:0 animated:NO]; }