I'm new to swift iOS. In my storyboard, I created some dynamic fields from viewController. Created a button from the library of objects.
Now I have to open a new blank screen after clicking this button. Input fields appear on a new screen. I will create them through programming or an object library.
But I can not open a blank screen.
@IBAction func SaveTgw(sender: AnyObject) {
print("test=====")
}
I need to enable the screen open code in SaveTgw. Any help or any descriptive link to the tutorial would be appreciated ....
source
share