0
이 오류 또는 수신 이유를 이해하지 못했습니다. 나는이 문제에 대한 몇 가지 다른 질문을 한 번 보았고 문제를 해결하기 위해 스토리 보드를 조작했지만 아무런 성공도 거두지 못했습니다. 여기 내 코드입니다 :- [UIViewController tableView : numberOfRowsInSection :] : 인식 할 수없는 선택기가 인스턴스로 전송 됨 0x7ff437517770
class Home: UIViewController, UITableViewDataSource, UITableViewDelegate {
var images = [String]()
var names = [String]()
func getNames(array: inout Array<String>){
for dict in State.event {
array.append(dict["name"] as! String)
}
}
func getImages(array: inout Array<String>){
for dict in State.event {
let cover = dict["cover"] as! NSDictionary
let pictureURL = cover["source"] as! String
array.append(pictureURL)
}
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return State.token.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
getNames(array: &names)
getImages(array: &images)
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCell
let url = URL(string: images[indexPath.row])
let imageData = try? Data(contentsOf: url!)
cell.eventImage.image = UIImage(data: imageData!)
cell.eventName.text = names[indexPath.row]
return cell
}
}
오류 : - [UIViewController에있는 tableView : numberOfRowsInSection :] : 인식 할 수없는 선택 예를 0x7ff437517770 스토리 보드에서 DataSource
를 설정했기 때문에 이런 일이됩니다
의 클래스로
Home
을 설정하여 콘센트를 확인하는 것을 잊었다 고 생각. 이 질문을보십시오 : https://stackoverflow.com/questions/2455161/unrecognized-selector-sent-to-instance – the4kman