13

How can I embed a WebView (Embedded Web browser) inside a Delphi MacOS application?

It does not appear the webkit headers are included in XE2.

gustavogbc
  • 695
  • 11
  • 33
Phillip Roux
  • 1,009
  • 7
  • 12
  • 6
    possible duplicate of [How to use FireMonkey to browse Web URL with Delphi XE2?](http://stackoverflow.com/questions/9327111/how-to-use-firemonkey-to-browse-web-url-with-delphi-xe2) – Warren P Mar 01 '12 at 19:04
  • Hello. As far as I know the web browser in Delphi is a kind of wrapper for Internet Explorer, so it can not be used under MacOS. You should follow Warren P's link. – Cristian Vasuica Apr 12 '13 at 07:39

2 Answers2

0

Have you tried the TWebBrowser control? This control works in the iOS environment and you can simply set it's URL or use the Navigate function.

Brendan
  • 1,237
  • 1
  • 16
  • 34
0

Have you looked at Chromium Embedded Framework? It might be kinda heavyweight if you just want a view with some HTML, but they have bindings for Delphi. You get access to an up to date chrome webkit/blink browser with V8.

Colin Andrews
  • 191
  • 11