How can I scale the content of a WebView?
相关问题
- Android Exclude Some Camera Intent
- NSOutlineView drag line stuck + blue border
- WebView ssl error
- Xcode UI Testing - Finding element in Webview by i
- Unable to Full Screen Youtube Video Inside Custom
相关文章
- Converting (u)int64_t to NSNumbers
- Can Persistence Ignorance Scale?
- “getter” keyword in @property declaration in Objec
- NSMenuItem KeyEquivalent “ ”(space) bug
- Can i use Calc inside Transform:Scale function in
- Check if url is cached webview android
- WebView's LOAD_NO_CACHE setting still saves fi
- Detect if cursor is hidden on Mac OS X
Javascript is your bestfriend:
You need to call
-scaleUnitSquareToSize:
on the document view of the individual frame that you want to resize, for example the main frame:Or you can try the following:
A WebView is an NSView, so one way would be to send it a
scaleUnitSquareToSize:
message.