English 中文(简体)
根据其内容计算UIWebView 高度
原标题:Calculate UIWebView height depending on its content

我有一个名为 宣布 < /code> 的类别,它有一个 title ( NSString ),一个 publishing date ( NSstring ( NSstring ))和一个有 HTML 内容的 Body ( NSstring )。

我希望以类似电子邮件应用程序的方式显示。 当你读到电子邮件时, 您有前三个“ 行 ” ( From, to, 标题[date]), 然后是电子邮件的内容 。

我想只创建“ 日期” 行, 然后创建身体。 我想象它会是一个 < code> UITableView , 在第一个单元格中, 我的 < code> Title 和第二个单元格中有一个 < code> UIWebView

但似乎单元格的高度与 UIWebView 完全相同,所以我的问题是:

如何计算我 UIWebView 的高度取决于我的 Body ? 因为基本上,当你垂直滚动时,你滚动了整个 UITableView ,当你水平滚动时,你只滚动了 UIWebView 的内容。

谢谢 谢谢

最佳回答

在 Webview 代表方法中, 只要尝试下方代码 :

- (void)webViewDidFinishLoad:(UIWebView *)webView{
    [webviewTopicDesc sizeToFit];
    [webviewTopicDesc setFrame:CGRectMake(webviewTopicDesc.frame.origin.x, webviewTopicDesc.frame.origin.y, 300.0, webviewTopicDesc.frame.size.height)];
}

在那之前 网景高度是5.0

希望它能帮助你

在这里,你可以根据字符串获得动态高度。

-(CGSize)getDynemicHeight:(int)pintFixWidth :(NSString *)pstrText
{
CGSize maximumSize=CGSizeMake(pintFixWidth, g_Max_Width);
UIFont *myFont = [UIFont fontWithName:g_Default_Font_Name size:g_Default_Font_Size];// font used for label
myFont=[UIFont boldSystemFontOfSize:g_Default_Font_Size];

CGSize sizeS = [pstrText sizeWithFont:myFont 
                   constrainedToSize:maximumSize 
                       lineBreakMode:UILineBreakModeWordWrap];

sizeS.height=sizeS.height+39;

return sizeS;
}

在此, 您必须用字体样式来修正宽度和字体大小 。

砛癸Τ腊

问题回答

有几种方法可以找到 UIWebView 内容的高度。

以下是几个要点:

< a href=" "https://stackoverflow.com/ questions/1029902/iphones/1029023/iphone-get-the-content-size-of-uiwebview" >iPhone - 获取 UIWebView 的内容大小

请注意,使用 UIWebView UITableView 中使用 不一定是一个非常好的想法,特别是如果您有许多 宣布 可以在同一“code>UITableView 中滚动。如果您在 >UIUTableView 中只显示一个通知,您应该能够逃脱,但对于有大量单元格可滚动的表格,使用单元格在单元格中的网络视图可能导致不良性能问题。

苹果还建议反对使用嵌入 UIWebview /code > / UITableview /code>/ /UIScrollview

"http:// developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html"中"rel="无跟踪 noreferrer" >UIWebView类参考 :

Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled.

我的两分钱:)





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。