Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7.3 iOS 8 simulator debug view hierarchy is blank

The debug view hierarchy tool in Xcode 7.3 is only working on iOS 9.3 simulators. When I try using it on iOS 8.2 simulators, the debugging view is a blank white screen. Is anyone else seeing this?

like image 470
Colin Avatar asked Apr 12 '16 16:04

Colin


3 Answers

Unfortunately, I'm seeing the same thing - just a blank screen when running (in my case) 8.4 simulators, but works fine w/ iOS 9. This is particularly annoying because the problem I'm trying to debug behaves differently under iOS 8!

like image 138
Jeff Lewis Avatar answered Sep 20 '22 02:09

Jeff Lewis


I'm on Xcode 8.2, but I had this same problem.

I had been using the "Nvidia Web Driver" rather than the OS X Default Graphics Driver. When I switched back to the OSX driver and did a reboot, this feature started working for me again.

like image 24
Aaron Ash Avatar answered Sep 21 '22 02:09

Aaron Ash


If you're using "Nvidia Web Driver" you can use the following kext below.

NVWebDriverLibValFix by mologie

run these command and restart:

sudo tar -xv -C /Library/Extensions -f ~/Downloads/NVWebDriverLibValFix.kext.1.0.0.tar.gz sudo kextutil /Library/Extensions/NVWebDriverLibValFix.kext

like image 39
cube Avatar answered Sep 22 '22 02:09

cube