Apple (partially) opened the source webkit and JavaScriptCore engine that they use on iOS: http://www.opensource.apple.com/release/ios-433/
You can already create, use, and submit your version of JavaScriptCore on iOS. Is it possible, however, to do the same with the WebKit rendering engine? UIWebView on iOS is very limited. An important feature that it is missing is access to the JavaScript JavaScript object. Without it, it is almost impossible to run some code directly in JavaScriptCore and some code in a web view. Therefore, I am interested in creating my own web view based on WebKit, which provides a JavaScript context.
Are there any projects that have already done any work in this regard? Can the compiled web view library be too large to be sent using the application?
Thanks!
source share