Iurii Khvorost
Iurii Khvorost
First, the registering code under `__attribute__((constructor))` is called after all classes are already loaded and before the `main` function starts. Also the code has enough time before React Native finish...
Hi, @andrew-schenk! Do you mean extending `RCTCovert` with `RCT_ENUM_CONVERTER` etc? These macros are not implemented with ReactBridge but I can investigate that in the future. Now you can call `RCTConvert`...
Thanks for the notion! I'll look at RCTConvert and find out if it's possible to extend it in swift with macros and let you know in this thread.
Hi, @andrew-schenk! Unfortunately it's impossible to utilize swift's enums with `@objc` functions for ReactBridge because of the following error: ``` swift @ReactMethod @objc func testEnum(_ item: MyEnum) { // Error:...