我可以通过cmd +“+”
更改safari中我的简单页面的比例<!DOCTYPE HTML>
<html lang="en">
<head>
</head>
<body>
<video width="320" height="240" controls src='../videos/video.mp4'>
</video>
/body>
</html>
但无法在WebView中通过以下方式更改它:
id doc = [[[self.web mainFrame] frameView] documentView];
[doc scaleUnitSquareToSize:NSMakeSize(0.5, 0.5)];
[doc setNeedsDisplay];
除了1.0之外,所有比例的视频都会消失。为什么呢?
在控制台中:“FlateDecode: decoding error: incorrect data check.
”
已解决HTML格式
我在html标签中添加了缩放线 和视频比例现在没问题
也许有人知道如何在cocoa webkit中解决它
答案 0 :(得分:0)