将对象添加到NSArray或NSDictionary时,我的应用只显示最后一个条目的副本。
我获取数据并将其发送给观察者......
[[NSNotificationCenter defaultCenter] postNotificationName:@"xmlFinishedLoading" object:self userInfo:[NSDictionary dictionaryWithObject:currentEventObject forKey:@"notifKey"]];
当观察者收到通知时,会运行此代码...
-(void)populateCurrentEventsTableView:(NSDictionary *)events
{
NSDictionary *info = [events valueForKey:@"userInfo"];
Event *evt = [info valueForKey:@"notifKey"];
if (self.eventDictionary == nil) {
self.eventDictionary = [[NSMutableDictionary alloc]init];
}
[self.eventList addObject:evt];
NSString *key = [NSString stringWithFormat:@"%i",[eventList count] - 1];
[self.eventDictionary setValue:evt forKey:key];
NSLog(@"events description = %@",evt.eventDescription);
[self.tableView reloadData];
}
TableView重新加载此代码...
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"ActivitiesList";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
NSUInteger row = [indexPath row];
NSString *rowKey = [NSString stringWithFormat:@"%i",row];
Event *evt = [eventDictionary objectForKey:rowKey];
cell.textLabel.text = evt.eventDescription;
cell.detailTextLabel.text = evt.eventSecondaryDescription;
return cell;
}
显示事件描述的NSLog很好,它显示了不同的条目。但是,如果我要显示eventDictionary的条目,它会显示相同的条目。有什么帮助吗?
答案 0 :(得分:0)
更多包含代码会有所帮助,你所拥有的对我来说很好看。该代码出现在哪种方法?每次回到userInfo
对象来填充它时,是否有可能删除self.eventDictionary?