我想访问iphone应用程序中的元数据信息,就像用户在文本字段中输入url一样。 yahoonews.com
然后它应该返回NSString中的元数据信息。
YAHOO NEWS
<head>
<script>var t_headstart=new Date().getTime();</script>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Passenger Falls Out of Plane Off Florida Coast - Yahoo News</title>
我想在NSString中获取标题和元数据描述这只是虚拟html但我想直接来自用户输入的url。
答案 0 :(得分:0)
您需要使用以下方式获取页面源:
NSString *string = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.google.com"] encoding:NSUTF8StringEncoding error:nil];
然后解析字符串以获取所需的字符串。享受:)