I'm new to iOS and Xcode. I can't figure out how to design a separated view and make it be added into the main UIViewController using storyboard.
I did different approaches..
- Just grab an UI object from right-bottom corner window in the xcode, and then put it onto any space area of storyboard. But I can't drop the UI object like the way with xib.
- Add a new UIViewController. Add a view into the
UIViewController
. In the main ViewController.m, I get the newUIViewController
instance in the viewDidLoad, and then[self.view addSubview:newUIViewController.view]
. But I can't see the added view. - I created a new xib file. And add a view into it. I also try to get the instance in the main
ViewController
. AndaddSubview
with the xib's view. But it also failed.
Is there a correct way or any working solution to do so?