我试图安装Alamofire而且我不知道我在做什么,我想我在创建Xcode项目时填了一些东西。
在我添加任何内容之前,我在代码中出现错误,这里有一张图片可以更好地解释它:
知道这是什么或如何解决它?
答案 0 :(得分:1)
这是因为您从Interface Builder设置了PickerView
委托和数据源,但您实现了所需的方法:
// returns the number of 'columns' to display.
func numberOfComponentsInPickerView(pickerView: UIPickerView!) -> Int {
}
// returns the # of rows in each component..
func pickerView(pickerView: UIPickerView!, numberOfRowsInComponent component: Int) -> Int {
}
在viewDidLoad
之后添加这两种方法,它将解决您的问题。
随意发表评论