objective-cwatchkitwkinterfacetable

Null value in Context in WKInterfaceTable didSelectRowAtIndex


I setup a watchkit table which works fine. But when I try to use the WKInterfaceTable didSelectRowAtIndex method with a value that should exist for the context, the context gives a null value. A test context value I created works fine and the method works and pushes the correctly populated DetailInterfaceController. See the code below for InterfaceController.m:

- (void)awakeWithContext:(id)context {
[super awakeWithContext:context];

// Configure interface objects here.

    [self updateWatchTable];

}


-(void)updateWatchTable{

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];

NSEntityDescription *entity = [NSEntityDescription entityForName:@"Cschedule" inManagedObjectContext:[[CoreDataHelper sharedHelper] context]];

[fetchRequest setEntity:entity];

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"trueDate" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptor, nil];

[fetchRequest setSortDescriptors:sortDescriptors];

NSArray *myResults = [[[CoreDataHelper sharedHelper] context] executeFetchRequest:fetchRequest error:nil];

self.objectsTable = myResults;

NSLog(@"Schedule myResults count: %lu", (unsigned long)myResults.count);

[self.table setNumberOfRows:self.objectsTable.count withRowType:@"ScheduleTableRow"];

    for (int i = 0; i < self.objectsTable.count; i++) {
        ScheduleTableRow *scheduleRow = [self.table rowControllerAtIndex:i];
        NSManagedObject *item = self.objectsTable[i];
        scheduleRow.name.text = [NSString stringWithFormat:@"%@",[item valueForKey:@"day"]];
        scheduleRow.date.text = [NSString stringWithFormat:@"%@",[item valueForKey:@"date"]];

    }

}


- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex
{
// Push detail view with selected quote

NSString * scheduleDate = [[self.objectsTable objectAtIndex:rowIndex] valueForKey:@"date"];
NSString * test = @"Feb 1 2016"; //TEST date 

[self pushControllerWithName:@"DetailScheduleInterfaceController" context:test]; //THIS WORKS WITH TEST date AND CORRECTLY PUSHES POPULATED DetailInterfaceController
//[self pushControllerWithName:@"DetailScheduleInterfaceController" context:scheduleDate]; //THIS PUSHES BLANK DetailInterfaceController SINCE scheduleDate IS NULL

NSLog(@"Count in objectsTable = %lu", (unsigned long)self.objectsTable.count);
NSLog(@"Value for scheduleDate = %@", scheduleDate); //THIS GIVES NULL VALUE
}

Solution

  • The code below is what solved it for me. I created an array to store the MSManageObjects in the for loop. Then in the WKInterfaceTable didSelectRowAtIndex method I did an objectAtIndex: rowIndex on the array.

    [self.table setNumberOfRows:self.objectsTable.count withRowType:@"ScheduleTableRow"];
    
    self.myNewArray = [[NSMutableArray alloc] init];
    
        for (int i = 0; i < self.objectsTable.count; i++) {
            ScheduleTableRow *scheduleRow = [self.table rowControllerAtIndex:i];
    
            NSManagedObject *item = self.objectsTable[i];
            scheduleRow.name.text = [NSString stringWithFormat:@"%@",[item valueForKey:@"day"]];
            scheduleRow.date.text = [NSString stringWithFormat:@"%@",[item valueForKey:@"date"]];
            [self.myNewArray addObject:[item valueForKey:@"date"]];
        }
    
    - (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex
    {
    // Push detail view with selected quote
    
    NSString * scheduleDate = [NSString stringWithFormat:@"%@", [self.myNewArray objectAtIndex:rowIndex]];
    
    [self pushControllerWithName:@"DetailScheduleInterfaceController" context:scheduleDate];
    }