Post

Replies

Boosts

Views

Activity

Reply to XCode Cloud failing at export archive
It seems I forgot to include the second error: One particular thing that got my interest is the following: I opened the IDEDistribution.critical.log file, and saw the following issue: Account "Session Proxy Provider": Unable to authenticate with App Store Connect (Error Domain=DVTITunesSoftwareServiceFoundation.DVTServicesSessionProviderCredentialITunesAuthenticationContextError Code=1 "(null)")
Jan ’24
Reply to UICollectionView Inside of UItableViewCell no horizontal scrolling
The accepted answer is not recommended. Remember, with the extension you are overriding the default behavior of the UITableViewCell. And the change you made will affect your whole project. You do not have to send the contentView to Back. Your mistake is in adding subviews directly to the cell. Instead, you should do: self.contentView.addSubview(someView) I had the same issue, and resolved by adding subviews to the cells contentView.
Jul ’21