this is my header file
now in my .m file i use fileName in my two methods
but i get this error
Code:
#import <Cocoa/Cocoa.h>
#import <Foundation/NSTask.h>
@interface upload: NSObject{
IBOutlet id afteruploadlabel;
IBOutlet id iagreebutton;
IBOutlet id ipaddresstextbox;
IBOutlet id progressbar;
IBOutlet id showimagelabel;
IBOutlet id uploadbutton;
NSString *fileName;
}
- (IBAction)agree:(id)sender;
- (IBAction)upload:(id)sender;
@end
now in my .m file i use fileName in my two methods
but i get this error
what should i do?error: 'fileName' undeclared (first use in this function)