Jaiden Siu
05/07/2025, 12:41 AMenum class BananaAge {
NEW_BANANA,
OLD_BANANA
}
Which generates the following in the header file.
@property (class, readonly) LibraryNameBananaAge *theNewContact __attribute__((swift_name("theNewBanana")));
@property (class, readonly) LibraryNameBananaAge *oldBanana __attribute__((swift_name("oldBanana")));
I get the same result in the header file when using the ObjCName annotation. Anyone have any ideas why or what is happening under the hood?Landry Norris
05/07/2025, 6:31 PMJaiden Siu
05/07/2025, 9:07 PM