You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
Looks like if CollectionViewContentNode will be initialized with public init(withCustomViews customViews: [UIView], andNumberOfRows rows:CGFloat, bubbleConfiguration: BubbleConfigurationProtocol? = nil) method, collectionNodesDataSource is nil and in open func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets we use force unwrapping for this variable, and that's why we have the crash.
Below is the snippet of my code:
let customView = ConvView.init().instanceFromNib() as! ConversationalUITableViewCell
let uiN: UINib = UINib(nibName: self.cellReuseIdentifier, bundle: nil)
customView.tableView?.register(uiN, forCellReuseIdentifier: self.cellReuseIdentifier)
The text was updated successfully, but these errors were encountered: