If I start an xCode program with a single view template, it will default to a VC and a View already setup as an IBOutlet in that VC so that I can access it using "self.view" in my View Controller.
Now, if I wanted to have a custom UIView (called NewView), I can add a UIView class file (.h/.m) in my project. Now my initial thought would then to go to the root "UIview" in storyboard and change its class to "NewView".
Assuming I have a public property in NewView called "myProperty", I should be able to access it from my VC using self.view.myProperty. That is not the case!
Are we saying that the only way to subclass a UIView is to add a UIView object in SB that is below the root UIView and then create an IBOutlet from the VC to that UIView? So what it then the use of that root UIView if I cannot use it.
Thanks
KMB
