Currently I have a UITableView
that has a UIWebView
in every cell
. Each UIWebView
is loading a unique embedded YouTube video. Is there a way to keep the UIWebView
from reloading when scrolling. It looks cheaply developed when it scrolls on screen and is a white rectangle to loading a video thumbnail. I was looking into UIWebView
caching but I don't know how I would go about caching the WebView
to reuse it later.
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- back button text does not change
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- How can I add media attachments to my push notific
- Popover segue to static cell UITableView causes co
You can try this differently, just define new table view cell for that particular index like
see if that makes a difference you desire
Keep a reference to the
UITableViewCell
somewhere (an array in yourUITableViewController
, for example), and return the existingcell
in thecellForRowAtIndexPath
call, instead ofde-queueing
a newcell
.