I have been trying to learn to write files in Obj-C on OS X (not iPhone), and I have been getting a Warning (Picture Below)
What does this Warning mean, and how can I fix the issue?
Code - AppGromit.m
Code - AppGromit.h
Thank You!

What does this Warning mean, and how can I fix the issue?
Code - AppGromit.m
Code:
#import "AppGromit.h"
@implementation AppGromit
- (IBAction)writeFile:(id)sender {
NSString *fileTest;
fileTest = @"Hello, I am writing a file";
[statLabel setIntValue:0];
if (![fileTest writeToFile:"text.txt" atomically:YES encoding:NSUTF8StringEncoding]) {
[statLabel setValue:@"Written"];
}else{
[statLabel setValue:@"Fail"];
}
}
@end
Code - AppGromit.h
Code:
#import <Cocoa/Cocoa.h>
@interface AppGromit : NSObject {
IBOutlet NSTextField *statLabel;
}
- (IBAction)writeFile:(id)sender;
@end
Thank You!