Since installing Xcode 12, I'm now getting a bunch of warnings of the type:
'Double-quoted include in framework header, expected angle-bracketed instead'
If I go to the various source files and say change:
Code Block #import "Place.h"
to
Code Block #import <VegasKit/Place.h>
then I get an error saying it can't find the file. If I try this:
Code Block #import <Place.h>
then I get an error telling me to go back to double-quotes, i.e. undo the change.
Any idea what I can do to get this all setup correctly? Thanks.