У меня есть табличное представление (не контроллер табличного представления).Одна ячейка табличного представления представляет собой коллекционное представление, а остальные - только текстовые метки.Вот мой код
import UIKit
class MainViewController: UIViewController, UITableViewDataSource,UITableViewDelegate, UICollectionViewDelegate, UICollectionViewDataSource, UISearchBarDelegate {
@IBOutlet weak var searchBar: UISearchBar!
var imageNames = [ImageNames]()
var foodNames = [FoodNames]()
override func viewDidLoad() {
super.viewDidLoad()
imageNames = [
ImageNames(name: "images"),
ImageNames(name: "unnamed"),
ImageNames(name: "unnamed"),
ImageNames(name: "images"),
ImageNames(name: "images")
]
foodNames = [
FoodNames(title: "Hamburger hamburger big king big mac big chicken")
]
func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
self.searchBar.showsCancelButton = true
}
func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
searchBar.showsCancelButton = false
searchBar.text = ""
searchBar.resignFirstResponder()
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 130
}
func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return imageNames.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MainFoodTableViewCell", for: indexPath) as? MainFoodTableViewCell
cell?.mainFoodCollectionView.delegate = self
cell?.mainFoodCollectionView.dataSource = self
cell?.mainFoodCollectionView.reloadData()
cell?.mainFoodCollectionView.tag = indexPath.row
return cell!
}
//collection view cell size
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: IndexPath) -> CGSize {
return CGSize(width: ((self.view.frame.size.width / 2) + 16), height: 130)
}
//collection view cell data
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "MainFoodCollectionViewCell", for: indexPath) as! MainFoodCollectionViewCell
let img = imageNames[indexPath.row]
cell.mainFoodImage.image = UIImage(named: img.name)
return cell
}
}
Как я могу использовать чуть ниже код в том же методе cellForRowAt. * 1004 *
let food: FoodNames
food = foodNames[indexPath.row]
cell?.textLabel!.text = food.title
Я попытался создать другой ViewController для текстовых данных в других ячейках табличного представления.
Заключение Мне нужно одно представление коллекции в первой ячейке представления таблицы, а в других ячейках должны быть только тексты.