1

我在 Xcode 4.3.2 中工作。

我正在尝试以编程方式加载 Nib,而不是使用 Storyboard。Storyboards 似乎要简单得多,但不幸的是它们与 iOS 4 不兼容,我正在构建一个需要向后兼容的应用程序。

这是我的问题:我正在尝试加载主视图 - 一个带有绿色背景的简单视图。目前没有默认视图。

我的文件是:

AppDelegate.h/.m GreenViewController.h/.m SwitchViewController.h/.m

我想在应用程序开始时加载绿屏,所以在 AppDelegate.m 我有:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.switchViewController = [[SwitchViewController alloc] initWithNibName:@"GreenView" bundle:nil];

    //UIView *switchView = self.switchViewController.view;


    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

在 SwitchViewController.m 我有:

- (void)viewDidLoad
{
    self.greenViewController = [[GreenViewController alloc] initWithNibName:@"GreenView" bundle:nil];
    [self.view insertSubview:self.greenViewController.view atIndex:0];
    [super viewDidLoad];
}

用简单的 initWithNibName 填充默认代码。

在 GreenViewController.m 我有:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

这是一切的主要功能。当我运行该应用程序时,我立即收到错误消息:

2012-10-09 12:34:35.586 MyViewSwitcher[5210:f803] -[AppDelegate setSwitchViewController:]: unrecognized selector sent to instance 0x6c6c310
2012-10-09 12:34:35.587 MyViewSwitcher[5210:f803] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AppDelegate setSwitchViewController:]: unrecognized selector sent to instance 0x6c6c310'

有人可以帮我理解我的错误的原因吗?我确保 GreenView.xib 的“自定义类”是身份检查器中的“GreenViewController”。此外,我确保“视图”的引用出口是文件的所有者。我想在我的应用启动时加载 GreenView 笔尖。最终,我将通过添加一个按钮来切换视图,但到目前为止我什至无法加载主视图。我不确定我在误解什么。

提前感谢您的帮助!

4

3 回答 3

1

问题不在于加载笔尖。问题出在这一行:

self.switchViewController = [[SwitchViewController alloc] initWithNibName:@"GreenView" bundle:nil];

在这里,您使用的是“点语法”,这在The Objective-C Programming Language中进行了说明。当您使用该语法设置属性时,编译器会将其转换为常规的 Objective-C 消息,如下所示:

[self setSwitchViewController:[[SwitchViewController alloc] initWithNibName:@"GreenView" bundle:nil]];

在运行时,系统会告诉您您的AppDelegate对象不理解该setSwitchViewController:方法。您需要使用The Objective-C Programming Language@synthesize中解释的指令来告诉编译器为您实现该方法:setSwitchViewController:

@synthesize switchViewController = _switchViewController;
于 2012-10-09T21:40:04.820 回答
0
 '-[AppDelegate setSwitchViewController:]: unrecognized selector sent to instance 0x6c6c310'

setSwitchViewController:您正在向/在您的 AppDelegate中发送消息(调用方法) 。这就是问题所在。

于 2012-10-09T19:47:32.763 回答
0
  1. 使用前请确保您UIWindowrootViewControllermakeKeyAndVisible

    [self.window setRootViewController:self.switchViewController]; [self.window makeKeyAndVisible];

  2. 确保按照上面的说明合成属性。

  3. 在子类中实现方法时,比如你的SwitchViewController.m,什么时候调用super方法很重要。除非您有任何特殊意图,否则几乎总是调用super实现先于本地self实现。- (void)viewDidLoad所以,我建议你改成SwitchViewController.m如下

    • (void)viewDidLoad { [超级 viewDidLoad];

      self.greenViewController = [[GreenViewController alloc] initWithNibName:@"GreenView" bundle:nil];

      [self.view insertSubview:self.greenViewController.view atIndex:0]; }

于 2012-10-10T01:25:07.473 回答