I'm trying to create the following class:
@objc(GameFacade)
class GameFaçade: NSObject {
...
}
However when I try to compile I get the following error:
Parameter of 'swift_name' attribute must be an ASCII identifier string
This error is on my -Swift.h
header, the generated code is
SWIFT_CLASS_NAMED("GameFaçade")
@interface GameFacade : NSObject
...
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
It seems to be the bug reported in rdar://22737851.
Is there any way around this using non-ASCII characters?