0

我想实现一个自定义下拉菜单,它允许用户快速更改 iOS 应用程序中的视图。我决定UIPickerView为此目的使用。但是我没有找到任何关于如何通过 a 更改视图的教程,UIPickerView所以我需要一些帮助和建议。代码示例将非常有帮助。

4

1 回答 1

4

下面的方法是UIPickerview行选择的委托方法。

-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:
(NSInteger)component    
{
    //in this method hide the views that you don't want to show and show the views that you
    //don't want to hide, when a particular row is selected.

    NSLog(@"row selected----->>%d",row);
}
于 2013-01-17T04:31:46.713 回答