I have created a class named Bundle
, which I'd really like to remain named that way, as it perfectly describes what it's for in my project.
Now, I'm using Swift's Bundle
in some code and now those names are conflicting. I had this issue before when I created the class Set
. I was able to solve that by putting Swift.Set
when I wanted to use the standard Set
class, as I found in this answer on exactly this matter.
I also tried to apply that solution my Bundle
problem, but Xcode complains:
Module 'Swift' has no member named 'Bundle'
Any idea why it does work for Set
, but not Bundle
?
Thanks!