Как получить заголовок ячейки из внешнего источника данных для UICollectionView - PullRequest
0 голосов
/ 12 ноября 2018

В настоящее время у меня есть представление, где я отображаю collectionView с некоторыми категориями. Я следовал этой записи , чтобы мой collectionView правильно загружал отображаемые данные. Я понял, что работает просто отлично.

Моя проблема в том, что теперь мне нужно иметь возможность получать текст из любой ячейки, которую пользователь выбирает для использования в моей строке поиска.

Мой текущий код:

class SearchViewController: ButtonBarPagerTabStripViewController, UISearchBarDelegate{

    let headerId = "sectionHeader"
    let categoriesId = "categoriesId"

    lazy var searchBar: UISearchBar = {
        let sb = UISearchBar()
        sb.placeholder = "Search businesses or coupons"
        sb.barTintColor = .gray
        UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).backgroundColor = UIColor.mainWhite()
        sb.delegate = self
        return sb
    }()

    lazy var searchCategriesView: UICollectionView = {
        let layout = UICollectionViewFlowLayout()
        layout.headerReferenceSize = CGSize(width: view.frame.width, height: 75)
        layout.itemSize = CGSize(width: view.frame.width, height: 50)
        layout.minimumInteritemSpacing = 1
        layout.minimumLineSpacing = 1
        layout.scrollDirection = .vertical
        let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
        cv.backgroundColor = UIColor.mainWhite()
        cv.translatesAutoresizingMaskIntoConstraints = false
        return cv
    }()

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .white

        categoriesDataSource = SearchCategories()
        searchCategriesView.dataSource = categoriesDataSource

        searchCategriesView.register(SearchCategoriesCell.self, forCellWithReuseIdentifier: categoriesId)
        searchCategriesView.register(SectionHeaderView.self, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: headerId)
    }

    //EXCLUDED VIEW SETUP CODE FOR BREVITY
}

И по указанной выше ссылке я настроил свой источник данных в другом файле, подобном этому:

class SearchCategories: NSObject {
    let categories = ["Apparel & Clothing", "Arts & Crafts", "Automotive",
                      "Baby", "Bars & Lounges", "Beauty", "Books",
                      "Entertainment",
                      "Family & Children", "Furniture",
                      "Grocery",
                      "Health", "Home & Garden", "Home improvement",
                      "Pets", "Pizza",
                      "Restaurants",
                      "Sporting Goods"]

    let headerId = "sectionHeader"
    let categoriesId = "categoriesId"

    override init() {
    }
}


extension SearchCategories: UICollectionViewDataSource {
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return categories.count
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: categoriesId, for: indexPath) as! SearchCategoriesCell
        cell.label.text = categories[indexPath.item]
        return cell
    }

    func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {

        let sectionHeaderView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: headerId, for: indexPath) as! SectionHeaderView

        if indexPath.section == 0 {
            sectionHeaderView.categoryTitleLabel.text = "Search Categories"
        }
        return sectionHeaderView
    }

    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: categoriesId, for: indexPath) as! SearchCategoriesCell
        //NEED TO PASS THIS DATA BACK TO SEARCHVIEWCONTROLLER
    }
}

Как теперь вернуть текст ячейки в SearchViewController всякий раз, когда пользователь нажимает на ячейку collectionView?

1 Ответ

0 голосов
/ 12 ноября 2018

Предположим, вы будете удерживать текст в этой функции внутри SearchViewController

func send(_ res:String){
  print(res)
}

1- Добавить переменную внутрь

class SearchCategories: NSObject {

  weak var delegate:SearchViewController?

2- Установить делегата

categoriesDataSource = SearchCategories()
categoriesDataSource.delegate = self

3- Отправьте щелкнувший текст

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
   let sendedText =  categories[indexPath.item]
   delegate?.send(sendedText)
}

Редактировать: Вам необходимо добавить

searchCategriesView.delegate = categoriesDataSource

в viewDidLoad также вы можете сделать

searchCategriesView.delegate = self

и реализовать didSelectItemAt внутри SearchViewController

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...