我有一个包含链接标签的网站(例如apple.com),例如
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://images.apple.com/main/rss/hotnews/hotnews.rss" />
那么我如何从中获取标题“RSS”和href?
更新 1: 我尝试使用将网站转换为字符串
NSData *data = [NSURLConnection sendSynchronousRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://apple.com/"]] returningResponse:NULL error:NULL];
NSString *HTMLWithFeeds = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
但是我现在不知道该怎么办...
更新 2:
从我的帖子中不清楚,但另外应该在这个站点上找到 type="application/rss+xml" 的链接