我有一个只有一个单元格的表格视图。当我调用一个方法时,我尝试刷新它并且文本标签的文本应该改变。但是它不会,它只有在视图重新出现时才会改变。
我NSLog()
在很多地方添加了正确的方法和条件
我尝试了几件事:
reloadData
setNeedsDisplay
setNeedsLayout
reloadCell
reloadRowsAtIndexPaths: withRowAnimation:
但是没有任何效果,我知道我的UITableViewDataSource
代码没有问题,因为它被正确调用了。
这是我能给你的最合适的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
tableView.scrollEnabled = NO;
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier: @"cell"];
if (cell) {
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if ([[TravelLogViewController locationArray] count]) {
NSDictionary *flight = [NSDictionary dictionaryWithObjectsAndKeys:[[TravelLogViewController locationArray] lastObject], @"name", [[TravelLogViewController dateArray] lastObject], @"date", [[TravelLogViewController milesGainedIndex] lastObject], @"miles", nil];
cell.detailTextLabel.textColor = [UIColor blackColor];
cell.textLabel.numberOfLines = 2;
cell.detailTextLabel.numberOfLines = 2;
cell.textLabel.font = [UIFont fontWithName:@"Avenir" size: 14.0];
cell.detailTextLabel.font = [UIFont fontWithName:@"Avenir" size: 12.0];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.textLabel.text = [flight objectForKey: @"name"];
cell.detailTextLabel.text = [NSString stringWithFormat:@"Flight Date: %@, Miles Gained: %.1f", [flight objectForKey: @"date"], [[flight objectForKey: @"miles"] doubleValue]];
cell.backgroundColor = [UIColor colorWithWhite:0.92 alpha:1];
// cell.backgroundColor = [UIColor clearColor];
}
else {
// This gets called when I want it to, but the textLabel text or detailTextLabel text is not changed
cell.detailTextLabel.text = nil;
cell.textLabel.text = nil;
cell.textLabel.font = [UIFont fontWithName:@"Arial Rounded MT Bold" size: 18.0];
cell.textLabel.text = @"\n\n No Flights";
}
}
return cell;
}
更新:
我正在使用 ARC,并且在尝试更新单元格时发现表格视图为零,但是我已经修改了单元格并且不知道为什么!
我没有在任何地方取消或释放我的表格视图,它仍然应该被分配
顺便说一句,我有一个标签栏控制器
更新:
我现在已经开始赏金,一个多星期后,我真的觉得这个问题需要更多的关注和答案,我已经多次检查我的代码,我看不出为什么表格视图没有更新 / is nil
。
更新:
好的,我忘了提到用户可以滑动删除单元格。当他这样做时,它实际上并没有删除单元格,它只是更改了它的文本(即它没有更新的部分)。一旦用户滑动删除,我输入日志viewDidLoad
并且viewDidAppear
表格视图似乎是有效的......这是我的代码:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
TravelLogViewController *travel = [[TravelLogViewController alloc] init];
[travel manuallyDeleteTopCellData]; // Deletes some data in other view controller and calls the method `proceedWithDeletion`
}
}
- (void)proceedWithDeletion {
// Method is called from another view controller
NSLog(@"%@", mostRecentFlight.description); // NIL HERE
[mostRecentFlight reloadData];
[mostRecentFlight setNeedsDisplay];
[mostRecentFlight setNeedsLayout];
}
TravelLogViewController
- (void)manuallyDeleteTopCell {
[TheMileIndexViewController deductDesiredMilesToIndex: [[milesGainedIndex lastObject] floatValue]];
[locationArray removeLastObject];
[milesGainedIndex removeLastObject];
[dateArray removeLastObject];
MenuMileIndexViewController *menu = [[MenuMileIndexViewController alloc] init];
[menu proceedWithDeletion];
}
总而言之,一个视图加载/出现,表格视图是有效的。当用户滑动删除时,它实际上并没有删除该行,它只是调用另一个视图控制器调用的TravelLogViewController
方法调用manuallyDeleteTopCellData
它删除一些数据,然后该方法调用我的原始视图控制器中的另一个方法,调用proceedWithDeletion
它应该重新加载表视图的位置,但没有(问题)。这样做的原因是因为在proceedWithDeletion
table view 中是 nil,但是为什么呢!?