请任何人告诉我如何解决不完整的实施警告:
语义问题-不完整的实现)@interface SecondController () @end
@实现第二控制器
编辑:
#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