Having just upgraded to Xcode 12/iOS 14, the Intents framework is trying to compile code like this in various headers:
@interface INObjectSection<ObjectType> : NSObject <NSCopying, NSSecureCoding>
But the compiler seems to have no idea that ObjectType
is the generic placeholder:
No type or protocol named 'ObjectType'
Nobody else is complaining about this, so I'm guessing I have some setting in this very old project that is preventing Objective-C generics from compiling, but I can't find anything.