Кажется, я получаю следующую ошибку в Xcode:
[UIView collectionView: numberOfItemsInSection:]: нераспознанный селектор, отправленный экземпляру
В моем коде :
import UIKit
class RestaurantListViewController: UIViewController, UICollectionViewDataSource {
@IBOutlet var collectionView:UICollectionView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
func numberOfSections(in collectionView: UICollectionView) -> Int {
return 1
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 20
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "restaurantListCell", for: indexPath)
return cell
}
}
Мой идентификатор ячейки, отображаемый на панели утилит: restaurantListCell
Любая помощь будет принята с благодарностью.
Зак