iOS: 加载没有 nib 文件的第二个视图控制器

iOS: Loading second view controller without nib file

我有一个项目,它由标准 AppDelegateViewController 文件组成,但不使用 nib 文件。

代码如下:

代表header

// AppDelegate.h
#import <UIKit/UIKit.h>
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *vc1;
@end

委托实施

// AppDelegate.m
#import "AppDelegate.h"
#import "ViewController.h"

@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.vc1 = [[ViewController alloc] init];
    self.window.rootViewController = self.vc1;
    [self.window makeKeyAndVisible];
    return YES;
}
@end

视图控制器header

//  ViewController.h
#import <UIKit/UIKit.h>

@interface view1 : UIViewController{
    UIButton *button;
}
@end

查看控制器实现

//  ViewController.m
#import "ViewController.h"

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    CGRect buttonFrame = CGRectMake(30, 30, 100, 30);
    button = [[UIButton alloc] initWithFrame: buttonFrame];
    [button setTitle: @"Switch View" forState: UIControlStateNormal];
    [self.view addSubview: button];

    [button addTarget: self action: @selector(buttonClicked:) forControlEvents: UIControlEventTouchDown];
}

- (void) buttonClicked: (id)sender {
    SecondViewController *vc2 = [[SecondViewController alloc] init];
        //both methods throw the same error - no known class method for selector
    //[self presentViewController:vc2 animated:YES completion:nil];         
    [self presentModalViewController:vc2 animated:YES completion:nil];
}

@end

当尝试加载另一个 nib-less view controller (在上面的 buttonClicked 方法中),它不断抛出错误

No known class method for selector 'presentViewController'

我做错了什么?

正确的方法如下:

[self presentViewController:vc2 animated: YES completion:nil];