我正在尝试构建这个应用程序,每次我尝试构建它时,它总是给我一个解析错误。
#import "XYZFlipsideViewController.h"
@end <===This is the error. It says: '@end' must appear in an Objective-C context
@interface XYZMainViewController : UIViewController <XYZFlipsideViewControllerDelegate,
UIPopoverControllerDelegate>
@property (strong, nonatomic) IBOutlet UIWebView *viewWeb;
@property (strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (strong, nonatomic) UIPopoverController *flipsidePopoverController;
@end
我试图删除第一个
@end
但它总是给我更多的错误。