RajuBhai Rocker
RajuBhai Rocker

Reputation: 743

what are the limitations of WKWebview/UIWebview

I am trying to find the limiations of WKWebView/UIWebView I couldn't find much even though there are

What is the maximum size of image it can load ? such as 4mb

What is the maximum audio/video file size it can play ?

What is the javascript execution timeout ?

What is the size of page it can load without any memory leak ?

Upvotes: 1

Views: 2048

Answers (1)

Satheesh
Satheesh

Reputation: 11276

What is the size of page it can load without any memory leak ?

  • depends on how you handle it and the target device in which the UIWebView runs even then it will generate a memory warning not a leak if used properly.

What is the javascript execution timeout ?

  • Unknown arbitrary value, no reference of such values mentioned anywhere. You can set timeouts to your requests though. Related thread.

Upvotes: 1

Related Questions