我遇到了 UIPickerView 的连接问题。我的 viewController 类如下所示:
@interface MyViewController: UIViewController <UITextFieldDelegate, UIPickerViewDataSource, UIPickerViewDelegate>
{
IBOutlet UIPickerView *pickerView;/this is what it says in all tutorials
//other textfields
}
@property..of textfields, label, nsstring
@end
在界面构建器中,当我 ctrl+单击文件的所有者时,我的选择器视图出现在 Outlets 中,而不是在引用的 outlets 中(与教程中显示的相反)。如何建立连接?我将它连接到什么?我希望在单击一个按钮时显示 PickerView,该按钮的操作也已在上述类中注册。