不完全な実装の警告を解決する方法を教えてください:
セマンティックの問題 - 不完全な実装) @interface SecondController () @end
@implementation SecondController
編集:
#import "SecondController.h"
@interface SecondController ()
@end
@implementation SecondController
@synthesize webv;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
-(void)setWebv:(WebView *)webview {
[[webview mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.yahoo.com"]]];
[self alertfunction];
}
@end