使用ios中的div id从html布局文本中获取div格式

时间:2012-09-17 07:24:12

标签: iphone html objective-c ios

示例:

 <html>
        <body>

         <div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
        Content goes here</div>

        </body>
        </html> 

我在nsstring中有html文本(上面),

我需要使用div id获取html标签/ div; 例如:

<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
    Content goes here
    </div> 

nsstring * strDiveFormat =“需要代码”;

nsslog(@“Div格式:%@”,strDiveFormat);

这应该打印:

<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
    Content goes here
</div>

0 个答案:

没有答案