How does one access, in code, a view they dragged from the Object Browser into another view in their storyboard?
For example, I created a UIView which I assigned to a ViewController class. Then I dragged a Map View into that view. Now I need to start manipulating that Map View in code. How do I access it? I've tried things like self.view.subview but haven't gotten anywhere from there.
Thanks.