我制作了一个 iOS 应用程序,它解析填充 UITableView 的一维数组,我尝试将两个条目发送到数组,即文件的“名称”和来自 xml 的文件的“URL”。但是在表格视图中填充了名称和 URL。我想将名称显示为单元格文本,将 url 显示为单元格详细信息文本。有什么帮助吗?
(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{
//NSLog(@"%@",string);
if(count){
listset1=[[NSMutableArray alloc]initWithCapacity:20];
count=0;
}
if ([currentElementValue isEqualToString:@"Name"]) {
[Name appendString:string];
[listset1 addObject:[NSString stringWithFormat:@"%@",Name]];
// NSLog(@"%@",listset1);
}
if ([currentElementValue isEqualToString:@"URL"]) {
[URL appendString:string];
[listset1 addObject:[NSString stringWithFormat:@"%@",URL]];
//NSLog(@"%@",URL);
}
Listset1 是正在解析的数组。