I noticed that each viewcontroller has a class of EmbeddedViewController. How would I add iboutlets or actions from a viewcontroller like the top one? Im fairly new to swift.
figured this out. Just have to use a subclass of EmbeddedViewController. Like:
class TopViewController: EmbeddedViewController {
then put that as the class of the viewcontroller in storyboard.
I noticed that each viewcontroller has a class of EmbeddedViewController. How would I add iboutlets or actions from a viewcontroller like the top one? Im fairly new to swift.