(已解决)我有 UITableView,它在开始时填充了一些对象。在使用 tableView 的 NSMutableArray 期间,正在获取一些新项目。但是当我这样做时[myTableView reloadData];
,什么也没有发生。myTableView 是我的头文件中的一个 IBOutlet。
有任何想法吗?:/
编辑:这是我的 tableView 方法:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [self.mutableArrayFuerTableView count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cellFavoriten = [tableView dequeueReusableCellWithIdentifier:@"favoritenCell"];
NSString *favoritenString = [self.mutableArrayFuerTableView objectAtIndex:indexPath.row];
cellFavoriten.textLabel.text = favoritenString;
return cellFavoriten;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Do some stuff when the row is selected
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
这是在 viewDidLoad 中:
self.myTableView.dataSource = self;
self.favoritenArray = [NSMutableArray arrayWithCapacity:300];
defaultsFuerFavoritenTableView = [NSUserDefaults standardUserDefaults];
mutableArrayFuerAnderenMutableArray = [defaultsFuerFavoritenTableView objectForKey:@"favoritenKeyUserDefaults"];
mutableArrayFuerTableView = [NSMutableArray arrayWithArray:mutableArrayFuerAnderenMutableArray];