在Xcode中工作,我试图在我的应用程序中添加第二个Web视图,但不断收到非法的界面限定符消息。
这是我的实施文件:
#import "XYZBonBonoftheDayViewController.h"
@interface XYZBonBonoftheDayViewController ()
@synthesize webView;
@end
@implementation XYZBonBonoftheDayViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
NSURL *url = [NSURL URLWithString:@"http://www.who.int/mediacentre/factsheets/fs103/en/"];
NSURLRequest *requestURL = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestURL];
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
@end
...和我的界面文件:
#import <UIKit/UIKit.h>
@interface XYZBonBonoftheDayViewController : UIViewController
@property (nonatomic, strong) IBOutlet UIWebView *webView;
@end
如果有人可以,我真的很感激一些帮助!
提前干杯!
答案 0 :(得分:2)
我认为你只需要删除
@synthesize webView;
请替换
@interface XYZBonBonoftheDayViewController ()
@synthesize webView;
@end
与
@interface XYZBonBonoftheDayViewController ()
@end
在您的实施文件中。
问候。