0
我正嘗試在新文件中創建一個新的UIViewController
類,並從默認的ViewController
轉換爲UIViewController
。在Objective-C
中,我會創建一個新文件以及相應的xib文件,然後將該文件導入我的主ViewController.m
,並使用視圖的presentViewController
方法轉換到新視圖。創建並轉換視圖而不使用故事板swift
示例:從主ViewController.m
SecondViewController* secondView = [[SecondViewController alloc] initWithNibName:@"SecondViewControllerXib" bundle:nil];
[self presentViewController:secondView animated:YES completion:nil];
secondView = nil;
然後返回到主ViewController.m
使用
[self dismissViewControllerAnimated:YES completion:nil];
我已經四處搜尋,但所有的例子我已經遇到均使用Storyboard
我不喜歡使用。如何在不使用快速使用Storyboard
的情況下實現這一目標?
謝謝,我想我是過度想象和困惑自己。 – RickyTheCoder