我如何能够将工具栏添加到选择器?我想在选择器上方有一个带有“完成”栏按钮项的工具栏。单击“完成”按钮将隐藏(动画)选择器屏幕外(像键盘一样进入底部)
我仍在寻找这个方法......希望你能帮助我。
谢谢
当我需要这样做时,我通常会创建一个容器视图并将选择器和工具栏都放入其中。这允许将分组作为一个单元隐藏、移动、调整大小等。
UIView *pickerGroupView = [[[UIView alloc] initWithFrame: frame] autorelease];
thePicker.frame = pickerGroupView.bounds;
[pickerGroupView addSubview: thePicker];
theToolbar.center = pickerGroupView.center; // assuming that's where you want it
[pickerGroupView addSubView: theToolbar];
最简单的方法是创建一个新的 UIToolbar 并将其放置在您的选取器视图的正上方,当您对其进行动画处理时。查看DateCell示例以获取动画代码。