gpt4 book ai didi

objective-c - ";" token 之前应该是 "{"吗?

转载 作者:行者123 更新时间:2023-12-03 16:22:59 25 4
gpt4 key购买 nike

我在 Apple 网站上尝试使用 WebKit 教程时仍然遇到问题: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/DisplayWebContent/Tasks/MultipleWindows.html

.h文件如下:

#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>

@interface MyDocument : NSDocument
{
IBOutlet id webView;
IBOutlet id textField;
}

- (IBAction)connectURL:(id)sender //Provides me with the error 'Expected ";" before "{" token'
{
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[sender stringValue]]]];
}

@end

您能看出其中有什么问题以及为什么它会给我带来问题吗?

--谢谢!

最佳答案

是的!你的头文件中已经有了你的实现。将其移至您的 .m 文件:

- (IBAction)connectURL:(id)sender {
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[sender stringValue]]]];
}

并将其替换为方法声明:

- (IBAction)connectURL:(id)sender;

关于objective-c - ";" token 之前应该是 "{"吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4384097/

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