In a simple "Single View" test project using XCode 4.3.3:
I subclassed UIView and specified it in the storyboard's Property Inspector as the class to be used as the viewController's default view.
In my custom UIView class,
TestUIView, I define a property called "drawSwitch."I import the header of my custom class in my viewController class.
When trying to compile the project, I was surprised that the compiler does not recognize my subclass with the line of code below, giving the error: Property 'drawSwitch' not found on object of type 'UIView'. This seems odd since my custom class TestUIView is indicated as the class for the viewController view outlet (shown in image below).
[self.view setDrawSwitch:2];
Yet if I cast it, the code compiles and runs fine:
[(TestUIView*) self.view setDrawSwitch:2];
When I view the properties of my viewController, my custom class is indicated as the Outlet for the view property.
So I am confused at what is going on with the storyboard here.
Is storyboard/XCode letting me do something which the compiler isn't happy with, simply a GUI loophole?
I know I can create an IBOutlet for my custom view (per below: "testView") but it seems redundant to create an additional outlet when the
viewoutlet is already defined.
Am I missing something here? (beyond "that's the way it works", which may just be the case).
