【发布时间】:2011-11-28 18:13:17
【问题描述】:
我有以下错误:在界面中找不到“窗口”的声明。 虽然当我看的时候有一个......我可能错过了一些愚蠢的东西,但找不到它。
PlanetoidsAppDelegate.h
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface WebViewExampleAppDelegate : NSObject {
NSWindow *window;
IBOutlet WebView *webView;
}
@property (assign) IBOutlet NSWindow* window;
@property (nonatomic, retain) IBOutlet WebView* webView;
@end
PlanetoidsAppDelegate.m
#import "PlanetoidsAppDelegate.h"
@implementation PlanetoidsAppDelegate
@synthesize window; //<-- error here
@synthesize webView; //<-- error here (well, the same one for webView that is...)
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
}
- (void)awakeFromNib {
NSString *resourcesPath = [[NSBundle mainBundle] resourcePath];
NSString *htmlPath = [resourcesPath stringByAppendingString:@"/Planetoids/Planetoids_Game.html"];
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:htmlPath]]]; //<-- error: webView undeclared, what makes sense considdering the other errors :P
}
@end
这里的任何人都可以看到错误吗?
【问题讨论】: