单击“返回”按钮后试图让我的 TableView 重新加载。我已经研究过,其他人建议将 [self.tableView reloadData] 放在 viewWillAppear 方法中,但我收到一个错误“在'InputsRecap'类型的对象上找不到属性'tableView'”关于如何刷新它的任何帮助?
// 。H
@interface InputsRecap: UIViewController <UITableViewDelegate, UITableViewDataSource>{
NSDictionary *tableContents;
NSArray *sortedKeys;
}
@property (nonatomic,retain) NSDictionary *tableContents;
@property (nonatomic,retain) NSArray *sortedKeys;
@end
// .m 中的表格代码从这里开始
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return [self.sortedKeys count];
}
- (NSString *)tableView:(UITableView *)tableView
titleForHeaderInSection:(NSInteger)section
{
return [self.sortedKeys objectAtIndex:section];
}
- (NSInteger)tableView:(UITableView *)table
numberOfRowsInSection:(NSInteger)section {
NSArray *listData =[self.tableContents objectForKey:
[self.sortedKeys objectAtIndex:section]];
return [listData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
NSArray *listData =[self.tableContents objectForKey:
[self.sortedKeys objectAtIndex:[indexPath section]]];
UITableViewCell * cell = [tableView
dequeueReusableCellWithIdentifier: SimpleTableIdentifier];
if(cell == nil) {
cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:SimpleTableIdentifier] ;
}
NSUInteger row = [indexPath row];
cell.textLabel.text = [listData objectAtIndex:row];
// adds arrow to cell
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}