Posts

Post not yet marked as solved
1 Replies
Apple developer any update here !
Post not yet marked as solved
3 Replies
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.
Post not yet marked as solved
1 Replies
Apple team, any update here?
Post not yet marked as solved
6 Replies
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) }
Post not yet marked as solved
6 Replies
Thanks for the quick reply here.  static let identifier = "TableItemCollectionViewCell" I have used "TableItemCollectionViewCell" identifier.
Post not yet marked as solved
3 Replies
Hi TestFlight Team, I am also facing same issue. TestFlight keeps sending the outdated app description in the invitation mail. Could you please provide the solution here asap.