0

我在 Xcode 4.3.2 中工作。

我是 Xcode 的新手。我正在构建一个应用程序,该应用程序必须在单击按钮时更改为不同的视图。我的文件是:AppDelegate.h/.m、GreenViewController.h/.m、SwitchViewController.h/.m、GreenView.xib - 我没有使用故事板,但我的项目要求我不使用它们(向后兼容性问题)。

这是我的问题(看起来很简单):单击 UIButton(放置在 GreenView.xib 中)时,我试图打印到控制台。这是我的 GreenViewController.h 代码

#import <UIKit/UIKit.h>
@interface GreenViewController : UIViewController
- (IBAction)switchViews:(id)sender;
@end

这是 GreenViewController.m 的(已弃用)代码:

#import "GreenViewController.h"
@implementation GreenViewController

- (IBAction) switchViews:(id)sender {
    NSLog(@"Button Pressed!");
}

GreenView.xib 的所有者是 GreenViewController。

出于某种原因,我只有在按下 UIButton(在 GreenView.xib 中)时才会出现错误:

2012-10-09 18:07:38.490 MyViewSwitcher[8655:f803] -[SwitchViewController switchViews:]: unrecognized selector sent to instance 0x688a660
2012-10-09 18:07:38.492 MyViewSwitcher[8655:f803] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[SwitchViewController switchViews:]: unrecognized selector sent to instance 0x688a660'

似乎 SwitchViewController 期望从方法“switchViews”中得到一些东西,但“switchViews”仅在 GreenViewController 中列出。之前,我在 SwitchViewController 中有“switchViews”,但是我删除了所有与方法和所有连接对应的代码。同样,我再次检查了 GreenViewController 中的“switchViews”是否连接到 GreenView.xib 中的 UIButton。我已经清理并重新构建了我的项目,但我仍然收到此错误。

谢谢你的帮助!

4

1 回答 1

1

您的错误是说您正在switchViews:调用SwitchViewController. 而且由于 class 没有定义switchViews:(因为你删除了它)SwitchViewController,它不知道该怎么做,然后崩溃。

不想告诉你这个,但你的按钮连接到switchViews:a 的方法SwitchViewController。你说“我已经仔细检查过 GreenViewController 中的‘switchViews’是否连接到 GreenView.xib 中的 UIButton”。嗯,是的,从你的崩溃来看,它是。但是您确定它与实例的switchViews:功能有关吗?GreenViewController您是如何查看这些信息的?

我建议在连接检查器中删除与 UIButton 的所有连接。然后将其重新连接到视图控制器(您说的是 GreenViewController)。然后它应该会显示 IBActions 列表,这应该只是switchViews:方法。

如果你这样做,它仍然不起作用。尝试删除按钮并重新制作,然后重新连接。

于 2012-10-11T17:28:22.027 回答