I need to change a NSTableview from NSDatasource delegate to bindings, but I'm having some troubles and no data is loaded to the table, maybe anybody can advice because I don´t know what I'm doing wrong.
MainMenu.xib -> NSArrayController setup:
- Bind to App Controller -> Model Key Path = self.convertedData
- Object Controller -> Mode = Class -> Class Name = PFH_PartenonFileLine
MainMenu.xib -> NSTableView setup:
- Table Content Binds to Array Controller -> Controller Key = arrangedObjects
MainMenu.xib -> 1st Tableview column setup:
- Value Binds to Array Controller -> Controller Key = arrangedObjects -> Model Key Path = empresa
The table column has it's identity->identifier = empresa, I remove the value butit didn't work.
Code for PFHAppController.h:
// <NSTableViewDataSource>
@interface PFHAppController : NSObject {
NSMutableArray *fileData;
NSMutableArray *convertedData;
IBOutlet NSTableView *tableView;
}
@property (weak) IBOutlet NSTextField *path;
@property (readwrite, copy) NSMutableArray *convertedData;
-(IBAction)execute:(id)sender;
- (IBAction)downloadFile:(id)sender;
@end
Code for PFHAppController.m:
@synthesize path = _path;
@synthesize convertedData = _convertedData;
-(id) init {
self = [super init];
if (self = [super init]) {
fileData = [[NSMutableArray alloc] init];
_convertedData = [[NSMutableArray alloc] init];
}
return self;
}
-(void)execute:(id)sender{
[self clearData];
kTestPath = @"/Users/rubs/Desktop/DESCUADR.txt";
NSString *stringPath = [self.path stringValue];
PFH_Reader * reader = [[PFH_Reader alloc] initWithFilePath:kTestPath];
[reader enumerateLinesUsingBlock:^(NSString * line, BOOL * stop) {
//NSLog(@"read line: %@", line);
// Alimentar el array que servira para parsear la info del fichero
[fileData addObject:line];
} andLinesToSkip:4];
if ([fileData count] > 0) {
//Parsear el fichero
for (NSString *linea in fileData) {
PFH_PartenonFileLine *PALine = [[PFH_PartenonFileLine alloc] init];
PALine.empresa = [linea substringWithRange:EMPRESA];
PALine.centro = [linea substringWithRange:CENTRO];
PALine.producto = [linea substringWithRange:PRODUCTO];
PALine.subtipo = [linea substringWithRange:SUBTIPO];
PALine.posicion = [linea substringWithRange:POSICION];
PALine.moneda = [linea substringWithRange:MONEDA];
PALine.saldo_sap = [linea substringWithRange:SALDO_SAP];
PALine.saldo_host = [linea substringWithRange:SALDO_HOST];
PALine.diferencia = [linea substringWithRange:DIFERENCIA];
//Añadimos al array de datos convertidos
[self.convertedData addObject:PALine];
// self.converted data has the required data at this point.
}
// Notificamos a la tabla para que carge los datos
//[tableView sizeToFit];
//[tableView reloadData];
}
}
Thanks in advance!.