我无法找到示例,有人可以帮忙吗?-我需要创建通过单击UIButton触发的PickerView,无需使用.xib设计器即可填充数组或字典中的数据。
最佳答案
在IBAction
的UIButton
方法中,您可以执行
- (IBAction)buttonPressed
{
UIDatePicker *myPicker = [[UIDatePicker alloc] initWithFrame:pickerFrame];
[self.view addSubview:myPicker];
[myPicker release];
}
您将必须实现委托和数据源方法以显示选择器及其内容。