In these situations, you can (after the first selection of the webView) associate the webView with the object in searchResultArray with the objc_setAssociatedObject.
, , cellFoRowAtIndexPath , , - , , :
objc_setAssociatedObject([searchResultArray valueForKey:someIndex], &someKey, webView, OBJC_ASSOCIATION_RETAIN_NONATOMIC)
cellForRowAtIndexPath:
if (objc_getAssociatedObject([searchResultArray valueForKey:indexPath.row, &someKey) != nil) {
UIWebView *thisVideoView = (UIWebView *)[cell.contentView viewWithTag:1];
*thisVideoView = objc_getAssociatedObject([searchResultArray valueForKey:indexPath.row, &someKey);
} else {
}
webViews, .
& someKey char .