Это скриншот основной раскадровки: вместо основного экрана раскадровки симулятор показывает табличное представление с кучей имен, перечисленных на рисунке, а раздел комментариев невидим
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return userEmailArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! FeedCell
cell.useremailLabel.text = userEmailArray[indexPath.row]
cell.likeLabel.text = String(likesArray[indexPath.row])
cell.commentLabel.text = userCommentArray[indexPath.row]
cell.userimageView.image = UIImage(named: "selectImage.png")
return cell
}