Posts

Post not yet marked as solved
5 Replies
I solved it: Use this function func controller(_ controller: NSFetchedResultsController<NSFetchRequestResult>, didChangeContentWith snapshot: NSDiffableDataSourceSnapshot<String,NSManagedObjectID>) instead of func controller(_ controller: NSFetchedResultsController<NSFetchRequestResult>, didChangeContentWith snapshot: NSDiffableDataSourceSnapshotReference)
Post marked as solved
1 Replies
I found the way to solve it. Just implement empty UICollectionViewDragDelegate & UICollectionViewDropDelegate methods. extension ReorderableCollectionViewController: UICollectionViewDragDelegate {     func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {         return []     } } extension ReorderableCollectionViewController: UICollectionViewDropDelegate {     func collectionView(_ collectionView: UICollectionView, performDropWith coordinator: UICollectionViewDropCoordinator) {     } }
Post not yet marked as solved
2 Replies
I have same issue. Also, onMove not working on macOS Big Sur Beta 6.
Post not yet marked as solved
5 Replies
Same issue on Xcode 12 Beta 5 and Big Sur Beta 5.
Post not yet marked as solved
5 Replies
Same issue here.Does Catalyst not support DiffableDataSource?
Post not yet marked as solved
7 Replies
Scroll down Beta Software Downloads page https://developer.apple.com/download/ You can see iOS 13 beta 8 section below tvOS beta 8 section.
Post marked as solved
56 Replies
I don't use Firebase Cloud Notification.This problem occurs even if I run a brand new project.
Post marked as solved
2 Replies
Thank you!The remaining problem is the misterious BackgroundTask error message.I'll start new discussion about this with new title.