我正在制作一个应用程序,我想UITextView
用两个不同的UIPickerView
.
我的代码
控制器.h
UIPickerView *inputType;
UIPickerView *inputFormat;
控制器.m
inputFormat=[[UIPickerView alloc] initWithFrame:CGRectZero];
inputType=[[UIPickerView alloc] initWithFrame:CGRectZero];
txtFormat.inputView=inputFormat;
txtType.inputView=inputType;
我的问题现在来了:
我想用不同的数据填充选择器,但我不知道该怎么做。
我知道如何为一个选择器设置数据源,但不是为两个。
我该怎么做?