I keep getting this error but I have no idea where it's coming from.
linker command failed with exit code 1 (use -v to see invocation)
How do I fix this?
Here's the code from WebView.m
#import "WebViewController1.h"
@interface ViewController ()
@property (strong, nonatomic) IBOutlet UIWebView *webView;
@property (weak, nonatomic) IBOutlet UIWebView *webView2;
@end
@implementation ViewController
Here's the code from WebViewController.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end