Sorry I cannot be more descriptive, basically what happened is I went to open Xcode today (I’m a fairly new user) and was unable to test my build as I had these errors which I do not understand. I don’t understand why all of a sudden I’m getting these. I can post full source if that would help anyone debug this.

my ViewController.h
#import <UIKit/UIKit.h>
@interface local405ViewController : UIViewController {
NSTime *timer;
}
@property (weak,nonatomic) IBOutlet UIWebView *webView;
@property (weak,nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
- (IBAction)homeButton:(id)sender;
- (IBAction)payDuesButton:(id)sender;
If that’s your entire ViewController.h file, it looks like you’re missing an
@enddirective to signify the end of the@interfaceblock. (In fact, I hope that the real file is “local405ViewController.h”.)