我尝试从 web 服务加载一个数组并在 tableview 上显示,但我有一个问题。
我不想在 tableview 上显示重复的字段。
我只想在表格上显示一个字段。
我现在有 :
1234
1235
1234
6544
2234
6544
例如 1234 和 6544 有重复
加载数组代码:
-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes: (NSDictionary *)attributeDict
{
if ( [elementName isEqualToString:@"BranchID"] )
{
teveRetorno = YES;
}
else if ( [elementName isEqualToString:@"GetBranchResult"] )
{
myArray = [[NSMutableArray alloc] init];
}
}
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
if (teveRetorno)
{
[myArray addObject:string];
}
}
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
if ( [elementName isEqualToString:@"BranchID"] )
{
[[self tableView]reloadData];
}
teveRetorno = NO;
}
表代码:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 5;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.myArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text =[myArray objectAtIndex:indexPath.row];
cell.textLabel.adjustsFontSizeToFitWidth = YES;
[cell setAccessoryType: UITableViewCellAccessoryDisclosureIndicator];
return cell;
}