I have a very large class that I am trying to create a category from. In the original class' .m file, I have 2 objects (defined in the category .h file) that I'm getting "unidentified identifier" build errors.
This is the object definition of one of them in the UploadViewController+CreateExportFiles.h class:
@property (strong, nonatomic) NSArray *booksArray;
The .h file of the original class (UploadViewController.h) looks like this:
#import "UploadViewController.h"
#import "UploadViewController+CreateExportFiles.h"
and the usage of booksArray
in the class where I'm getting the error is:
if( [[[booksArray objectAtIndex:i] tranCode] isEqualToString:@"A"])
Is there something else I have to do to resolve the error?