Open jhgorse opened 8 years ago
iOS devices are presented as CoreMedia IO “DAL” plug-ins You must opt in to see iOS screen devices in your OS X app
CMIOObjectPropertyAddress prop = { kCMIOHardwarePropertyAllowScreenCaptureDevices, kCMIOObjectPropertyScopeGlobal, kCMIOObjectPropertyElementMaster }; UInt32 allow = 1; CMIOObjectSetPropertyData( kCMIOObjectSystemObject, &prop, 0, NULL, sizeof(allow), &allow );
From Brad Ford's 2014 WWDC session 508: https://developer.apple.com/videos/play/wwdc2014-508/
iOS devices are presented as CoreMedia IO “DAL” plug-ins You must opt in to see iOS screen devices in your OS X app
From Brad Ford's 2014 WWDC session 508: https://developer.apple.com/videos/play/wwdc2014-508/