我有以下代码:
-(IBAction)routePicker
{
UIView *myView = [[UIView alloc] initWithFrame:CGRectMake(0, 264, 320, 216)];
UIPickerView *thePickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0,0,320,216)];
thePickerView.dataSource = self;
thePickerView.delegate = self;
[myView addSubview:thePickerView];
[self.view addSubview:myView];
}
这将创建UIPickerView的子视图,其中包含我添加的预定义项。
此时此IBAction已链接到自定义按钮,因此当我单击按钮时,它会加载子视图。我想要文本框而不是自定义按钮。因此,当我单击/点击文本框时,我的UIPickerView应加载到子视图中。
此致 斯蒂芬