viewcontroller is a design pattern which is a hybrid of the view and controller components of the MVC architecture
I am trying to dismiss a ViewController in swift by calling dismissViewController in an IBAction @IBAction func cancel(sender: AnyObject) { …
ios swift viewcontrollerI'd like to navigate from one view controller to another. How can I convert the following Objective-C code into Swift? …
ios swift viewcontroller uinavigationcontrollerIn iOS 13 there is a new behaviour for modal view controller when being presented. Now it's not fullscreen by default …
ios viewcontroller modalviewcontroller ios13I'm using following code to programmatically navigate to another ViewController. It works fine, but it some how hides the navigation …
ios swift uinavigationbar viewcontrollerI programatically have multiple View Controllers in an iOS Swift Project. I do not have the storyboards and would like …
swift ios8 viewcontroller presentviewcontrollerI need to refresh a view controller when a certain button is tapped. Simply activating viewDidLoad() does not seem to …
ios swift refresh viewcontrollerI need write some code to switch the view to another tab when the iOS app starts (so, for example, …
ios xcode swift uitabbarcontroller viewcontrollerI am developing a tabbed application. When I create a new view controller and link it to the tab bar …
ios swift viewcontrollerI have system "NavigationViewController -> MyViewController", and I programmatically want to present MyViewController inside a third view controller. The …
ios swift uinavigationcontroller uinavigationbar viewcontrollerI created first my TestViewController.h and *.m. Afterwards my TestView.xib. Now I need to tell my xib: "Yes, …
objective-c xcode viewcontroller