weilou
weilou

Reputation: 4617

What's the name of the JavaScript engine used by iOS's UIWebView?

I know UIWebView uses WebKit as iOS's UIWebView's rendering engine.

What's the name of the JavaScript engine used by iOS's UIWebView? The one used by Chrome and is slower than mobile Safari's Nitro JavaScript engine.

Upvotes: 2

Views: 1218

Answers (2)

user2177516
user2177516

Reputation: 21

JavaScriptCore is Nitro. When you use it through UIWebView, it's slower than in Safari because the JIT compilation is disabled.

Upvotes: 2

smorgan
smorgan

Reputation: 21579

It's just called JavaScriptCore.

Upvotes: 2

Related Questions