This is happening to me as well.
Post
Replies
Boosts
Views
Activity
Happening to me as well 😟
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]
}
}
Still broken in Xcode 12 Beta 2 :(
Makes sense, thanks!
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.
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.
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
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 has said in videos that you can only use SwiftUI to create Widgets for WidgetKit
@mickeysox
Did you ever figure this out?
@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.
Xcode 14 Beta 4 **did not ** fix it for me, I am still seeing this issue
Usually takes a day or two when the RC Drops
Im seeing this too.