0
iPhone-coder posted
Editor placeholder in source file in swift with tableViewController
i get error :: "Editor placeholder in source file " with dequeueReusableCell with
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell =
tableView.dequeueReusableCell(withIdentifier: "MulticellTableview", for: IndexPath ) as! MulticellTableview
cell.title.text=arrayofcell[indexPath.row].text
return cell;
}