WKInterfaceTable中的Context中的空值didSelectRowAtIndex

时间:2015-11-19 19:26:13

标签: objective-c watchkit wkinterfacetable

我设置了一个工作正常的watchkit表。但是当我尝试使用WKInterfaceTable didSelectRowAtIndex方法时,该方法的值应该存在于上下文中,上下文给出了一个空值。我创建的测试上下文值工作正常,该方法工作并推送正确填充的DetailInterfaceController。请参阅下面的代码,了解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
}

2 个答案:

答案 0 :(得分:0)

我认为您的问题是您正在为NSManagedObject分配字符串。尝试按照updateWatchTable中的循环执行此操作。

didSelectRowAtIndex方法中:

NSManagedObject *item = self.objectsTable objectAtIndex[rowIndex];
NSString * scheduleDate = [NSString stringWithFormat:@"%@",[item valueForKey:@"date"]];

答案 1 :(得分:0)

以下代码是为我解决的问题。我创建了一个数组来存储for循环中的MSManageObjects。然后在WKInterfaceTable didSelectRowAtIndex方法中,我在数组上做了一个objectAtIndex:rowIndex。

[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];
}