I'm quite familiar with the workings of Xcode, except for Build Targets.
I need to add a special Build Target for handling notifications, containing a class used to process the notifications (call this Class B
). Inside of this target, I access a method from a class located in the main build target (call this Class A
)
The issue is that I cannot add the Class A
's method to be a part of Class B
's, since doing so causes tons of Cannot find Type in Scope
errors from ever classes referenced inside of Class A
that has not been added to the build target .
How can I avoid these errors?