Post

Replies

Boosts

Views

Activity

Reply to SIGABRT: could not dequeue a view of kind: UICollectionElementKindCell with identifier KPICollectionViewCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard
My app is working before iOS 15.2 version and now crashlytics capture the few crashes which is related to this thread. Please check the code which I have written:- static var nib: UINib { return UINib(nibName: String(describing: self), bundle: Bundle(for: Self.self).resource) } static let identifier = "TableItemCollectionViewCell" // cell register  override func awakeFromNib() {     super.awakeFromNib()     collectionView.register(TableItemCollectionViewCell.nib,                 forCellWithReuseIdentifier: TableItemCollectionViewCell.identifier) }  func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {   guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: TableItemCollectionViewCell.identifier,                               for: indexPath) as? TableItemCollectionViewCell,        let cellVM = viewModel.cellViewModel(for: indexPath,                            isHorizontalScrollingEnabled: isHorizontalScrollingEnabled, collectionViewWidth: collectionView.frame.size.width) as TableItemCellViewModel? else { return collectionView.emptyCell(at: indexPath) } // do code here  cell.configure(with: cellVM) }
Topic: App & System Services SubTopic: Core OS Tags:
May ’22
Reply to Is it possible to submit an app to App store with a dynamic framework that has the framework version 1.0 and version 1.1
@ App Store connect team any update here
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to iOS app backward compatability w
Apple developer any update here !
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’24
Reply to xcode cloud ci_scripts failing with unexpected EOF while looking for matching `''
I am also facing below error The ci_post_xcodebuild.sh is executable but exited with 1 exit code. Make sure a valid shebang line is specified if the file is a script and that the interpreter specified in the shebang line is supported on Xcode Cloud.
Replies
Boosts
Views
Activity
Dec ’23
Reply to iOS - Can I change app icons while resign the IPA
Apple team, any update here?
Replies
Boosts
Views
Activity
May ’22
Reply to SIGABRT: could not dequeue a view of kind: UICollectionElementKindCell with identifier KPICollectionViewCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard
Hi Team, Can someone help here to identify the root cause?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’22
Reply to SIGABRT: could not dequeue a view of kind: UICollectionElementKindCell with identifier KPICollectionViewCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard
My app is working before iOS 15.2 version and now crashlytics capture the few crashes which is related to this thread. Please check the code which I have written:- static var nib: UINib { return UINib(nibName: String(describing: self), bundle: Bundle(for: Self.self).resource) } static let identifier = "TableItemCollectionViewCell" // cell register  override func awakeFromNib() {     super.awakeFromNib()     collectionView.register(TableItemCollectionViewCell.nib,                 forCellWithReuseIdentifier: TableItemCollectionViewCell.identifier) }  func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {   guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: TableItemCollectionViewCell.identifier,                               for: indexPath) as? TableItemCollectionViewCell,        let cellVM = viewModel.cellViewModel(for: indexPath,                            isHorizontalScrollingEnabled: isHorizontalScrollingEnabled, collectionViewWidth: collectionView.frame.size.width) as TableItemCellViewModel? else { return collectionView.emptyCell(at: indexPath) } // do code here  cell.configure(with: cellVM) }
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’22
Reply to SIGABRT: could not dequeue a view of kind: UICollectionElementKindCell with identifier KPICollectionViewCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard
Thanks for the quick reply here.  static let identifier = "TableItemCollectionViewCell" I have used "TableItemCollectionViewCell" identifier.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’22