Name conflict with Realm “Size” object when using Swift and Objective-C
Name conflict with Realm “Size” object when using Swift and Objective-C
I have a project named 'Foo' that is mostly Swift, but there is one objective-c view controller. When I include 'Foo-Swift.h' in ObjectiveCViewController.m I get this error:
"Redefinition of 'Size' as different kind of symbol"
This is because I have a Realm Object called 'Size'. The simple solution here is to rename my Realm Object FooSize or something similar - but is there a slicker way to do this? I'm not familiar with every last Swift feature and I wonder if there is some kind of namespace type thing I could use, or similar feature.
This "@compatibility_alias" business, while interesting, I do not think it is what I need. But it is the kind of thing I am talking about.
– Tom Schulz
Sep 5 '18 at 2:41
0
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
May it can help you, stackoverflow.com/questions/26632576/…
– Quoc Nguyen
Sep 5 '18 at 1:10