I think it is normal to take longer around that part of the year, even Apple is sometimes informing people about the delays.
Post
Replies
Boosts
Views
Activity
Did. you solve this?
I solved this by changing preferredTimescale. It helped me.
I believe you have a function called print() in some of your classes/structs and inside it you have some kind of print("Something...").
Xcode complains because it doesn't know which print function to call, the one you declared yourself or the native function for printing content.
If this is the case, then you can:
Rename your own print() function
or
Change print statement from print("Something") into Swift.print("Something")
This issue is active again on latest Xcode version 14.3. This version also came with a lot of another issues, this is not the only one.
What a frustrating IDE.