このエラーが発生し続けますが、どこから来たのかわかりません。
linker command failed with exit code 1 (use -v to see invocation)
これを修正するにはどうすればよいですか?
WebView.m のコードは次のとおりです。
#import "WebViewController1.h"
@interface ViewController ()
@property (strong, nonatomic) IBOutlet UIWebView *webView;
@property (weak, nonatomic) IBOutlet UIWebView *webView2;
@end
@implementation ViewController
WebViewController.h のコードは次のとおりです。
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end