を」プロトコルに準拠していません。』私は、書き込みコード、プロトコルでエラーの難しさを持って、私はXcodeの7.3.1 Type'ViewControllerはUITableViewDataSource 『
//2 Method dari protokol UITableViewDataSource->method 1.
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//Return the numberofRowsInSection.
return namaRestoran.count
}
//Method 2.
func tableView(tableView: UITableView, cellForRowAtIndextPath indexPath: NSIndexPath) -> UITableViewCell {
let cellIdentifier = "Cell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as UITableViewCell
//Configurasi the Cell.
cell.textLabel?.text = namaRestoran[indexPath.row]
return cell
}
エラーメッセージ全体を確認する必要があります。このプロトコルに準拠するために実装しなかったメソッドを教えてください。 – Kilazur