UIWebView Performance just for text?
i want开发者_如何转开发 to choose to render formated text in uiwebviews in a scrollview with many pages. there will be up to 10 webviews with just text on one page. when viewing a page, the next and the view behaing are loaded. so when scrolling, there are three pages loaded at a time.
my question is: how's the performance when scrolling the scrollview with the webviews. will it lag? now i use three20 text views for the text and it works flawlessly.
because i don't have the time test the whole stuff with webviews, i just wanted to ask you, if you have any experience with a solution like this.
thanks in advance
In my experience , I have implement 4 UIWebview that load amount of XML data and convert to HTML with objective-c code , and use javascript to manage each pages with javascript that hide/show document.getelementbyId
so, It's quite good for me . I think the performance base on how internet connection speed ,your HTML layout arrangement complexity and managing content javascript.
精彩评论