ok i get these two errors
error: syntax error before '{' token
and
fatal error: method definition not in @implementation context
here is the code, which was surprising created by the interface builder
error: syntax error before '{' token
and
fatal error: method definition not in @implementation context
here is the code, which was surprising created by the interface builder
Code:
#import <Cocoa/Cocoa.h>
#import <CURLHandle.h>
#import <CURLHandle+extras.h>
@interface NSObject: { //first error is found here
}
-(IBAction)agree:(id)sender; //second error is found here
-(IBAction)upload:(id)sender;
@end