I\'ve been working with Xcode for about 5 months now and I just recently ran across a problem when I add a new class. If I add a new class, say for example \"CustomCell\" and I
I had the same issue with Xcode not seeing any new class I created for a Watch OS2 app I am working on.
Eventually I figured out that it saw the new classes I created in the "extension" directory, but that every class I created in the "app" directory of my project would not show.
What worked for me was creating a new .swift file in the extension, then moving both the reference in the project and the actual file manually to the proper location. After that, I was able to instantiate these classes in my view controller.
Hope that helps any other struggling watch app makers.