Hacker News new | ask | show | jobs
by tzahola 3095 days ago
iOS definitely allows you to implement your own browser engine. The only caveat is that Apple doesn’t let third-party apps to mmap executable memory, so you won’t be able to create a JITting JS engine.
1 comments

Apps that browse the web must use the iOS WebKit framework and WebKit Javascript.

Section 2.5.6 from https://developer.apple.com/app-store/review/guidelines/

Hm, you're right, I concede.