gpt4 book ai didi

iphone - NSInvalidArgumentException

转载 作者:行者123 更新时间:2023-12-03 19:38:20 25 4
gpt4 key购买 nike

我在这里撕扯我的头发。已阅读许多描述如何解决此问题的示例,但没有一个可以帮助我解决该问题。

在 UIView 上有一个链接到 IBAction 的简单按钮。

代码是这样的...

联系方式.h

#import <UIKit/UIKit.h>

@interface Contact : UIViewController {
}

-(IBAction)buttonPressed:(id)sender;

@end

联系方式.m

#import "Contact.h"

@implementation Contact

- (IBAction)buttonPressed:(id)sender
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Button Pressed" message:@"You pressed the button" delegate:nil cancelButtonTitle:@"Yep, I did." otherButtonTitles:nil];
[alert show];
[alert release];
}

不断收到此错误消息:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[UIViewController buttonPressed:]: unrecognized selector sent to instance 0xd1d5f0'

Touch Up Inside 使用buttonPressed 链接到文件的所有者。

已经下载了其他示例代码,它们工作正常。我的项目和 Nib 的设置与其他示例代码相同。

不知道从哪里开始尝试调试它。

有人帮忙吗?

最佳答案

我也遇到了同样的问题。这是因为您的 ViewController 位于 TabBarController 下,并且在其下的 View Controller 中,您将 NIB Name 设置为 Contact,但没有在身份 Pane 中将 Class 设置为 Contact。

关于iphone - NSInvalidArgumentException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1358579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com