didSet не работает с переменной
Я пытаюсь передать данные из моего cellClass в viewController. Я могу легко передать текст метки из cellClass в vc, но не могу установить переменную в vc.
Это мой модельный класс:
class Item: NSObject {
var itemId: String?
var itemLabel: String?
}
Вот мой didSelectItem
Код CellClass:
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
if let item = item?[indexPath.item] {
let vc = VC()
vc.presentVC(launcher: vc)
vc.item = item
if let id = item.itemId {
vc.itemId = id
}
}
}
Вот, presentVC
это расширение, которое я создал, чтобы представить VC. И это то, что я написал в моем ViewController:
class VC: UIViewController {
var itemId = String()
let itemLabel: UILabel = {
let label = UILabel()
label.text = "TEST TEST TEST"
return label
}()
var item: Item? {
didSet {
itemLabel.text = item?.itemLabel
if let id = item?.itemId {
itemId = id
}
}
}
}
Таким образом, я могу получить itemLabel из cellClass, но идентификатор теперь устанавливается и показывает nil
, Как я могу это исправить?
1 ответ
Решение
Так что я как-то исправил это! Дело в том, что каждый раз, когда я выбираю didSelectItem
didSet
метод называется. Поэтому я сначала создал метод, подобный этому:
func setupId(item: Item) {
var itemId = String()
if let id = item.itemId {
itemId = id
}
print(itemId)
}
И в didSet
Я просто добавил эту функцию так:
var item: Item? {
didSet {
itemLabel.text = item?.itemLabel
if let item = item {
setupId(item: item)
}
}
}
И это в значительной степени исправить!