leandro
09/29/2021, 12:35 PM__attribute__((swift_name("Decoder")))
@protocol CommonDecoder
(BOOL)decodeBoolean __attribute__((swift_name("decodeBoolean()")));
- (int8_t)decodeByte __attribute__((swift_name("decodeByte()")));
- (unichar)decodeChar __attribute__((swift_name("decodeChar()")));
- (double)decodeDouble __attribute__((swift_name("decodeDouble()")));
...
@end;
this causes import issues with Swift.Decoder and Swift.Encoder. How can I change the swift_name of this class that I dont own?saket
09/29/2021, 12:52 PMleandro
09/29/2021, 4:58 PM