次のエラーが表示されます。
class method '+view' not found return type defaults to 'id'
このコードの使用:
[window addSubview:[ButtonsViewController view]];
誰か助けてくれませんか?
完全なコードは次のとおりです。
#import "openURLAppDelegate.h"
#import "ButtonsViewController.h"
#include "ButtonsViewController.h"
@implementation openURLAppDelegate
@synthesize window;
@synthesize ButtonsViewController;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
[window addSubview:[ButtonsViewController view]];
[window makeKeyAndVisible];
}
- (void)dealloc {
[ButtonsViewController release];
[window release];
[super dealloc];
}
@end