WWDC23 SALE: Save 50% on all my Swift books and bundles! >>

@IBDesignable CollectionView leads to Xcode crash

Forums > iOS

Hi!

I have an @IBDesignable UICollectionView

@IBDesignable
class CollectionView: UICollectionView {

    private let cellId = "CollectionViewCell"

    override func awakeFromNib() {
        super.awakeFromNib()
        setup()
    }

    override func prepareForInterfaceBuilder() {
        super.prepareForInterfaceBuilder()
        setup()
    }

    private func setup() {
        let bundle = Bundle(for: type(of: self))
        let nib = UINib(nibName: cellId, bundle: bundle)
        register(nib, forCellWithReuseIdentifier: cellId)

        dataSource = self
        delegate = self
    }
}

extension CollectionView: UICollectionViewDataSource {

    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return 1
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 2
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        return dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath)
    }
}

I've noticed that when the Collection View number of items in the attribute inspector is less than func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) returns, it leads to Xcode crash on storyboard rendering.

Xcode

For example, this

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 3
    }

would lead to the crash. The application in the same time works fine in a simulator.

I think this is somehow related to dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath). Is there a way to cope the problem?

   

Update: removing the line

        delegate = self

helps to prevent the Xcode crash and prints Crashed status inside the attribute inspector. Crashed

   

Save 50% in my WWDC23 sale.

SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.