Im using Xcode 16.1 b3 (16B5029d) and I still have this issue. I enabled legacy previews and that did not work either.
Post
Replies
Boosts
Views
Activity
Im seeing this too.
Usually takes a day or two when the RC Drops
Xcode 14 Beta 4 **did not ** fix it for me, I am still seeing this issue
@edford It seems like this is happening again with Xcode 13.2 Beta 2, but not with Beta 1, or Xcode 13.2
The two SPM projects are targeting iOS 11 and up.
@mickeysox
Did you ever figure this out?
Apple has said in videos that you can only use SwiftUI to create Widgets for WidgetKit
Just an update here still not working, tho I have verified my guards work correctly, and adding a log statement on 10 of this post does not get called
apple-app-site-association are fetched upon install of the app, and then sometime roughly once over the next few days continuously.
You can grab the device logs via sysdiagnose and fine the file named swcutil_show.txt
The developers of the App you'd wish to become a beta tester for have to send you an invite link. Then you can redeem it.
No, apps installed via TestFlight do not auto-update, and will not automatically convert to your App Store version
The user must explicitly download from the App Store.
Makes sense, thanks!
Still broken in Xcode 12 Beta 2 :(
Okay, I resolved this by invalidating the collectionViewLayout when preforming a search. and checking if we were searching when applying the decoration items.
func configureBackgroundViews(for section: NSCollectionLayoutSection, at sectionIndex: Int) {
if sectionIndex == 0 && isSearching == false {
let sectionBackgroundDecoration = NSCollectionLayoutDecorationItem.background(
elementKind: FollowingCollectionViewController.sectionBackgroundDecorationFollowing)
section.decorationItems = [sectionBackgroundDecoration]
} else {
let sectionBackgroundDecoration = NSCollectionLayoutDecorationItem.background(
elementKind: FollowingCollectionViewController.sectionBackgroundDecorationBrowse)
section.decorationItems = [sectionBackgroundDecoration]
}
}