Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 8 simulator slow & laggy while building app

Xcode iOS simulator running incredibly slow while app is building. UI and response is very laggy.

I am using Xcode 8.0 release on OSX 10.11.6

Has anyone else experienced this? If so anyone have any solutions?

like image 929
Vlad Avatar asked Sep 22 '16 23:09

Vlad


1 Answers

The iOS Simulator does not have access to the GPU. It makes use of the CPU for all rendering.

Compilation takes up a ton of your CPU and disk I/O bandwidth.

Given that, you should expect the simulator to run slower than normal than when you're not compiling because it is getting resource starved by the compilation.

like image 106
Jeremy Huddleston Sequoia Avatar answered Dec 23 '22 21:12

Jeremy Huddleston Sequoia