在隐式展开可选值时意外发现 nil (UICollectionView)
Posted
技术标签:
【中文标题】在隐式展开可选值时意外发现 nil (UICollectionView)【英文标题】:Unexpectedly found nil while implicitly unwrapping an Optional value (UICollectionView) 【发布时间】:2021-05-12 12:18:04 【问题描述】:我想制作一个在获取新项目后重新加载其数据的集合视图。但是当我尝试重新加载集合视图时,我得到了这个错误
这是视图控制器的代码
import UIKit
class GalleryViewController: UIViewController
var presenter : ViewToPresenterPhotoProtocol?
@IBOutlet var collectionView: UICollectionView!
let reuseIdentifier = "cell"
override func viewDidLoad()
super.viewDidLoad()
presenter?.viewDidLoad()
// Do any additional setup after loading the view.
extension GalleryViewController: UICollectionViewDelegate, UICollectionViewDataSource
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
return self.presenter?.photos?.count ?? 0
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as! PhotoCollectionViewCell
cell.label.text = self.presenter?.photos?[indexPath.item].name
cell.backgroundColor = UIColor.yellow
return cell
// MARK: - UICollectionViewDelegate protocol
private func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath)
// handle tap events
print("You selected cell #\(indexPath.item)!")
extension GalleryViewController: PresenterToViewPhotoProtocol
func onFetchPhotoSuccess()
self.collectionView.reloadData()
func onFetchPhotoFailure(error: String)
print("View receives the response from Presenter with error: \(error)")
我不知道如何在故事板的集合视图中正确重新加载数据,所以如果您能帮我解决这个问题,我将非常感激
【问题讨论】:
你没有在任何地方注册PhotoCollectionViewCell
单元
【参考方案1】:
也许你的 GalleryViewController
是在没有 xib/storyboard 的情况下初始化的。
如果您使用情节提要,试试这个:
let storyboard = UIStoryboard(name: 'yourStoryboardName', bundle: .main)
let controller = storyboard.instantiateViewController(identifier: "yourControllerIdentifier") as! GalleryViewController
如果你使用的是 xib,试试这个:
let controller = UIViewController(nibName: "yourControllerNibName", bundle: .main) as! GalleryViewController
【讨论】:
【参考方案2】:Set identifier in Attributes Inspector
注册您的自定义单元格。
@IBOutlet private var collectionView: UICollectionView!
didSet
collectionView.register(PhotoCollectionViewCell.self,
forCellWithReuseIdentifier: reuseIdentifier)
【讨论】:
【参考方案3】:您强制转换了一个 nil 值。我相信你需要使用as
或as?
。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as? PhotoCollectionViewCell
...
【讨论】:
didSelectItemAtIndexPath
中没有强制展开,!
是字符串的一部分。 IndexPath.item
也不是可选值,因此如果您尝试解开它会出错developer.apple.com/documentation/foundation/indexpath/…
调用 collectionView.reloadData() 时出现此错误以上是关于在隐式展开可选值时意外发现 nil (UICollectionView)的主要内容,如果未能解决你的问题,请参考以下文章
UITableViewCell 中的 AVPlayer 导致“在隐式展开可选值时意外发现 nil”错误
Swift Xcode 致命错误:在隐式展开可选值时意外发现 nil [重复]
想要将 Slidervalue 设置为 UserDefault:线程 1:致命错误:在隐式展开可选值时意外发现 nil [重复]
不确定如何为现有代码正确设置我的变量。致命错误:在隐式展开可选值时意外发现 nil