Reputation: 4052
I have a simple Webview that opens www.youtube.com
The video portion of the site is black, but it can be clicked and it tells me that it's running Flash Player.
Do I need an additional setup for the webview in order to use the Flash plugin ?
The problem exists only on 10.9. Video is OK on 10.8
Upvotes: 2
Views: 489
Reputation: 805
Enabling layerUsesCoreImageFilters
on the webView solves the problem on Mavericks:
[self.webView setLayerUsesCoreImageFilters:YES];
Related documentation in AppKit Release Notes for OS X v10.9: Changes to layer rendering
Upvotes: 2