I am new to Xcode 5 and I want to create a document based application that loads my file (a basic text file with the extension .rt) into an NSTextView and allows me to save the contents of the NSTextView to the file
Is this the right way to set it up?:
Will I need to use the functions
-(NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError;
-(BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError **)outError;
3.Are there any basic tutorials that show how to do this in Xcode 5? Most of the tutorials that I have found show how to do this in 10.4<