Experiencing this exact same issue, which makes it impossible to develop on Xcode 14.
Tried everything: rebooting the device, deleting derived data, caches, even all personal settings, but no lucky at all.
Also tried Xcode 14.1 Beta and Xcode 14.0.1 RC.
Interesting enough, I have a smaller project which DOES NOT uses Cocoapods and this issue is not present when working on that project.
Post
Replies
Boosts
Views
Activity
Having a similar issue. The annotation and horizontal scrolling don't work together. Enabling scrolling results in the annotation not showing up anymore.
This is the only solution that worked for me: observing .NSManagedObjectContextDidSave instead.
notifCenter.publisher(for: .NSManagedObjectContextDidSave)
.sink { [weak self] _ in
self?.update()
}
.store(in: &cancellables)