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
Reply to The behavior of onDrag and onDrop in iOS 18 is different from previous versions.
It is not the only problem. onDrag is re-called even after onDrop is successfully performed. Issue is only on iOS 18
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’24
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)")
Replies
Boosts
Views
Activity
Jan ’24
Reply to Xcode Cloud - Problem with the request entity...No signing certificate "iOS Development" found
I got the the same issue here. All was fine like 5 days ago. Don't know what to do next... By any chance, were you able to fix it?
Replies
Boosts
Views
Activity
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.
Replies
Boosts
Views
Activity
Jul ’21