我有 HTML 页面的响应
`<cite>www.<b>apple</b>.com/in/</cite>`
我必须使用库“ https://github.com/topfunky/hpple/blob/master/ ”来解析它
TFHppleElement * element6 = [childrenArr5 objectAtIndex:0];
NSArray * arr = [element6 childrenWithTagName:@"cite"];
NSLog(@"arr:%@ cnt:%d",arr,[arr count]);
TFHppleElement * element7 = [arr objectAtIndex:0];
NSString * cite = [element7 text];
NSLog(@"cite:%@",cite);
但我没有得到完整的文本,它只是抓住了“www”。来自 ,请提出一些建议以获取标签内的整个文本。