gpt4 book ai didi

ios - 处理事件内容 UIWebview 变化

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:41:31 25 4
gpt4 key购买 nike

我使用 UIWebview 编写电子邮件内容
UIWebview 包含内容:

<html>    
<body>
<div id="content" contenteditable="true" style="font-family: Helvetica; margin-top:15px;">
</div>
</body>
</html>

我需要处理事件内容 UIWebview 更改以调整框架 UIWebview 的大小?

最佳答案

您可以尝试使用 KVO:

// Put this where you create your UIWebView
[self.webView addObserver:self forKeyPath:@"scrollView.contentSize" options:NSKeyValueObservingOptionNew context:@selector(observeValueForKeyPath:ofObject:change:context:)];

// Put this somewhere in the same file
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if( [keyPath isEqualToString:@"scrollView.contentSize"] ) {
// Ensure the web view can fit its content
self.webView.frame = (CGRect) {
self.webView.frame.origin,
self.webView.scrollView.contentSize
};
}
}

关于ios - 处理事件内容 UIWebview 变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18028918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com