IOS UIWebView in QML
-
This is a great solution for the missing WebKit on IOS.
Khelkun can you share the IOSWebView source in Git or similar?
-
Hi,
There's now the "QtWebView":https://qt.gitorious.org/qt/qtwebview/ module that provides this
-
[quote author="SGaist" date="1411945295"]Hi,
There's now the "QtWebView":https://qt.gitorious.org/qt/qtwebview/ module that provides this[/quote]
Cool thanks!
-
git clone the repo, and then
qmake
make install
after that you should be able to build the example and deploy it via QtCreator. -
-
Are you on the dev branch ?
How did you proceed to compile it ? Did you install it ?
-
[quote author="SGaist" date="1413751591"]Are you on the dev branch ?[/quote]
Yes, that's the only branch in the repo.[quote author="SGaist" date="1413751591"]How did you proceed to compile it ? Did you install it ?[/quote]
I followed the same steps that Vincent007 suggested:
- clone the git repo
- cd to the repo path
- run qmake
- run make install (got the compile error)
Thanks,
Robert. -
Personally I don't build in the sources since you might also want to build for e.g. Android and if something fails it's easier to just delete the faulty build and start from scratch.
Just tested an out of source build and got not problem. However you should rather do:
qmake
# make
# make install